This file contains hidden or 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 nodeas.http | |
{ | |
public class HttpRequest | |
{ | |
private var _request:String; | |
public function HttpRequest():void | |
{ | |
super(); |
This file contains hidden or 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
#!/bin/bash | |
function follow_links() { | |
file="$1" | |
while [ -h "$file" ]; do | |
# On Mac OS, readlink -f doesn't work. | |
file="$(readlink "$file")" | |
done | |
echo "$file" | |
} |
This file contains hidden or 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
#!/bin/bash | |
function follow_links() { | |
file="$1" | |
while [ -h "$file" ]; do | |
# On Mac OS, readlink -f doesn't work. | |
file="$(readlink "$file")" | |
done | |
echo "$file" | |
} |
This file contains hidden or 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
@ECHO OFF | |
REM -- Redtamarin Windows Environment Setup | |
REM -- This will install the following: | |
REM -- 1) Cygwin | |
REM -- https://cygwin.com/ | |
REM -- 2) Cygwin Packages | |
REM -- bash,bash-completion,mintty,ncurses,which, | |
REM -- nano,wget,hostname,openssh | |
REM -- 3) apt-cyg - Cygwin Package Manager | |
REM -- https://github.com/transcode-open/apt-cyg |
This file contains hidden or 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
#!/bin/bash | |
# _____ _ _ __ __ __ | |
# / ___/__ _______ ___ ____ _(_)___ / |/ /__ / /__ _____ ____/ /__ ___ | |
# / /__/ _ \/ __(_-</ _ `/ _ `/ / __/ / / -_) __/ |/|/ / _ \/ __/ '_/(_-< | |
# \___/\___/_/ /___/\_,_/\_,_/_/_/ /_/|_/\__/\__/|__,__/\___/_/ /_/\_\/___/ | |
# --------------------------------------------------------------------------- | |
# date: 2016-02-26 | |
# desc: Make a full redtamarin install | |
# deps: Ubuntu 14.04.4 LTS |
This file contains hidden or 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
/* Usage: | |
public class Something | |
{ | |
private var _mutex:Mutex; | |
private var _commands:WorkerConnection; | |
public function say( message:String ):void | |
{ |
This file contains hidden or 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 flash.net | |
{ | |
import C.arpa.inet.*; | |
import C.errno.*; | |
import C.netdb.*; | |
import C.netinet.*; | |
import C.sys.socket.*; | |
import C.unistd.*; | |
This file contains hidden or 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 corsaair.bootstrap.ui.colors | |
{ | |
/** | |
* Google's Meterial Design Palette class. | |
* | |
* <p> | |
* This color palette comprises primary and accent colors | |
* that can be used for illustration or to develop your | |
* brand colors. |
This file contains hidden or 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/as3shebang | |
import shell.*; | |
var name:String = "13.html"; | |
if( FileSystem.exists( name ) ) | |
{ | |
FileSystem.remove( name ); | |
} |
This file contains hidden or 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/as3shebang | |
import shell.*; | |
var name:String = "attacking_javascript_engines.html"; | |
if( FileSystem.exists( name ) ) | |
{ | |
FileSystem.remove( name ); | |
} |