• Following no one
  • Nothing Unseen
  • Someone Random
  • Everyone
  • Events
 

Rey Bango   -   Follow Person   Add Another Site   Edit
reybango    @moz08    @tae2008    @jquerycon2008   
Flickr photos


Twitter
@fymd @mcaulay I will be doing a search on buckfast and Coatbridge. :P 12 days ago
@mcaulay Thanks for the gift. You're too kind. I truly appreciate it. :D 12 days ago
@mcaulay I am here! :D As for your gear, it seems dated now so I'll have to wait till someone else takes urs & u get new stuff 12 days ago
Rey Bango
Which is Your Primary Browser?   67 days ago

I did a REALLY informal poll on Twitter to see which browser people consider their primary browser. I’ve listed the results below. The “Browsing” category is what I consider results for a “primary” browser in terms of general day-to-day use while “Development” is the primary browser used to build web applications or help you in your job:

Browsing:

Firefox: 9 Chrome: 25 Safari: 10 IE: 2 (including @getify) Opera: 1

Development:

Firefox: 10 Chrome: 0 Safari: 0 IE: 1

Book Review: Crush It!   99 days ago

I picked up Gary Vaynerchuk’s new book “Crush It!“. I had the pleasure of seeing Gary give a presentation at FOWA Miami and the man can totally get you pumped up. So I really wanted to get this book to understand more about what drives him and if it’s something that can help me in my professional and personal life.

jQuery Still Amazes Me After 3 Years   128 days ago

I have some downtime at the moment so I wanted to get back to coding a little bit. One of the things I’ve been wanting to mess around with for some time is the Flickr API, mainly because I upload a boatload of pics to the service. Chris Heilmann posted a really great tutorial on pulling back pics using JSON and plain ole JavaScript. I have to admit that it was insanely easy and Chris, as always, did a great job of breaking it down. I made a few tweaks since, as he mentioned, document.write isn’t the best choice for outputting and the code was trivial:

function jsonFlickrFeed(o){ var i = 0, mainDiv = "", foo = ""; mainDiv = document.getElementById( "main" ); while(o.items[i]) { foo = document.createElement( "img" ); foo.setAttribute( "src", o.items[i].media.m ); main.appendChild( foo ); i++ } }


Learn about this site | Contact
API | Source Code
© 2008 Christopher Blizzard