Related Posts
twitterAutoLinks: jQuery extension to replace twitter @names for links to their respective pages.
Save the following on a .js file, preferably named jquery.twitterAutoLinks.js [javascript] /** Auto replace all Twitter nicknames for links */ $.fn.twitterAutoLinks = function() { return this.each(function() { var html = $(this).html(); $(this).html(html.replace(/B@([w-]+)/gm, ‘<a href="http://twitter.com/$1" target="_blank">@$1</a>’)); }); }; [/javascript] Usage After importing the jquery.twitterAutoLinks.js file (make sure it’s after you’ve imported jquery itself), you’ll use the […]
Venezolanos en el Google Code Jam 2007
Mis respetos y felicitaciones a los siguientes Venezolanos que ya pasaron la primera ronda del Google Code Jam 2007: De 250 competidores calificados, a continuacion los nicks de los Venezolanos y su posicion dentro del Ranking: Zaen (8) SuperRaskao (12) kiddi (40) PrOgRaMaKeR (67) hheras (77) Ghust_omega (110) Eduardofeo (131) LaguneXXX (133) X-KERNEL (246) Gracias […]
Animating a game-like sky with HTML5 Canvas
Try it | View Source Again playing a little more with HTML5 and Canvas animation. This time around the result is a little more pleasing to the eye, based on some ideas I have for a little arcade game I want to make I’ve created a gradient blue sky and clouds that move either to […]