Links
-
Recent Posts
Archives
- March 2019
- October 2016
- May 2016
- August 2015
- May 2015
- April 2015
- October 2014
- July 2014
- June 2014
- February 2014
- January 2014
- December 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- September 2012
- May 2012
- April 2012
- February 2012
- May 2011
- April 2011
- August 2010
- July 2010
- September 2009
- May 2009
- March 2009
- November 2008
- September 2008
- August 2008
- July 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- January 2005
- November 2004
- October 2004
- September 2004
- July 2004
- April 2004
- August 1996
- December 1994
- February 1992
Categories
- .NET
- AJAX
- AttentionRank
- Axonomics
- Browsers
- C#
- Chrome
- Coolhunting
- CSS
- dasBlog
- Downtime
- Family
- Faster Than Light
- Flash
- GL
- Hardware
- IPTV
- JavaScript
- JavaScript Benchmarks
- Just Kidding
- LOL-STAR
- MakerBot
- Massive
- Me Myself and I
- Meta-Narrative
- MetaWrap Server
- Mobile Phones
- MonoGame
- Music & Art
- My Hardware
- Nostalgia for Misspent Youth
- Ookle
- Parsing Theory
- Politics
- qr.tl
- Quantum Mechanics
- Rants
- Search
- Silverlight
- TheGame
- Things To Do
- ThumbWhere.com
- TimeConverter
- Uncategorized
- Web0.0
- Web2.0
- Whining
- XML
- XPath
Meta
Category Archives: JavaScript
ThumbWhere.Com
Been a bit quiet here for the last few months. I’ve been particularly busy at work but also I’ve been working on a few other projects on the side. One of these is ThumbWhere. http://thumbwhere.com (try the blog for more … Continue reading
Posted in JavaScript, ThumbWhere.com
1 Comment
Practical Applications Of Finite State Machines In Web Development
In my last post I described the basic State Machine/Theorem Prover developed in JavaScript here is a recap, update and continuation of that post based on the latest development. And BTW – This is my presentation for WebJam 08 … Continue reading
Posted in JavaScript, Massive, Web2.0, XML
1 Comment
Google Chrome – I Loves It
I Like it. Its fast. The tab page is genius. Its my default browser for everything bar web development. Webkit developers console is outclassed by FireBug on FireFox. Flash works. Flash player install required a few goes. Java Works.. but … Continue reading
Posted in Browsers, Flash, JavaScript, Silverlight
2 Comments
JavaScript Finite State Machine/Theorem Prover
I started writing this two years ago and never really got around to blogging about it. In a nutshell this is a module that runs within the MetaWrap JavaScript library that allows you to define a finite state machine in … Continue reading
Posted in JavaScript, Web2.0
3 Comments
Another Emmy Nomination For Massive Interactive
The cool thing about being able to work at Massive is that you straddle the extreme technical end of making things scale, in the web ‘C10k problem’ sense, combined with the demands of the general public TV audience. It combines both … Continue reading
Adobe Flash Player Security Change – Prepare For Some Breaking Changes In April
Adobe is planning to release a security update for Flash Player 9 in April 2008 to strengthen the security of Adobe Flash Player. This security update will make the optional socket policy file changes introduced in Flash Player 9,0,115,0 mandatory. … Continue reading
Posted in JavaScript
Leave a comment
MetaWrap JavaScript Library Back Up
There was a bad cable when we moved the servers around. All is good now. Thanks to the people who pointed this out, unfortunately I was was so busy I didn’t get to attend to this for a week. Now … Continue reading
Posted in Downtime, JavaScript
Leave a comment
Fast Loading Of XHTML as XML In JavaScript Using Msxml2.DOMDocument.*
This solved the issue I was having with MSXML not parsing XHTML as XML without an xml-declaration – which is the only format that Microsoft Expression Web will auto-detect as XHTML without forcing it to fail over to it. ([menu] Tools > Page Editor Options > Authoring … Continue reading
Posted in JavaScript, XML
1 Comment
JavaScript Macro Recorder
Here is a screen recording of my JavaScript Macro Recorder in action. Here is a test URL for a page that has the JavaScript code embedded. Works under IE and Firefox. Safari “Real Soon Now” 🙂 Add these two lines … Continue reading
Posted in JavaScript, Web2.0
12 Comments
window.onerror does not work in Safari
// Declare Error Handlerfunction oops() { alert (‘Error!’); return true;}// Assign to global error handlerwindow.onerror = oops;// Trigger an errorx.y.z(); This does not work, and it makes me sad. Updated – removed syntax error from example
Posted in JavaScript
5 Comments