| Free £25 Bet! | Free £25 Bet! |

In association with Sports-Punter Free Bets Odds Comparison BetHelp Limso
We are the Official Forum of FreeBetting.net & FCBet.com
| Sports News | Sports Stats | Live Scores | OddsChecker | Place Bets | Suggest a Site |
| |||||||
| Tech & Gaming Forum This is the place for all your technical related questions about computers, programs or whatever... |
![]() |
| | Thread Tools | Display Modes |
| | #21 (permalink) |
| ROTW Team Punter ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 14 Aug 2002
Posts: 1,286
| Thanks for speeding up my Firefox, Komp ![]() If anyone has problems with pages designed for Internet Explorer, there's a nice IE View extension that adds "Open link target in IE" to the context menu in Firefox: https://addons.update.mozilla.org/ex...id=35&vid=1179 |
| | |
| | #23 (permalink) |
| ROTW Team Punter ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 14 Aug 2002
Posts: 1,286
| While we're one the subject of tweaking Firefox - I found this interesting (and long) post: Performance Settings - Firefox One of the limitations of pretty much all computer applications is the need to target for a general audience because of the wide array of computer components and varied network infrastructure. This is where tweaking comes in. Firefox by default is aimed at a general audience too and hopefully we can tune it more to the needs of the individual. The majority of the information comes from this excellent thread over at the MozillaZine Forum. The first post in particular goes through in great detail what each of the settings do. The thread however gets fairly long and convoluted and we attempt to summarize the contents of this thread along with a couple other sources into something that is easier to digest. As with the settings on the previous page, the contents are copied into the user.js file. We do not go into major detail about the setting as the thread goes into detailed explanations of what the settings mean in the first post. Instead, the configurations are culled from the thread of what people have reported to have worked for them along with some modifications on our end. 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 about:plugins 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); Some of the options we chose not to include as opposed to suggestions on the Mozillazine threads included the suggestion of catching SSL pages. Regardless of computer speed, one of the common trends is that pipelining is a good thing. Those with faster computers and gobs of memory may want to up the amount of memory available to Firefox while those with slower computers can still increase the default 4MB to something higher. This was not done in our configuration files however. Powerusers are also welcome to disable the status bar to eek out that extra CPU cycle or two. |
| | |
| | #24 (permalink) |
| Dedicated Punter ![]() ![]() ![]() Join Date: 19 Feb 2006 Location: Birmingham, England Age: 37
Posts: 253
| I've switched to firefox and it seems better than IE. The only problem I've got is that some actions are still trying to open IE (I think). For example, just tried to open chat on Bet365 poker (does anybody know what GP means by the way, as in $5000 GP R&A) and it wont open and just kind of stalls the system. I've tried setting default browser to firefox but it wouldn't let me do it. |
| | |
| | #26 (permalink) |
| Antipodean Punter ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 16 Jul 2001 Location: In your face Age: 27
Posts: 3,882
| I've been using Firefox now for nearly a year. IE is THE WORST piece of software ever made. I have no idea how Microsoft actually get away with how bad it is. |
| | |
| | #28 (permalink) |
| Sabbatical punter ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 27 Nov 2000 Age: 29
Posts: 10,391
| Aye, that runs it a close second. I got an IPod at christmas, and itunes is awful. Windows media player pisses all over it. What's the deal with having to supply a credit card number to access free album art? And Macs are over rated cnutbubbles IMO, only really liked by contrarian idiots with more money than sense.
__________________ |
| | |
| | #29 (permalink) |
| Antipodean Punter ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 16 Jul 2001 Location: In your face Age: 27
Posts: 3,882
| Yep, iTunes is a complete fcuk up. Why oh why can't we just have drag and drop with a file-tree I have no idea, would make things much easier. Infact I did find a program where you could do that with an iPod once, I'll see if I can find it. ![]() Last edited by jeffers; 08-02-2008 at 04:19. |
| | |
| | #30 (permalink) |
| Punter Punter ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 06 Jan 2002 Location: Auckland Age: 37
Posts: 10,506
| I don't see the problem with IE tbh, it's a reasonable browser. Much of a muchness these days, sure firefox had a clear lead against ie6, but it's all evened out these days. Don't use either all that much myself though, switched to Apple Safari a while back, that's what all the cool kids are using. It's a seriously good bit of software ![]() http://www.apple.com/safari/download/ |
| | |
| | #31 (permalink) | |
| theunknown ![]() ![]() ![]() ![]() ![]() Join Date: 18 Aug 2006 Location: europe
Posts: 959
| Quote:
I use Firefox for years since 1.0.x version and also Opera. I made a lot of web sites and spite myself about these fukcin misinterpretations... .Please - use the alternative browsers to show microsoft that they couldn“t do what they want. ![]() ![]() ![]() ![]() ![]() ![]() DO IT ![]()
__________________ www.gamblers-delight.de | |
| | |
| | #32 (permalink) |
| Dedicated Punter ![]() ![]() ![]() Join Date: 18 Dec 2006 Location: Greece Age: 39
Posts: 251
| Testing firefox for a week and i have problems with CPU usage at some pages. Racingpost, Sportinglife and Punterslouge (little) shows sometimes 100% usage at my Celeron. Navigation is almost impossible. Do you guys have the same problems? |
| | |
| | #33 (permalink) |
| Vienti Tres ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 06 Aug 2005 Location: On the road Age: 40
Posts: 13,477
| Yes. ![]() Maybe try opera or safari.
__________________ You can spend your time alone re digesting past regrets, Or you can come to terms and realize you're the only one who can forgive yourself. Makes much more sense to live in the present tense. |
| | |
| | #34 (permalink) |
| Dedicated Punter ![]() ![]() ![]() Join Date: 18 Dec 2006 Location: Greece Age: 39
Posts: 251
| I'm back to my Maxthon witch i'm using last 3-4 years. Tabed browsing, based on IE. Maxthon is an excellent IE modification. Basicly i'm trying to find a tab browser that can be set to open links from pages in other tabs (background) with the left -usual- button AND whenever i want open links at the current page by the midlle button. Some pages need to be opened in the current page for no errors. Green browser - tab browser based on IE- will may add this midlle button action at a gesture, but in the future. |
| | |
| | #35 (permalink) | |
| God Punter ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 02 Jan 2006 Age: 48
Posts: 5,726
| Quote:
Funny you should mention Mac's Paul, a bloke at work has a Mac laptop and swears by it. He uses no virus software. I told him he was stupid and all he said was run google and find how many viruses there are for Macs. I did and.............. ![]()
__________________ There he goes, one of gods own prototypes. Some kind of high powered mutant, never even considered for mass production. Too weird to live, too rare to die. Raoul Duke | |
| | |
| | #37 (permalink) | |
| theunknown ![]() ![]() ![]() ![]() ![]() Join Date: 18 Aug 2006 Location: europe
Posts: 959
| Quote:
![]()
__________________ www.gamblers-delight.de | |
| | |
| | #38 (permalink) | |
| Back In Work Punter ![]() ![]() ![]() ![]() ![]() ![]() ![]() Join Date: 21 Apr 2001 Location: Wiltshire Age: 35
Posts: 2,950
| Quote:
should be easy enough to get the hang of.![]() ![]() to the 3 and a bit year thread - a record??????Last edited by Ell Ess Dee; 03-03-2008 at 00:02. | |
| | |
| | #39 (permalink) |
| Dedicated Punter ![]() ![]() ![]() Join Date: 18 Dec 2006 Location: Greece Age: 39
Posts: 251
| [quote=Ell Ess Dee;1016663]Opera works the other way round. Middle button opens up new tab while left mouse button opens link in current tab should be easy enough to get the hang of.quote] Didnt manage it. What settings required? Currently all links open in current tab. And i didnt see at gestures one that can move from one tab to another. This will also be a major problem. |
| | |
| | #40 (permalink) | |
| Dedicated Punter ![]() ![]() Join Date: 24 Nov 2007 Location: Germany Age: 32
Posts: 221
| So I guess you like to torture yourself? Why would you keep using the consistently worst browser on the market?? (Both in my own experience and various comparison tests.)Quote:
| |
| | |
| Free £100 Bet! | Free £100 Bet! |
| Partner Sites | ||||||||||
| Football Betting Tips | Australian Free Bets HOT | Free Bets HOT | Odds Comparison | Soccer Punter |
| Bookmakers | Livescore | SoccerVista | Asian Handicap Betting Guide | Euroleague Betting Picks |
| Soccer Picks |
© 2008 PuntersLounge.Com Ltd | Gambling Problems?
Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.