pursuer 最近的时间轴更新
pursuer's repos on GitHub
C · 18 人关注
pwart
A lightweight WebAssembly JIT compiler and runtime , powered by sljit. PR and issue are welcome.
C · 5 人关注
tinycc-min
A branch fork from TinyCC(https://repo.or.cz/tinycc.git) and remove unnecessary feature.
C · 3 人关注
libffi
libffi with cmake build system ,fork from https://github.com/am11/libffi/tree/feature/cmake-build-configs
C++ · 2 人关注
PxpRpc
a very tiny rpc library aim to intercommunicate and interchange data cross platforms and languages(c,java,python,typescript(javascript),c#) with high performance and little load.
C · 2 人关注
tinyjit
[deprecated]A jit libraryextract and enhance from the tinycc compiler backend.
C++ · 1 人关注
avian
Avian is a lightweight virtual machine and class library designed to provide a useful subset of Java's (JVM) features, suitable for building self-contained applications.
Java · 1 人关注
jgit
Pure java implementation of Git used by EGit(fork of https://git.eclipse.org/r/jgit/jgit.git, but no history commit,)
C++ · 1 人关注
selfextractingexe
A tool to pack directory into one executable, which can self extract these packed files out when executed. Support Windows and Linux
C · 1 人关注
simpleffi
Simple ffi to cross compile easily. With limited function.
GLSL · 0 人关注
GLSLSample
Note the glsl usage
JavaScript · 0 人关注
Js2Py
JavaScript to Python Translator & JavaScript interpreter written in 100% pure Python🚀 Try it online:
0 人关注
libffi-forked
A portable foreign-function interface library.
C · 0 人关注
libuv-patched
libuv patched to support for android API 21 , and other old os for compatibility.
0 人关注
node4android-patch
patch node.js to compile android release
TypeScript · 0 人关注
partic2-iamdee
Small and extensible AMD loader. Branch of https://github.com/grassator/iamdee
TypeScript · 0 人关注
protask
Generator based task library.
Python · 0 人关注
PursuerJavaBridgeGen
This is a code generator to generate C jni glue code according to the java files.
TypeScript · 0 人关注
pxprpc4vscode-server
TypeScript · 0 人关注
pxseed-CorePackages
"pxseed" is a package manager manage javascript/typescript code and assets for browser ,node(server) and txiki.js by using AMD loader.
JavaScript · 0 人关注
pxseed-sample-1
Python · 0 人关注
python-mingw-patch
patch the python on windows to let the python support compile native c/c++ code with MinGW
Python · 0 人关注
remotepyexecutor
"remotepyexecutor" is a python module to execute python source code on remote host with TCP connection.
C · 0 人关注
simple-memory-allocator
Implement memory allocator function(like malloc realloc free etc.) on a flat memory space
C · 0 人关注
sljit
Platform independent low-level JIT compiler
C · 0 人关注
tbox-build-tools
Some tbox build tools(extract from xmake) can help you build tbox where xmake is not installed
C · 0 人关注
tinycc
Unofficial mirror of mob development branch
C · 0 人关注
txiki.js
A tiny JavaScript runtime
C · 0 人关注
txiki.js-partic
C++ · 0 人关注
VideoCaptureLibrary
Cross-platform library for video capture device
Java · 0 人关注
xplatj1
a trial project aim to make a cross-platform layer (deprecated, see xplatj2)
Java · 0 人关注
xplatj2
a trial project aim to make a cross-platform layer
pursuer

pursuer

V2EX 第 358584 号会员,加入于 2018-10-25 15:17:15 +08:00
今日活跃度排名 773
一个简单易用的打包/自解包工具
分享创造  •  pursuer  •  2025 年 11 月 20 日
async 函数中止/task local 方案后记,V8 上的另一个可行思路
JavaScript  •  pursuer  •  2024 年 11 月 18 日  •  最后回复来自 pursuer
3
写了一个轻量的 WebAssembly JIT 运行时 PWART
  •  1   
    分享创造  •  pursuer  •  2022 年 11 月 14 日  •  最后回复来自 pursuer
    2
    踩了一个 Java 编译时和运行时环境不一致导致的一个坑
    Java  •  pursuer  •  2020 年 10 月 22 日  •  最后回复来自 Goooogle
    6
    视频平台之后,"游戏"平台能否成为下一个发展方向呢
    奇思妙想  •  pursuer  •  2020 年 7 月 22 日  •  最后回复来自 zvil
    34
    pursuer 最近回复了
    重新登录这个在 ssh 客户端上配一下就能一键登录,还能顺便并连接到 tmux ,也不是强需求的样子
    用 tmux 就不用担心掉线和漫游问题了吧
    1 月 18 日
    回复了 Moonkin 创建的主题 Android 开源无 sim 手机是不是大有可为?
    有些开发板应该类似,但是成本应该低不了,低成本要规模够大,受众少就降低不了成本了
    我现在想找个 windows 下交叉编译 Linux 的 SYSROOT ,不知道有没有现成的,懒得自己去折腾。。
    这么一看 preact 更小众了
    2025 年 12 月 24 日
    回复了 92Developer 创建的主题 Android 我的 app 被人干了,颠覆了我的认知!
    @mrzx zip 也支持 AES256 的,只是早期默认使用的 ZipCrypto 容易受到明文攻击
    用 AMD ,想怎么解析你可以自己写,不适合工具链打包场景

    https://github.com/partic2/partic2-iamdee

    https://study.congcong.us/t/1104713
    2025 年 10 月 5 日
    回复了 keelii 创建的主题 Node.js Node.JS 作者 Ryan Dahl 的故事
    @june4
    卡住一段时间这个定义太模糊,甚至有时候设计的时候不能确定函数是否会卡住,比如 node 的 require 是同步的,实际模块加载甚至可能从网络加载这一点来看,应该被设计为一个异步操作。后来 esm 设计的 dynamic import 就成异步的了。
    async 明确切出点对并发编程和性能优化确实很友好。实际在 HTTP 服务器中考虑锁的情况相对少,但是我经常忘记写 await ,即使用了 ts 也只能部分避免这类错误。而且作为脚本语言应该追求书写简单,引入无栈协程对新手来说不是很友好。python 的 asyncio 也是有些人不爱用,Go 的无脑 goroutine 反而受欢迎。
    2025 年 10 月 4 日
    回复了 keelii 创建的主题 Node.js Node.JS 作者 Ryan Dahl 的故事
    @keelii
    学到了,不过似乎大部分 NPM 库都不发布.ts 。
    关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   5263 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 50ms · UTC 08:26 · PVG 16:26 · LAX 00:26 · JFK 03:26
    ♥ Do have faith in what you're doing.