Archive for the ‘JavaScript’ Category
Thursday, May 20th, 2010
I’ve been intrigued by a few different “Javascript on the server” frameworks as they have passed by. Here is one that runs Javascript in a cloud and have an online IDE for creating the sites. The article at the bottom is an interview with the creator.
Akshell is a Cloud Service that helps developers [...]
Tags: framework, ide, server
Posted in Frameworks, JavaScript | Comments Off
Friday, February 26th, 2010
I found a funny quirk to the javascript parseInt function today. I tried this:
hour = parseInt(“08″);
expected a value of hour == 8. What was the result? hour == 0. huh?
Well, here’s the function syntax:
parseInt(string, radix)
If the radix parameter is omitted, JavaScript assumes the following:
If the string begins with “0x”, the radix is 16 (hexadecimal)
If [...]
Tags: tip
Posted in JavaScript | 1 Comment »
Tuesday, January 12th, 2010
A list of tutorials to do some very clever things with CSS and JS. Some notables:
Advanced Event Timeline With PHP, CSS & jQuery
Sproing! – Make An Elastic Thumbnail Menu
Sticky SideNav Layout with CSS
Simply-Buttons v2
A Colorful Clock With CSS & jQuery
45 Powerful CSS/JavaScript-Techniques – Smashing Magazine
Tags: menu, navigation, timeline
Posted in HTML & CSS, JavaScript | Comments Off
Thursday, December 31st, 2009
I was looking to see if there were any frameworks for HTML 5 and came across SproutCore. It’s an MVC framework and has some similarity to GWT in that it compiles all the code into HTML/JS/CSS that should work across browsers without plug-ins. Also like GWT, it has a bunch of panels, buttons, and controls [...]
Tags: framework, html5
Posted in Android Development, HTML & CSS, JavaScript, Mobile | Comments Off
Thursday, November 12th, 2009
I’ve been learning about Clojure over the last month or two, which is a dialect of the Lisp programming language that compiles to the JVM. That has nothing to do with this blog except that it led to finding Google’s Closure Tools.
Closure Tools include a JavaScript Optimizer, a comprehensive JavaScript library, and an easy templating [...]
Tags: closure, optimization
Posted in JavaScript | Comments Off
Wednesday, September 16th, 2009
I was doing some research on tools to create interesting visualizations of data and ran across this very interesting visualization from Gapminder.org tracking infant mortality rate versus per capita income for a variety of countries over time—with country population thrown in for good measure. That’s 5—yes, count them 5—”dimensions” of data. It takes the form [...]
Tags: JavaScript, libraries, visualizations
Posted in JavaScript | Comments Off
Wednesday, July 15th, 2009
Janet recently found a site that is using non-standard fonts for most of their text. As we explored the site to figure out how they were doing this, we found Cufon. Cufon allows for text replacement similar to sIFR, but without the use of Flash. This opens up design possibilities using more fonts without making [...]
Tags: cufon, fonts
Posted in Graphic Design, HTML & CSS, JavaScript, Web Design | 1 Comment »
Monday, June 29th, 2009
On Thursday, as the world was looking to the internet for information about Michael Jackson, the internet came to a crawl. The initial assumption was that news sites simply weren’t equipped to handle the spike in traffic that such an event would cause. Even Google News flagged the surge as an automated attack. According to [...]
Tags: iframe, iframe widget, michael jackson, performance, widget
Posted in Community, Social Networking, JavaScript, Website Hosting | Comments Off
Tuesday, June 2nd, 2009
I found a JQuery plugin which allows you to put tiny in-line graphs and charts into your HTML with “one line of Javascript”. (For the picky people, no this is not counting all of your data prep work and initialization of JQuery). Very clean and very configurable, lots of options.
I would’ve really liked [...]
Tags: charts, jQuery, tools
Posted in JavaScript | 2 Comments »
Wednesday, May 27th, 2009
At Google I/O (Google’s developer conference), Steve Souders (the creator of YSlow) presented a few ideas for making websites even faster.
When it comes to optimizing a website for speed and user experience, there’s only so much you can do from the backend. The most room for performance improvement is in client-side frontend. Anywhere between 80 [...]
Tags: css, Google IO, JavaScript, minify, performance
Posted in HTML & CSS, JavaScript, Technology, Web Design | Comments Off