dingstyle's recent timeline updates
dingstyle's repos on GitHub
OCaml · 156 watchers
opal
Self-contained monadic parser combinators for OCaml
CSS · 50 watchers
moo
Editor-agnostic markdown live previewer.
TeX · 38 watchers
hust-thesis-pandoc
使用Pandoc Markdown和LaTeX写华中科技大学本科生毕业论文。
TypeScript · 18 watchers
rough-diagram
Hand-drawn diagram based on rough.js.
CoffeeScript · 14 watchers
snake-ai
AI for Snake.
OCaml · 10 watchers
hackerrank
Hackerrank submissions
JavaScript · 10 watchers
LogoScript
Unfancy Logo Programming Language.
TypeScript · 5 watchers
convex-yjs
Convex + Yjs demo
Clojure · 5 watchers
w
Hindley-Milner type inference.
Python · 4 watchers
rollcat
Rainbows and unicorns.
Python · 3 watchers
Fujifilm-LUTs
Turn any camera into a Fujifilm — film simulation LUTs & Lightroom profiles for ACES, iPhone, and Photoshop, built from official color science
Clojure · 3 watchers
sicp
Solutions to SICP exercise in Clojure.
TypeScript · 2 watchers
icu-messageformat-parser
Python · 2 watchers
instahust
Sync Instagram photos tagged #instahust to Sina Weibo.
VimL · 2 watchers
vimrc
Less is more.
TypeScript · 1 watchers
fancy-hooks
OCaml · 1 watchers
opam-repository
Main public package repository for OPAM, the source package manager of OCaml.
JavaScript · 1 watchers
ShortUrl
URL shortener in Node.js
JavaScript · 1 watchers
ucla-cs237
Prototyping Programming Languages
0 watchers
agent
The Buildkite Agent is an open-source toolkit written in Go for securely running build jobs on any device or network
Java · 0 watchers
batfish
Go · 0 watchers
bazel-gazelle
Gazelle is a Bazel build file generator for Bazel projects. It natively supports Go and protobuf, and it may be extended to support new languages and custom rule sets.
Shell · 0 watchers
clang-min
0 watchers
cypress-esbuild-preprocessor
Bundle Cypress specs using esbuild
0 watchers
ecma402
Status, process, and documents for ECMA 402
0 watchers
esbuild
An extremely fast JavaScript bundler and minifier
JavaScript · 0 watchers
esbuild-repro
Starlark · 0 watchers
esbuild_side_effects_repro
TypeScript · 0 watchers
fast-messageformat-parser
Performant ICU MessageFormat parser with AST compatible with intl-messageformat-parser.
TypeScript · 0 watchers
formatjs
The monorepo home to all of the FormatJS related libraries.
CSS · 0 watchers
formatjs-swc-plugin-experimental-repro
formatjs-swc-plugin-experimental-repro
JavaScript · 0 watchers
formatjs-swc-plugin-experimental-test
formatjs-swc-plugin-experimental-test
0 watchers
globalize
A JavaScript library for internationalization and localization that leverages the official Unicode CLDR JSON data
0 watchers
HUST-Undergraduate-Thesis
An unofficial LaTeX HUST undergraduate thesis template maintained by Song Xie<[email protected]>
Rust · 0 watchers
intl-messageformat-parser-rs
Starlark · 0 watchers
js_image_layer_repro
Rust · 0 watchers
kanawin
Automatic switch layer plugin for kanata.
C · 0 watchers
kcalc
Arithmetic expression evaluator as pseudo device.
JavaScript · 0 watchers
neverland
a wordpress theme for ikde.org
0 watchers
parallel-prettier
Concurrent prettier runner
Python · 0 watchers
phabricator-alfred
Simple Phabricator controls by alfred
0 watchers
pnpm-repro
Ruby · 0 watchers
pyroc.at
Blog hosted on S3.
JavaScript · 0 watchers
rbt.js
Pure-functional Red-Black Tree Map in JavaScript.
0 watchers
react-intl
Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.
Python · 0 watchers
requests
Requests fork that honors timeout.
0 watchers
rhizome
A JIT for Ruby, implemented in pure Ruby
Go · 0 watchers
rules_itest
Bazel rules for integration testing services
Starlark · 0 watchers
rules_js_sandbox_repro
JavaScript · 0 watchers
snowball-fight
Merry Christmas.
Rust · 0 watchers
swc
swc is a super-fast compiler written in rust; producing widely-supported javascript from modern standards and typescript.
Starlark · 0 watchers
ts-bazel-repro
Starlark · 0 watchers
ts-json-repro
TypeScript · 0 watchers
tsbuild-bug-repro
Python · 0 watchers
typeshed
Collection of library stubs for Python, with static types
dingstyle

dingstyle

V2EX member #22387, joined on 2012-06-19 01:28:42 +08:00
dingstyle's recent replies
@ivanor 来源是?
May 10, 2013
Replied to a topic by undozen 程序员 可以再聊聊 emacs vs vim 吗?
楼主一定是来收铜币的,于是我来送5铜币了。
Apr 27, 2013
Replied to a topic by zikkeung 程序员 国外有人用macvim模仿sublime text2
@egen 这个只能在MacVim下用,控制台下优势何在?
Apr 3, 2013
Replied to a topic by pythonee 程序员 github图标怎么变成方块了?
字体没显示出来,这些图标都是字体
responsive
楼上有几位理解错了吧,楼主应该是说vim下不离开insert模式要怎么跳出括号。其实如果括号后面就是行尾,按Ctrl-e就可以了。另外,内置自动补全括号的编辑器,直接键入')'光标不就跳到括号外面去了么?
Mar 15, 2013
Replied to a topic by jingwentian 分享发现 Skillpages
@dingstyle typo,是1000万
Mar 15, 2013
Replied to a topic by jingwentian 分享发现 Skillpages
敢情这网站超过10万用户大多是被spam骗过来的啊……
Mar 5, 2013
Replied to a topic by jiyinyiyong 程序员 有没有同学来讲解下王垠的代码的...
@jiyinyiyong 他做的是自动将一个普通程序转换为等价的CPS形式。
Mar 4, 2013
Replied to a topic by jiyinyiyong 程序员 有没有同学来讲解下王垠的代码的...
楼上几位说得很清楚了,我在这里稍微补充一下:CPS的基本思想是将普通函数的return转换为调用另一个函数(即这个函数的continuation),由于函数永远都不会返回,我们也就不需要调用栈。举例来说呢,Chicken Scheme这样的编译器就会利用CPS来消除调用栈。
另外,如果一个程序写成了CPS形式的话,call/cc这个special form可以用一个普通函数来实现:

(lambda (f k) (f (lambda (v k0) (k v)) k))

由于call/cc一直是解释器性能优化的一个难点,不难理解CPS转换对于现代函数式语言的编译器、解释器的重要意义了。
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3635 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 43ms · UTC 04:46 · PVG 12:46 · LAX 21:46 · JFK 00:46
♥ Do have faith in what you're doing.