jexm

jexm

Geek Repo

Company:Adoubo.cn

Location:sz.China

Home Page:Adoubo.cn

Github PK Tool:Github PK Tool

jexm's repositories

Stargazers:0Issues:2Issues:0

as3-libs

photo fullscreenResize

Language:ActionScriptStargazers:0Issues:2Issues:0

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

Stargazers:0Issues:1Issues:0

hashlink

A virtual machine for Haxe

Language:CStargazers:0Issues:0Issues:0
Stargazers:0Issues:2Issues:0

haxe_s

about the haxe

Stargazers:0Issues:1Issues:0

helloGirl_andord

helloGirl_andord

Stargazers:0Issues:1Issues:0
Stargazers:0Issues:0Issues:0
Stargazers:0Issues:1Issues:0

b-site

soft-forking from openbilibili/go-common

Language:GoStargazers:0Issues:0Issues:0

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; } }

Stargazers:0Issues:2Issues:0
Stargazers:0Issues:0Issues:0

OnsenUI

Custom Elements-Based HTML5 UI Framework for Building Your Mobile Front End

Language:JavaScriptLicense:NOASSERTIONStargazers:0Issues:1Issues:0

openbili-go-commom

听说这是来自 https://github.com/openbilibili/go-common/ 的 “哔哩哔哩 bilibili 网站后台工程 源码”,不过咱也不知道这是啥。

Language:GoStargazers:0Issues:0Issues:0

openbilibili

https://github.com/openbilibili/go-common 备份(反正是啥咱也不知道,咱也不敢问)

Language:GoStargazers:0Issues:0Issues:0
Stargazers:0Issues:1Issues:0
Language:ActionScriptStargazers:0Issues:1Issues:0
Stargazers:0Issues:2Issues:0

url_fav

https://github.com/jexm/urls_fav

Stargazers:0Issues:1Issues:0
Stargazers:0Issues:1Issues:0

wego

A forum system for Go written by tango & xorm

Language:GoStargazers:0Issues:1Issues:0
Stargazers:0Issues:0Issues:0