This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:!function(){var%20regularExpression%20=%20/war/gi;document.body.innerHTML%20=%20document.body.innerHTML.replace(regularExpression,%20%27hugs%27,%20%27gi%27);}(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nnoremap <leader><leader> :ZoomWin<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Use Node.js for JavaScript interpretation | |
let $JS_CMD='node' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package flashx.textLayout.elements.examples { | |
import flash.display.Sprite; | |
import flash.text.engine.FontPosture; | |
import flash.text.engine.Kerning; | |
import flashx.textLayout.container.ContainerController; | |
import flashx.textLayout.edit.SelectionFormat; | |
import flashx.textLayout.edit.SelectionManager; | |
import flashx.textLayout.elements.Configuration; | |
import flashx.textLayout.elements.LinkElement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
# Debug | |
# Compile the debug swf | |
mxmlc "bin/Foo-debug.swf" do |t| | |
FileUtils.touch "src/Foo.as" | |
t.input = "src/Foo.as" | |
t.debug = true | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Async.proceedOnEvent( this | |
, mockService.callSuccess() | |
, ResultEvent.RESULT | |
, 50 | |
, function(event:Event=null):void | |
{ | |
assertTrue(true); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//AS3/////////////////////////////////////////////////////////////////////////// | |
// | |
// Copyright 2010 Kristofer Joseph. | |
// | |
//////////////////////////////////////////////////////////////////////////////// | |
package com.developsigner.view.skins | |
{ | |
import org.flexunit.Assert; | |
import org.flexunit.async.Async; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project name="Notes" default="debug-phone"> | |
<property file="build.properties"/> | |
<property name="deploy.dir" value="deploy"/> | |
<property name="src.dir" value="src"/> | |
<property name="assets.dir" value="assets"/> | |
<property name="flex.mxmlc" value="${flex.sdk}/bin/mxmlc"/> | |
<property name="flex.compc" value="${flex.sdk}/bin/compc"/> | |
<property name="air.amxmlc" value="${flex.sdk}/bin/amxmlc"/> | |
<property name="air.adl" value="${flex.sdk}/bin/amxmlc"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def handle_project_path path | |
project_path = File.expand_path(path) | |
project_hash = MD5.digest(project_path) | |
project_cache = File.join(tmp, project_hash) | |
swcs = FileUtils["#{project_path}/**/*.swc"] | |
handled_swc_paths = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
# encoding: utf-8 | |
require ENV['TM_SUPPORT_PATH'] + '/lib/ui' | |
skins_path = ENV['TM_FLEX_PATH'] + '/frameworks/projects/spark/src/spark/skins/spark' | |
file = TextMate::UI.request_file(:title => "Select Skin Class", :directory => skins_path) | |
contents = IO.read("#{file}") | |
File.open(ENV['TM_NEW_FILE'], 'w+') do |f| | |
f.write contents |
NewerOlder