var countdown_d = new Date();
      var countdown_timenow = countdown_d.getTime();
      var countdown_targetdate = Date.parse("#{params[:year]}/#{params[:month]}/#{params[:day]} #{params[:hour]}:#{params[:minute]}")
...

JavaScript On countdown timer (minutes &a...

by seaofclouds, January 03, 2009 04:24

alright, i've got it workin...

F55e8e113669f6ea7d1d99f38907ce54 Talk

JavaScript On countdown timer (minutes &a...

by seaofclouds, January 02, 2009 21:54

@some - real nice solution....

F55e8e113669f6ea7d1d99f38907ce54 Talk

Ruby On browser detection and url r...

by seaofclouds, October 17, 2008 15:12

@adam - thanks for having a...

F55e8e113669f6ea7d1d99f38907ce54 Talk
def browser?(b)
    user_agents = {
      :ff   => /Firefox/,
...

Ruby On Code to detect the web browser

by seaofclouds, October 16, 2008 18:24

here it is. to test firefox...

F55e8e113669f6ea7d1d99f38907ce54 Talk
def browser?(b)
    user_agents = {
      :ff   => /Firefox/,
...

Ruby browser detection and url r...

by seaofclouds, October 16, 2008 18:19, 4 refactorings, tagged with helper, array, browser detect

i have a simple browser det...

F55e8e113669f6ea7d1d99f38907ce54 Talk
def browser(b)?
    user_agents = {
      /Firefox\/3/ => "ff3",
...

Ruby On Code to detect the web browser

by seaofclouds, October 13, 2008 16:51

i like what i see here, but...

F55e8e113669f6ea7d1d99f38907ce54 Talk
def translation_links
    languages = [
      %w[en english us],
...

Ruby On nested array to set of html...

by seaofclouds, October 09, 2008 15:02

AWESOME. i like the explici...

F55e8e113669f6ea7d1d99f38907ce54 Talk
def translation_links
    lang = [
      %w[en english us], 
...

Ruby nested array to set of html...

by seaofclouds, October 09, 2008 07:51, 2 refactorings, tagged with ruby, hash, array, translation

i have a simple array that ...

F55e8e113669f6ea7d1d99f38907ce54 Talk