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
今日活跃度排名 4190
一个简单易用的打包/自解包工具
分享创造  •  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 最近回复了
    2025 年 12 月 24 日
    回复了 92Developer 创建的主题 Android 我的 app 被人干了,颠覆了我的认知!
    @mrzx zip 也支持 AES256 的,只是早期默认使用的 ZipCrypto 容易受到明文攻击
    用 AMD ,想怎么解析你可以自己写,不适合工具链打包场景

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

    https://www.v2ex.com/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 。
    2025 年 10 月 4 日
    回复了 keelii 创建的主题 Node.js Node.JS 作者 Ryan Dahl 的故事
    @june4
    lua 的协程栈十分轻量,免去了 async/await 染色问题,只是性能较无栈的会差一些,我认为作为易用性优先的脚本语言实现有栈会更好一些,同时提供回调/无栈式 API 作为可选优化。考虑到 JS 的发展史,现在无栈设计可能是考虑到要兼容旧的 JS 单线程模型的无奈之举。
    无栈更应该是给 C++/Java/C#/Go 这种追求性能上限的语言用(虽然上述其中两个语言反而整了个有栈的实现)。

    另外 lua 可以自定义协程调度器,也带来很多便利,例如现在依然在 JS 提案阶段的[async-context]( https://github.com/tc39/proposal-async-context)在 lua 中就可以轻易实现。Node 现在似乎是通过提供一个内置的模块 async_hooks 来实现类似的功能。


    @otakustay js 很容易出现不兼容更新,node_modules 算是当时那个时间的好选择。但让包管理来处理复杂的依赖问题我觉得还是有局限性的,有的库不支持在同一个运行时环境下共存时,包管理也没辙。现在 typescript 库大量出现,在类型提示的帮助下兼容问题得到了改善,但现在 node_modules 的机制下 IDE 跳转只能跳到声明,看不到实现,对比其他包管理就成了劣势。(顺便提一个我一直在做的一个高度可扩展的多端统一的模块加载机制和包管理框架 https://www.v2ex.com/t/1104713 就是为了解决相关问题。)
    2025 年 10 月 4 日
    回复了 keelii 创建的主题 Node.js Node.JS 作者 Ryan Dahl 的故事
    要说的话,脚本语言里 Lua 支持有栈协程和自定义协程调度器,用作 IO 开发要更加合适。
    但 JS 就是靠着浏览器,通过用户积累生态,并收获更多用户的循环开始延伸到了各个领域(有意思的是 frida 这种不太相关的领域也用的 JS)。quickjs 的出现也让更多嵌入型框架开始考虑使用 js 作为支持脚本,即使其性能比不上 Lua 。
    遗憾的是 NPM/node_modules 和 GYP 真的是十分拖后腿的设计。
    2025 年 9 月 28 日
    回复了 nashaofu 创建的主题 分享发现 🚀 跨平台开源 SSH & SFTP 客户端 —— Shell360
    @nashaofu 有点意外,倒是听说 tauri 在 linux 的 webview 很容易出问题
    2025 年 9 月 27 日
    回复了 nashaofu 创建的主题 分享发现 🚀 跨平台开源 SSH & SFTP 客户端 —— Shell360
    tauri 用起来怎么样
    2025 年 7 月 21 日
    回复了 bf109_ 创建的主题 问与答 安卓有哪些好用的浏览器,可以安装扩展
    @bf109_ Firefox 内核一直是 Gecko 吧,还有新老内核的说法吗,要说最新内核大概说的 Servo?那个兼容性更不好说吧。
    关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   2686 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 10:03 · PVG 18:03 · LAX 02:03 · JFK 05:03
    ♥ Do have faith in what you're doing.