Archive for the ‘JavaScript’ Category
Monday, March 16th, 2009
Do you have an economy-grade website host? Me too. BlueHost is great for only $6.95 per month but its response times and transfer rates are terrible. Fear not — Amazon S3 to the rescue. For pennies a day you can supplement your cheap website host using ...
Posted in Amazing, Annoying, Blog, DIY, Deals, Entertainment, Hardware, Hosting, IT, JavaScript, Programming, Ridiculous, Software, Technology, Web Development | 3 Comments »
Monday, October 20th, 2008
Me too.
While writing a JavaScript countdown timer the other day I ran into a very peculiar issue. Every time I refreshed the page, the countdown had 0 hours, 59 minutes, and 59 seconds remaining, regardless of the current time, but it had the correct number of days.
To set the ...
Posted in Annoying, Bugs, Depressing, JavaScript, Programming, Ridiculous, Web Development | No Comments »
Monday, September 22nd, 2008
I was reading Life Hacker's Best of the Best today and came across Launchy, a Windows application launcher, so I decided to check it out. I run NoScript at work for security purposes so I was greeted with the following image.
And I quote: "This is where Ads would go, ...
Posted in Ads, Humor, IT, JavaScript, Programming, Quotes, Software, Web Development | No Comments »
Tuesday, June 17th, 2008
So was I. Luckily there is a handy configuration option that tells TinyMCE to leave your code alone:
verify_html : false
The resulting code should look something like this:
tinyMCE.init({
theme: "advanced",
mode: "exact",
elements: "html",
theme_advanced_toolbar_location: "top",
verify_html: false
});
Happy coding!
Source
Related posts:Caching With Zend Framework Using Zend_Cache
Posted in Annoying, Depressing, JavaScript, Programming, Software, Web Development | No Comments »
Thursday, October 18th, 2007
Behold my first experience parsing XML with JavaScript and consuming a web service.
http://jeremyglover.com/apps/AJAX1007/day_2_homework_consumer.php
No related posts.
Posted in JavaScript, PHP, Software, Technology, Web Development | No Comments »
Monday, October 15th, 2007
This week I had the opportunity to play with JavaScript for my Building Rich Applications with PHP 5 and AJAX class. Our homework was to create Tic Tac Toe using JavaScript. As a bonus we were to implement the game using JavaScript objects (very handy) and have the ...
Posted in Entertainment, Gaming, JavaScript, PHP, Software, Technology, Web Development | No Comments »