[Skratchdot.]

v1.0.3 – Released September 10, 2011

 
  • [FEATURE REQUEST: #3] Added the ability to import patterns from other .esx files
  • [TODO: #13] Added “reset perspective” functionality
  • [TODO: #14] Fixed unclear message when dragging audio files
  • [BUG: #10] Fixed rounding issue when setting SampleTune
 
Download here: http://code.google.com/p/open-electribe-editor/downloads/list
Tagged with:

domFormat is a simple javascript library to get DOM nodes as formatted/pretty strings.

You can find the source code here:

https://github.com/skratchdot/domFormat

And some examples here:

http://skratchdot.github.com/domFormat/examples/index-html5.html

Here are 2 bookmarklets:

– Show Source –

– Reload Page With Formatted Source –

Tagged with:

When working in SVN, I have a batch script I’ve used in the past to create “DEPLOY” and “RESTORE” folders off of diffs between branches. The script will create a “DEPLOY” folder containing all added and modified files, and a “RESTORE” folder containing all modified files.

The purpose of this, is to deploy a set of files to a different environment. I can just copy the “DEPLOY” folder to any number of servers. If there is a bug that made it through QA, and we need to immediately rollback changes, we can just copy the “RESTORE” folder to all the same servers.

I just wrote a similar script for Git: Git-Diff-Build-Script

Tagged with:

This weekend I read an interesting blog post called “JSON: The JavaScript subset that isn’t” and decided to test ColdFusion’s SerializeJSON() function to see if the “bug” existed there. It does. To reproduce, you can create a .cfm page that contains the following HTML/CF code:

1
2
3
<script type="text/javascript">
    var test = #SerializeJSON("test" & chr(8232))#;
</script>

To “fix” the bug, you can replace SerializeJSON() with SafeSerializeJSON() like this:

Tagged with: