Pinned Repositories
apache-xampp
as3-libs
photo fullscreenResize
for-neko
nekotools server to start up a local server for the current project. The server will be available by visiting http://localhost:2000 in a web browser. Syntax to use: nekotools server -p 2000 -h localhost -d c:\your\web\root\ -rewrite
hashlink
A virtual machine for Haxe
haxe_openfl
haxe_s
about the haxe
helloGirl_andord
helloGirl_andord
js-php
myLog-mysql
send_mail_for_neko
jexm's Repositories
jexm/send_mail_for_neko
jexm/apache-xampp
jexm/as3-libs
photo fullscreenResize
jexm/for-neko
nekotools server to start up a local server for the current project. The server will be available by visiting http://localhost:2000 in a web browser. Syntax to use: nekotools server -p 2000 -h localhost -d c:\your\web\root\ -rewrite
jexm/hashlink
A virtual machine for Haxe
jexm/haxe_openfl
jexm/haxe_s
about the haxe
jexm/helloGirl_andord
helloGirl_andord
jexm/js-php
jexm/myLog-mysql
jexm/b-site
soft-forking from openbilibili/go-common
jexm/NekoTimer
package; class NekoTimer { private static var threadActive:Bool = false; private static var timersList:Array<TimerInfo> = new Array<TimerInfo>(); private static var timerInterval:Float = 0.1; public static function addTimer(interval:Int, callMethod:Void->Void):Int { //setup timer thread if not yet active if (!threadActive) setupTimerThread(); //add the given timer return timersList.push(new TimerInfo(interval, callMethod, Sys.time() * 1000)) - 1; } public static function delTimer(id:Int):Void { timersList.splice(id, 1); } private static function setupTimerThread():Void { threadActive = true; neko.vm.Thread.create(function() { while (true) { Sys.sleep(timerInterval); for (timer in timersList) { if (Sys.time() * 1000 - timer.lastCallTimestamp >= timer.interval) { timer.callMethod(); timer.lastCallTimestamp = Sys.time() * 1000; } } } }); } } private class TimerInfo { public var interval:Int; public var callMethod:Void->Void; public var lastCallTimestamp:Float; public function new(interval:Int, callMethod:Void->Void, lastCallTimestamp:Float) { this.interval = interval; this.callMethod = callMethod; this.lastCallTimestamp = lastCallTimestamp; } }
jexm/NekoTimer.hx
ddd
jexm/OnsenUI
Custom Elements-Based HTML5 UI Framework for Building Your Mobile Front End
jexm/openbili-go-commom
听说这是来自 https://github.com/openbilibili/go-common/ 的 “哔哩哔哩 bilibili 网站后台工程 源码”,不过咱也不知道这是啥。
jexm/openbilibili
https://github.com/openbilibili/go-common 备份(反正是啥咱也不知道,咱也不敢问)
jexm/send_mail_for_neko22
jexm.ma
jexm/singSkyApp
jexm/tutorial
jexm/url_fav
https://github.com/jexm/urls_fav
jexm/urls_fav
jexm/wego
A forum system for Go written by tango & xorm
jexm/wxpay