Perfect Safari Theme Setup FireFox 3
RE: http://macvswindows.com/forums/index.php?showtopic=472
- First, go here and download the GrApple Yummy theme: http://www.takebacktheweb.org/
- Next, install Fission, which copies the combined address/progress bar from Safari: https://addons.mozilla.org/en-US/firefox/addon/1951
- Finally, install Stylish (https://addons.mozilla.org/en-US/firefox/addon/2108) and then the combined stop/reload button style: http://userstyles.org/styles/10
I'll take this one step further. Type about:config in the address bar. Set the filter to 'browser.tabs'. Change values browser.tabs.tabMaxWidth and browser.tabs.tabClipWidth to 180 and 150 respectively.
Open 'Stylish' Add-on preferences and add
#throbber-box { display: none !important; }
to the "Combine Stop/Reload buttons" style.
Jedai API Docs
I just uploaded the API Docs for Jedai ( jedai.googlecode.com ) to http://labs.emoten.com/jedai/docs/html/. Have fun!
Simple Variable Naming Prefix(s)
"_" private / protected
"__" item used for caching
"$_" pointer reference
"$__" cached pointer reference
the Dictionary, and Weak References.
I was trying to figure out some sort of IoC type control to force unlinking of all external items referencing item B when item B was about to be deconstructed and marked for recycling. Then it hit me, all I have to do is make sure the referencing ( the Signal/Slot system ) was using Weak References. Therefore, by design, when the only reference to item B exists is in a Weak Reference in a Dictionary, it will still be gc'd and how the signal/slot is setup the gc process actually unlinks all the event handlers automatically since they are, themselves, bound to the instance.
Now that I have it written, I've got to test it.. now how do I go about that -- Uggh.
Save State Web Browsers
I don't know why but there isn't a web browser out there yet that will allow you to save the entire state of a single window ( tabs'all ) so you can go and check it out later without having to simply minimize it and hope to god that the browser doesn't crash sometime between now and 'then'.
UPDATE: Shit, Safari does this. Bookmarks>Create Bookmark for these X tabs.