Download: TTS Podcast is Easy.mp3
Matthew Kastor
Mandatory Gibberish and Logorrhea
Wednesday, May 22, 2013
TTS Podcast is Easy
Download: TTS Podcast is Easy.mp3
Thursday, May 16, 2013
Language Is A Virus and WTF-O-Vision
languageisavirus.com is a wonderful website filled with articles, games, and exercises designed to aid writers and cure writers block. If you like writing then I highly recommend bookmarking this website and visiting often!
Saturday, April 13, 2013
Jasmine Spec Runner Generator for JavaScript Unit Tests
Jasmine Spec Runner Generator for JavaScript Unit Tests
Want to automatically generate Test Spec Runner pages for Jasmine's JavaScript Unit tests?
Saturday, March 30, 2013
Integrate Ace Editor in CKEditor Source View
Integrate Ace Editor in CKEditor Source View
Have you ever wanted to have code highlighting and other advanced features in the CKEditor source view? Well, now you can! I've written up a script that will allow you to integrate any web based code editor into CKEditor's source view. It's extremely easy to do using my code. Simply set up a web page running your preferred source code editor in fullscreen mode and then use my script to inject it into the CKEditor. No more screwing around, just awesomeness in your editor!
Saturday, January 26, 2013
disable-output-escaping is not supported in Firefox
CDATA concatenation
or: disable-output-escaping is not supported in Firefox
Recently I was working on generating XML documents to contain arbitrary text. Naturally I wanted to make things easy on myself by wrapping said arbitrary text with CDATA sections. It just so happens that the text in question contains CDATA tags and as everyone knows, CDATA sections can not be nested. After searching around the web and running into "answers" that were pure opinion on what XML is, is for, and should do, I still didn't have the simple answer to a common problem so I wrote it myself and posted it here.
Wednesday, January 16, 2013
Javascript: HTML documentation and Intellisense for Visual Studio
Problem: I want to generate HTML documentation for my JavaScript files and have intellisense support in Visual Studio. I do not want to write massive comment blocks to support this.
Solution: Write javadoc style comments for jsdoc toolkit per standard practice. The rest can be easily automated.