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
found 24 abc | |
found 1379 definitions | |
AS3 | |
AVM2 | |
ArgumentError | |
Array | |
Boolean | |
Class | |
Date |
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 | |
{ | |
public class Test | |
{ | |
public function Test() | |
{ | |
trace( "SWF version = " + _parseSWFVersion() ); | |
} |
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 | |
{ | |
public class Test | |
{ | |
private var _is64bit:Boolean; | |
public function Test() | |
{ | |
_is64bit = false; |
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 -e | |
# functions | |
check_tool() { | |
command -v "$1" >/dev/null 2>&1 || (echo "You need to install '$1'" && exit 2) | |
} | |
find_tool() { | |
local result=`command -v "$1"`; |
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 ); | |
} |
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
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
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
/* 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
#!/bin/bash | |
# _____ _ _ __ __ __ | |
# / ___/__ _______ ___ ____ _(_)___ / |/ /__ / /__ _____ ____/ /__ ___ | |
# / /__/ _ \/ __(_-</ _ `/ _ `/ / __/ / / -_) __/ |/|/ / _ \/ __/ '_/(_-< | |
# \___/\___/_/ /___/\_,_/\_,_/_/_/ /_/|_/\__/\__/|__,__/\___/_/ /_/\_\/___/ | |
# --------------------------------------------------------------------------- | |
# date: 2016-02-26 | |
# desc: Make a full redtamarin install | |
# deps: Ubuntu 14.04.4 LTS |
NewerOlder