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
pkgname='haxe-preview' | |
pkgver='4.0.0_preview.3' | |
pkgrel=1 | |
arch=('x86_64') | |
source=('https://github.com/HaxeFoundation/haxe/releases/download/4.0.0-preview.3/haxe-4.0.0-preview.3-linux64.tar.gz') | |
md5sums=('fb7a928234eeeef3122b368d6fcadaf2') | |
depends=('neko') | |
provides=('haxe') | |
conflicts=('haxe') |
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
@PART[*]:HAS[@MODULE[kOSProcessor]] | |
{ | |
%MODULE[ModuleSPU] {} | |
} |
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
local sc = string.char | |
local mc = math.ceil | |
local bls, brs, band = bit.blshift, bit.brshift, bit.band | |
local tc = table.concat | |
local chars = {} | |
for i = 0, 25 do | |
chars[i] = sc(65 + i) | |
end |
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
import java.io.File; | |
import java.lang.reflect.Method; | |
import java.net.URL; | |
import java.net.URLClassLoader; | |
/** | |
* | |
* @author apemanzilla | |
* | |
*/ |
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
local function delay(seconds) | |
-- safe version of 'sleep' - will requeue dropped events | |
local timer = os.startTimer(seconds) | |
local q = {} | |
while true do | |
local data = {os.pullEvent()} | |
if data[1] == "timer" and data[2] == timer then | |
break | |
else | |
table.insert(q, data) |