Price Difference: Dell vs TigerDirect
I was recently in the market for a second GTX260 to run in SLI mode. Checking the usual suspect (NCIX, NewEgg, TigerDirect, and Dell) i found a huge discrepency in pricing between the first thre and Dell.




I emailed dell about this and to check wether or not they do price matching. NO RESPONSE! Shame on you Dell.
Here are the pricing difference on the BFG GeForce GTX 260 OC2 MAXCORE editiion
- TigerDirect (Canada) - $290.99
- NCIX.com - $213.16 (this is OC not OC2 version)
- Dell.ca - $429.99
That is a $139 price difference! Why?
for that money, i can step up to a GTX 295!
Also, seems my Dell account is not longer active. Maybe they kicked me off for making to many comments on price discrepencies!
Classic Car Ride In
Every saturday from may to september the Street Classics Cruise & Weekly Car Show organization meets up and has a little thing called the ’show and shine’
this is located at 1408 Queensway Ave (Canadian Tire parking lot) in Etobicoke
event runs 5:30 onwards, and it’s FREE!!!
make sure you come out and check out some vintage.
I will be attending this saturday with my car! be sure to drop by and say hello drop by and say hello.
Sushi Game 2000
Wow. Just Wow. Cleaning my basement i discovered a box of old portfolio/cv cd-roms!
Started going through them and i found this gem.
It is a flash 4, that’s right, a game written in flash 4. timeline code FTW!
This was when i worked at Deepend Inc, now long defunct.
Enjoy
My Chalkboard
1. old frame from used art store. LOL, used art
2. sheet of masonite
3. can of chalkboard spray paint
4. can of silver spray paint



Bookmarklet: Introducing qwikr!
Posted by admin in bookmarklet, sites, things on May 5th, 2009
qwikr - twitter quick post bookmarklet!
step 1:
grab the bookmarklet from http://addons.32teeth.org or drag the image below to your bookmark bar
step 2:
click the bookmarklet
![]()
step 3:
submit a new tweet!
![]()
step 4:
enjoy your new tweet!
![]()
/LFW; [looking for work]
we built this quick POC (proof of concept) on filtering and hashing
it’s essentially a small ‘looking for work’ portlet
in it’s current state it only serves up the required search pages
our eventual plan is to take those search pages from the appropriate providers and PHP cURL them into tangible / searchable information
in addition, searches will be crawled and save, thus providing future visitors the ability to rate and rank search results
play around with the POC and let us know what you think
comments are welcome as always
check it out here:
/LFW; [looking for work]
Step 1: Click ‘Filter’ to get started
![]()
Step 2: Select you attributes
![]()
Step 3: Pick you city(s)

Step 4: Pick you site(s)
![]()
Step 5: Your search is now listed

Bookmarklet - Translator
Posted by admin in bookmarklet on April 24th, 2009
out of a necessity (mostly because i read russian bbc http://www.bbc.co.uk/russian/)
i decided that instead of suffering through remembering how to read russian, and too lazy to constantly visit google translate, a bookmarklet was born.
the initial idea was to build an inline translator, one that would edit the selected (highlighted) text in the pages dom.
this worked, but made the page ugly (layout wise). so an inline modal window was born.
by default, the highlighted text gets translated to english (maybe a preference setting in next release)
but i decided to leave a filter dropdown for the user to be able to translate the detected language and selected text into whatever language.
there are a few small bugs (mostly from google translate) where the language detected is wrong. this is due to the detection not picking up the appropriate character set.
anyway, here are some screens. hope you enjoy it!



drag the link above (or right click) to your toolbar.
Watch your language…
…or at least help me find the user preferenced language setting!
recently we have been developing a bookmarklet app that is dependant on user language settings, in order to return the information appropriately.
the database we have been working with (not ours) had it’s language field as an enum with only 2 character representation of the user language ie: en, fr… …and so on.
heres the deal.
safari and opera return navigator.language as a 2 character identifier, this is good (en, fr…)
firefox returns navigator.language as a detailed region character identifier (en-US)
internet explorer returns navigator.userLanguage similar to firefox, just all lower case (en-us)
so here is our 2 character return solution.
function Language()
{
// laguage string from navigator
var string = !navigator.userLanguage ? navigator.language : navigator.userLanguage;
// regex & match
var regex = /[\w]{2}/g;
var links = string.match(regex);
// return the first 2 charachters (en, fr…)
return string.match(regex)[0];
}
try it out
!console ? alert(Language()) : console.log(Language());
enjoy!





















