Tip & How-To about Mozilla Firefox

Speedup Mozilla Firefox HTTP network settings

Use about:config to either edit of toggle these settings, if you need to add any preferences

TRUE/FALSE => BOOLEAN
NUMBER => INTEGER
TEXT => STRING

browser.cache.disk.capacity » 150000
browser.cache.offline.capacity » 20480
browser.download.manager.closeWhenDone » true
browser.search.openintab » true
browser.tabs.loadDivertedInBackground » true
browser.tabs.opentabfor.middleclick » false
browser.urlbar.hideGoButton » true
browser.urlbar.maxRichResults » 5
zoom.maxPercent » 400

content.notify.backoffcount » 5
plugin.expose_full_path » true
ui.submenuDelay » 0
nglayout.initialpaint.delay » 0
content.max.tokenizing.time » 2250000
content.notify.interval » 750000
content.notify.ontimer » true
content.switch.threshold" » 750000
browser.cache.memory.capacity » 65536

network.http.pipelining » true
network.http.proxy.pipelining » true
network.http.max-connections » 40
network.http.max-connections-per-server » 16
network.http.max-persistent-connections-per-server » 16 ( slower DSL =6)
network.http.max-persistent-connections-per-proxy » 16 ( slower DSL =8)
network.http.pipelining.maxrequests » 8 (max possible = 30)



There is an experimental XPI addon called Tweak Network that will take care of the http.pipelining all will be saved in the prefs.js file in your unique profile, its a good idea to make a backup of this before you start, you will find this in a hidden folder in your application data under your documents.



There are the other settings using this add-on's you can also easily go back from Power Settings to Default Settings really easily this way.

Posted by on

Mozilla Firefox Logo

Related Topics:

Related Questions:

0helpful
1answer

to form a jumbled words

Using VB as an example

Dim intLength as Integer
Dim y as Integer
Dim arrOut( ) as String
Dim TempLetter as String
intLength=len(text1.text)
ReDim arrOut(intLength)
Randomize
dim boolDone as boolean ' flag to track unfilled positions

Write a loop that gets each letter from text1, then choose a random number from 1 to intLength

Get the existing letter, then put it into a different position in the arrOut, based on the random number. If something is in that position, try again:

for y=1 to intLength
tempLetter = mid(text1.text,y,1)
boolDone=false
do while boolDone=false
r =CInt(Int((y * Rnd()) + 1)) 'Get random # from 1 to length
if arrOut(r) ="" then 'see if spot has been used
arrOut(r) = tempLetter
boolDone = true
end if
loop
next 'get next letter in text1

text2.text=join(arrOut,"") ' concatenate arrOut, no delimiter.


Hope that helps.





0helpful
2answers

visual basic 6.0

Use a compare (instr) command to search the sentence for punctution and spaces. Increment a variable for each word found, resetting the search string and retaining the start position of each find.
Not finding what you are looking for?

1,162 views

Ask a Question

Usually answered in minutes!

Top Mozilla Computers & Internet Experts

k24674

Level 3 Expert

8093 Answers

Brad Brown

Level 3 Expert

19187 Answers

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Are you a Mozilla Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Loading...