Ruby On browser detection and url r...

by seaofclouds, October 17, 2008 15:12

@adam - thanks for having a...

F55e8e113669f6ea7d1d99f38907ce54 Talk
1
2
3
4
  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
1
2
3
4
  def browser?(b)
    user_agents = {
      :ff   => /Firefox/,
...

Ruby browser detection and url r...

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

i have a simple browser det...

F55e8e113669f6ea7d1d99f38907ce54 Talk
1
2
3
4
  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
1
2
3
4
  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
1
2
3
4
  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, array, hash, translation

i have a simple array that ...

F55e8e113669f6ea7d1d99f38907ce54 Talk