Christi: I've got [Facebook] friends in 6 countries. I bet you can't say that.
Me: "I've got friends in 6 countries." Gee, that wasn't so hard.
-
July 31, 2009No Comments
-
July 29, 2009
Using only song names from ONE ARTIST, cleverly answer these questions. Pass it on to 15 people you like and include me. You can't use the band I used. Try not to repeat a song title. Repost as "my life according to (band name)"
Pick your Artist:
Tori AmosAre you a male or female:
Real MenDescribe yourself:
Father's SonHow do you feel:
BlissDescribe where you currently live:
Home on the RangeIf you could go anywhere, where would you go:
Jamaica InnYour favorite form of transportation:
Taxi RideYour best friend is:
Muhammad My FriendYou and your best friends are:
StrangeWhat's the weather like:
Spring HazeFavorite time of day:
I Don't Like MondaysIf your life was a TV show, what would it be called:
Pretty Good YearWhat is life to you:
Bouncing Off CloudsYour last relationship:
Heart of Gold -
July 25, 2009
I came across a problem in Internet Explorer (it wasn't a problem with Firefox) when I was trying to compare two strings. To me, one string looked to have an extra space in the front. No problem, I'll just call the jQuery trim function. Well, that didn't work. So I used charCodeAt and found it was ASCII character 160. I looked up char code 160 and saw that it is a "Non-breaking space". You would think that a "space" character would be trimmed. I looked at the jQuery code that does the trimming and the grep pattern uses
\s. So, evidently you can't use\sto catch the "Non-breaking space" in IE. I wonder why no one else has seen this. I wrote up a test page to illustrate this.To create the non-breaking space, you can use
String.fromCharCode(160)or the Unicode representation "\u00A0". " " doesn't seem to work when using regular expressions, although it behaves the same when printed.Browser Evaluates character 160 as white-space Firefox 3, 3.5 Yes Chrome 3.0 Yes Internet Explorer 7, 8 No Safari 3.2 No Opera 9 Yes -
July 23, 2009
Here's my entry for the The Daily WTF's Programming Praxis: Russian Peasant Multiplication:
function peasant1(a, b) { var value = a & 1 ? b : 0; while(a > 1) { a >>= 1; b <<= 1; if (a & 1) value += b; } return value; } function peasant2(a, b) { var value = a & 1 ? b : 0; if(a > 1) value += peasant2(a >> 1, b << 1); return value; } function peasant3(a, b) { return a > 1 ? (a & 1 ? b : 0) + peasant3(a >> 1, b << 1) : a & 1 ? b : 0; } function peasant4(a, b) { return a & 1 ? value = a > 1 ? value = b + peasant4(a >> 1, b << 1) : b : value = peasant4(a >> 1, b << 1); } -
July 22, 2009
test
-
July 15, 2009
Unicode character 2026 - "Horizontal Ellipsis"
In Windows: Alt-0133
In Java: \u2026
Example:
String ellipsis = "\u2026";In HTML: … or … or …
Example:
… or … or …In Javascript: \u2026
Example:
var ellipsis = "\u2026";
alert(ellipsis);Ricola log: \u2026
Example:
Ricola.log.debug("\u2026")
will output11:31:08 DEBUG - …Ricola showPleaseWait: any of the HTML entities: … or … or …
Example:
Ricola.page.showPleaseWait("Creating train documents&hellip;"); -
July 13, 2009
I love this kind of stuff.
-
July 10, 2009
This is the school my kids will eventually go to: http://www.ops.org/district/CENTRALOFFICES/BusinessServices/BuildingsandGrounds/SchoolhousePlanning/SaddlebrookJointFacility/tabid/957/Default.aspx
-
July 5, 2009
Our neighborhood had our first "annual" Fourth of July parade on Saturday. There was a much larger turnout than I expected. People lined their folding chairs along the route, which consisted of approximated 4 blocks. (It was down 151st street.) Crystal and Chris wore tiaras while Robb drove them in his convertible. That was funny. The kids rode in Rick's trailer. The homeowners association gave out ribbons for the best decorations. People threw candy along the route even! Good times...
-
July 5, 2009
The weather last night was fabulous! I loved it! And the moon was so full and clear. It inspired me:
The moon is bright
On this beautiful Fouth night


