Go Back   Hardware Upgrade Forum > Software > Programmi e Utility

Garmin Forerunner 265 è sempre più un top di gamma
Garmin Forerunner 265 è sempre più un top di gamma
Il nuovo arrivato della gamma di smartwatch Garmin per la corsa ha un nome di fascia media ma caratteristiche al top, a partire dal nuovo schermo AMOLED che permette di assicurare una ottima visibilità in ogni condizione. Tutto questo porta ad un prezzo più elevato per un prodotto che è ormai un altro top di gamma
ASUS ROG Strix SCAR 17 (2023) G733, il notebook con Ryzen 9 7945HX e RTX 4090 colpisce nel segno
ASUS ROG Strix SCAR 17 (2023) G733, il notebook con Ryzen 9 7945HX e RTX 4090 colpisce nel segno
Al netto di una parte software in evoluzione, il notebook ASUS ROG Strix SCAR 17 (2023) G733 giunto in redazione, forte di una CPU Ryzen 9 7945HX e una GeForce RTX 4090 Laptop, si è dimostrato un notebook gaming decisamente potente, capace di assicurare prestazioni al vertice della categoria. Purtroppo, come tale, si tratta di un portatile per pochi.
Dead Island 2: dopo nove anni poteva andare meglio, ma anche molto peggio. La recensione
Dead Island 2: dopo nove anni poteva andare meglio, ma anche molto peggio. La recensione
Dopo quasi nove anni dal suo annuncio, abbiamo avuto modo di provare Dead Island 2, nuova iterazione del survival horror che tende a non prendersi troppo sul serio. Il titolo mantiene la tradizione e, quindi, tutti gli aspetti che caratterizzano il predecessore senza osare troppo. Le novità non mancano, seppur non troppo incisive, rappresentando più un perfezionamento del primo capitolo che un vero e proprio nuovo gioco della saga.
Tutti gli articoli Tutte le news

Forum Jump
Closed Thread
 
Thread Tools
Old 15-01-2005, 20:14   #1861
Leron
Senior Member
 
Leron's Avatar
 
Join Date: Aug 2002
Location: Trento
Posts: 40,862
altra guida al tweaking, pare molto completa


http://www.tweakfactor.com/articles/...oxtweak/4.html




Quick and Dirty Settings

user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.firstrequest", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("nglayout.initialpaint.delay", 0);

These were some settings I ran across sometime ago. Pipelining does multiple data requests at once and should speed things up. I believe IE did this before and this was partially attributable to the speed advantage that IE had over older versions of Mozilla/Netscape. Initial Paint Delay actually slows down the rendering of the ENTIRE page but since users tend to start reading before the entire page is rendered, setting this to a low value gives the impression that the page loads faster.

The following configurations are based off of recommendations off of the Mozillazine thread with some editing on points that I do not agree with
Common to all configurations

These are the settings that seem to be common to all configuration files regardless of connection speed or computer speed with a couple of additions - plugin paths can be found with aboutlugins and the bookmark menu delay is turned off.

user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("content.notify.backoffcount", 5);
user_pref("plugin.expose_full_path", true);
user_pref("ui.submenuDelay", 0);

Fast Computer Fast Connection

user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("browser.cache.memory.capacity", 65536);

A couple settings of note - Firefox is allocated 4096 KB of memory by default and in this configuration we give it roughly 65MB as denoted by the last line. This can be changed according to what is used.

Fast Computer, Slower Connection

This configuration is more suited to people without ultra fast connections. We are not talking about dial up connections but slower DSL / Cable connections.

user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("browser.cache.memory.capacity", 65536);

Fast Computer, Slow Connection
user_pref("browser.xul.error_pages.enabled", true);
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 3000000);
user_pref("content.maxtextrun", 8191);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("network.http.max-connections", 32);
user_pref("network.http.max-connections-per-server", 8);
user_pref("network.http.max-persistent-connections-per-proxy", 8);
user_pref("network.http.max-persistent-connections-per-server", 4);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("browser.cache.memory.capacity", 65536);

Slow Computer, Fast Connection
user_pref("content.max.tokenizing.time", 3000000);
user_pref("content.notify.backoffcount", 5);
user_pref("content.notify.interval", 1000000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 1000000);
user_pref("content.maxtextrun", 4095);
user_pref("nglayout.initialpaint.delay", 1000);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("dom.disable_window_status_change", true);

One of the changes made for this particular configuration is the final line where the status bar is disabled for changing web pages to save processor time.

Slow Computer, Slow Connection

We have entered the doldrums of the dial-up user

user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("nglayout.initialpaint.delay", 750);
user_pref("network.http.max-connections", 32);
user_pref("network.http.max-connections-per-server", 8);
user_pref("network.http.max-persistent-connections-per-proxy", 8);
user_pref("network.http.max-persistent-connections-per-server", 4);
user_pref("dom.disable_window_status_change", true);
__________________
http://www.trentografica.itGrafica e Fotografia a Trento
Leron is offline  
Old 15-01-2005, 20:29   #1862
fgiova
Senior Member
 
fgiova's Avatar
 
Join Date: Nov 2001
Location: Prov. di Modena
Posts: 6,086
non c'è 1 modo per fare 1 file che applichi tutte queste opzioni contemporaneamente?
(lo dico perchè se lo dovessi fare su tutti i pc miei e di amici ci metto 1 settimana )
fgiova is offline  
Old 15-01-2005, 20:36   #1863
drakend
Senior Member
 
Join Date: Aug 2002
Posts: 1,265
Quote:
Originariamente inviato da Leron
come già detto una INFINITA' di volte, firefox salva in CACHE in ram le pagine che visiti, puoi pure avere una sola tab aperta ma tutte le pagine che hai visitato fino a quel punto occupano ram

firefox da solo occupa una ventina di ram

se vuoi puoi disabilitare la cache, cerca qualche guida su mozillaitalia
Ho disabilitato la cache, come ho letto nei vari post che ho trovato all'interno di questo thread, ma gli effetti sono solo parziali. Dopo aver chiuso e riaperto il browser con sei tab occupa 45-50 Mb lo stesso.
Eppure la cache l'ho impostata a 0 nelle impostazioni... boh
drakend is offline  
Old 15-01-2005, 21:00   #1864
Leron
Senior Member
 
Leron's Avatar
 
Join Date: Aug 2002
Location: Trento
Posts: 40,862
già che ci siamo anche se non centra, chi ha alice guardi la mia sign
__________________
http://www.trentografica.itGrafica e Fotografia a Trento
Leron is offline  
Old 15-01-2005, 21:16   #1865
Andrea16v
Senior Member
 
Andrea16v's Avatar
 
Join Date: Mar 2003
Posts: 3,852
Quote:
Originariamente inviato da Leron
già che ci siamo anche se non centra, chi ha alice guardi la mia sign
Ottima notizia!!
__________________
Cerco fotocamera con buono zoom!! CLICCA!
° Moderatore del Forum Ufficiale di ElaborarE (responsabile sezione HI-FI e Car Audio) °
Andrea16v is offline  
Old 15-01-2005, 22:19   #1866
gotenks
Senior Member
 
gotenks's Avatar
 
Join Date: Apr 2001
Location: Palermo
Posts: 3,565
Quote:
Originariamente inviato da fgiova
non c'è 1 modo per fare 1 file che applichi tutte queste opzioni contemporaneamente?
(lo dico perchè se lo dovessi fare su tutti i pc miei e di amici ci metto 1 settimana )
Basta metterle nel file user.js
(Consigliata a questo proposito l'extension Chromedit)

__________________
X360 GamerTag: K3y87 - MyAnimeList: K3y
I am a darkness beyond blackest pitch. Deeper than the deepest night.
I am the sea of chaos, the source of all chaos. I am... The Lord of Nightmares.
gotenks is offline  
Old 16-01-2005, 00:00   #1867
restimaxgraf
Senior Member
 
restimaxgraf's Avatar
 
Join Date: Dec 2001
Location: Pavia (Italy) La città delle 100 torri...
Posts: 10,292
Quote:
Originariamente inviato da Leron
come già detto una INFINITA' di volte, firefox salva in CACHE in ram le pagine che visiti, puoi pure avere una sola tab aperta ma tutte le pagine che hai visitato fino a quel punto occupano ram

firefox da solo occupa una ventina di ram

se vuoi puoi disabilitare la cache, cerca qualche guida su mozillaitalia
mai funzionato il comando per disabilitare la cache in ram... a volte con profili sporchi può succedere che occupi o non recuperi la ram chiudendo 1 o + schede aperte....
__________________
Ciao Pallino ora sei libero di scorazzare sereno sulla tua nuvoletta....non ti dimenticherò!
Xperia X10 black with feralab v30 rom
Motori 1/4 di impulso indietro...tenente Sulu ci porti fuori...
restimaxgraf is offline  
Old 16-01-2005, 01:32   #1868
fgiova
Senior Member
 
fgiova's Avatar
 
Join Date: Nov 2001
Location: Prov. di Modena
Posts: 6,086
Quote:
Originariamente inviato da gotenks
Basta metterle nel file user.js
(Consigliata a questo proposito l'extension Chromedit)

ora provo....grazie 1000 della dritta


Quote:
Originariamente inviato da Leron
già che ci siamo anche se non centra, chi ha alice guardi la mia sign
ohhhhhhhhhh......era ora...queste si che sono belle notizie!!!
fgiova is offline  
Old 16-01-2005, 07:47   #1869
restimaxgraf
Senior Member
 
restimaxgraf's Avatar
 
Join Date: Dec 2001
Location: Pavia (Italy) La città delle 100 torri...
Posts: 10,292
Quote:
Originariamente inviato da fgiova

ohhhhhhhhhh......era ora...queste si che sono belle notizie!!!
cosè hanno intenzione di bannarti a vita?o forse vuoi cambiar sesso?
__________________
Ciao Pallino ora sei libero di scorazzare sereno sulla tua nuvoletta....non ti dimenticherò!
Xperia X10 black with feralab v30 rom
Motori 1/4 di impulso indietro...tenente Sulu ci porti fuori...
restimaxgraf is offline  
Old 16-01-2005, 10:16   #1870
fgiova
Senior Member
 
fgiova's Avatar
 
Join Date: Nov 2001
Location: Prov. di Modena
Posts: 6,086
Quote:
Originariamente inviato da restimaxgraf
cosè hanno intenzione di bannarti a vita?o forse vuoi cambiar sesso?
fgiova is offline  
Old 16-01-2005, 10:27   #1871
fgiova
Senior Member
 
fgiova's Avatar
 
Join Date: Nov 2001
Location: Prov. di Modena
Posts: 6,086
Quote:
Originariamente inviato da gotenks
Basta metterle nel file user.js
(Consigliata a questo proposito l'extension Chromedit)

quel file basta che lo copio su tutti i pc nella cartella del profilo e firefox ogni volta che si avvia carica quelle impostazioni anzichè quelle di default, giusto?
fgiova is offline  
Old 16-01-2005, 10:50   #1872
frankone
Senior Member
 
frankone's Avatar
 
Join Date: Oct 2002
Location: milano
Posts: 300
Forse ne avete gia parlato !

come faccio a salvare i preferiti e integrarli nella cartella di esplorer, o salvarli in un floppi dato che non trovo la cartella preferiti in firefox?

grazie
__________________
I.mac 24, 3.06 mega, ge forge 130, 4 giga di ram, 1 tera 7200 rpm Lacie quadro2 1 terabit
frankone is offline  
Old 16-01-2005, 10:55   #1873
Mike Lowrey
Bannato
 
Mike Lowrey's Avatar
 
Join Date: Jan 2005
Location: Los Angeles! ...si vabbè...abito circa vicino più o meno in provincia di Modena
Posts: 50
Quote:
Originariamente inviato da restimaxgraf
cosè hanno intenzione di bannarti a vita?o forse vuoi cambiar sesso?
Sì, vuole tornare uomo.....................



Per l'adsl io ho libero, il che significa che per il 1280 dovrò aspettare ancora un pò.

Però io al mese pago 29,95€ non 36,95€ (cioè i miei pagano, eheheh!)
E non ho pagato un cazzo di attivazione!

Last edited by Mike Lowrey : 16-01-2005 at 10:58.
Mike Lowrey is offline  
Old 16-01-2005, 11:25   #1874
gotenks
Senior Member
 
gotenks's Avatar
 
Join Date: Apr 2001
Location: Palermo
Posts: 3,565
Quote:
Originariamente inviato da fgiova
quel file basta che lo copio su tutti i pc nella cartella del profilo e firefox ogni volta che si avvia carica quelle impostazioni anzichè quelle di default, giusto?

Si, credo di si (non ho mai provato, ma in fondo ci sono solo ottimizzazioni, non dovrebbe dare problemi )
__________________
X360 GamerTag: K3y87 - MyAnimeList: K3y
I am a darkness beyond blackest pitch. Deeper than the deepest night.
I am the sea of chaos, the source of all chaos. I am... The Lord of Nightmares.
gotenks is offline  
Old 16-01-2005, 11:41   #1875
fgiova
Senior Member
 
fgiova's Avatar
 
Join Date: Nov 2001
Location: Prov. di Modena
Posts: 6,086
Quote:
Originariamente inviato da gotenks
Si, credo di si (non ho mai provato, ma in fondo ci sono solo ottimizzazioni, non dovrebbe dare problemi )
grazie





















per Mike Lowrey
ci mettiamo a posto domattina poi....

...intanto vai a fare compagnia a restimaxgraf, aff....



fgiova is offline  
Old 16-01-2005, 11:41   #1876
Ché
Senior Member
 
Ché's Avatar
 
Join Date: May 2003
Location: Genova
Posts: 633
Quote:
Originariamente inviato da PKK
Ho aggiornato xp sp2 con le varie patch (hotfix) e poi alleggerito con nLITE,togliendo firewall,IE,outlook ecc.
Poi seguendo delle guide ho integrato il nuovo xp con firefox,thunderbird,izarc,acrobat,codec!!!
Ciao ,
per cortesia potresti essere un po' più preciso ed eventualmente linkare le guide?
__________________
HTPC... Silverstone Grandia SST-GD05B - Sharkoon WPM Gold Zero 750W - MSI B560M Pro WDH - Intel Core i5 11400F - Noctua NH-L12S - AMD Radeon R7 240 1Gb GDDR5 - Crucial Ballistix 2x8Gb DDR4 3200 - WD_Black SN850 NVMe SSD
Ché is offline  
Old 16-01-2005, 11:43   #1877
Leron
Senior Member
 
Leron's Avatar
 
Join Date: Aug 2002
Location: Trento
Posts: 40,862
Quote:
Originariamente inviato da frankone
Forse ne avete gia parlato !

come faccio a salvare i preferiti e integrarli nella cartella di esplorer, o salvarli in un floppi dato che non trovo la cartella preferiti in firefox?

grazie
leggi il primo e il secondo post
__________________
http://www.trentografica.itGrafica e Fotografia a Trento
Leron is offline  
Old 16-01-2005, 12:06   #1878
Mike Lowrey
Bannato
 
Mike Lowrey's Avatar
 
Join Date: Jan 2005
Location: Los Angeles! ...si vabbè...abito circa vicino più o meno in provincia di Modena
Posts: 50
Quote:
Originariamente inviato da quel deficiente di fgiova
per Mike Lowrey
ci mettiamo a posto domattina poi....


Affanculo il lavoro..............io domattina sto a letto!!!





















(cioè ho il turno al pomeriggio)

Last edited by Mike Lowrey : 16-01-2005 at 12:44.
Mike Lowrey is offline  
Old 16-01-2005, 12:54   #1879
frankone
Senior Member
 
frankone's Avatar
 
Join Date: Oct 2002
Location: milano
Posts: 300
Quote:
Originariamente inviato da Leron
leggi il primo e il secondo post

grazie
__________________
I.mac 24, 3.06 mega, ge forge 130, 4 giga di ram, 1 tera 7200 rpm Lacie quadro2 1 terabit
frankone is offline  
Old 16-01-2005, 15:43   #1880
NeoNum6
Senior Member
 
Join Date: Feb 2004
Location: BhO
Posts: 3,701
ragazzi scusate la domanda banale ma come si fa con firefox a cancellare cronologia e tutte le informazioni perfonali tipo password e nomi utente?
__________________
Linux User 414915 linux counter
Ho concluso con yorick, gor, djgusmy85, sulphur, Rospaccio, Leland Gaunt, paciuli
NeoNum6 is offline  
 Closed Thread


Garmin Forerunner 265 è sempre più un top di gamma Garmin Forerunner 265 è sempre più...
ASUS ROG Strix SCAR 17 (2023) G733, il notebook con Ryzen 9 7945HX e RTX 4090 colpisce nel segno ASUS ROG Strix SCAR 17 (2023) G733, il notebook ...
Dead Island 2: dopo nove anni poteva andare meglio, ma anche molto peggio. La recensione Dead Island 2: dopo nove anni poteva andare megl...
Recensione MSI RTX 4070 Gaming X Trio, il grande dissipatore tiene GPU e memoria al fresco Recensione MSI RTX 4070 Gaming X Trio, il grande...
Google Pixel 7a: migliora e fa centro ancora una volta! La recensione Google Pixel 7a: migliora e fa centro ancora una...
Steam Deck: Valve citata in giudizio per...
Europa, un cavo Internet sottomarino nel...
Gli smartphone più scontati su Am...
BLUETTI AC180: la power station portatil...
Speciale robot lavapavimenti: tutte le o...
Amazon speciale TV: c'è un 50&quo...
Elon Musk dirà quello che vuole a...
È il momento giusto per acquistar...
iPhone che parla con la voce dell'utente...
Ecco una super selezione di SSD in offer...
Macron corteggia Musk: la prossima Gigaf...
Zeekr, fra i 3 maggiori produttori EV pr...
Con MultiCloud Link Aruba estende le inf...
Amazon utilizzerà l'IA in stile C...
Tears of the Kingdom: carri armati, mech...
BurnAware Premium
BurnAware Free
Firefox 113
Dropbox
K-Lite Mega Codec Pack
K-Lite Codec Pack Full
K-Lite Codec Pack Standard
K-Lite Codec Pack Basic
Chromium
Firefox Portable
Thunderbird Portable
Process Lasso
Google Chrome Portable
K-Lite Codec Pack Update
NTLite
Tutti gli articoli Tutte le news Tutti i download


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 09:20.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.
Served by www1v