dingstyle 最近的时间轴更新
dingstyle's repos on GitHub
OCaml · 146 人关注
opal
Self-contained monadic parser combinators for OCaml
CSS · 51 人关注
moo
Editor-agnostic markdown live previewer.
TeX · 37 人关注
hust-thesis-pandoc
使用Pandoc Markdown和LaTeX写华中科技大学本科生毕业论文。
OCaml · 10 人关注
hackerrank
Hackerrank submissions
JavaScript · 10 人关注
LogoScript
Unfancy Logo Programming Language.
TypeScript · 3 人关注
convex-yjs
Convex + Yjs demo
TypeScript · 2 人关注
icu-messageformat-parser
Python · 2 人关注
instahust
Sync Instagram photos tagged #instahust to Sina Weibo.
TypeScript · 1 人关注
fancy-hooks
OCaml · 1 人关注
opam-repository
Main public package repository for OPAM, the source package manager of OCaml.
Java · 0 人关注
batfish
0 人关注
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 人关注
clang-min
0 人关注
cypress-esbuild-preprocessor
Bundle Cypress specs using esbuild
0 人关注
ecma402
Status, process, and documents for ECMA 402
0 人关注
esbuild
An extremely fast JavaScript bundler and minifier
Starlark · 0 人关注
esbuild_side_effects_repro
TypeScript · 0 人关注
fast-messageformat-parser
Performant ICU MessageFormat parser with AST compatible with intl-messageformat-parser.
TypeScript · 0 人关注
formatjs
The monorepo home to all of the FormatJS related libraries.
CSS · 0 人关注
formatjs-swc-plugin-experimental-repro
formatjs-swc-plugin-experimental-repro
JavaScript · 0 人关注
formatjs-swc-plugin-experimental-test
formatjs-swc-plugin-experimental-test
0 人关注
globalize
A JavaScript library for internationalization and localization that leverages the official Unicode CLDR JSON data
0 人关注
HUST-Undergraduate-Thesis
An unofficial LaTeX HUST undergraduate thesis template maintained by Song Xie<[email protected]>
Rust · 0 人关注
intl-messageformat-parser-rs
Starlark · 0 人关注
js_image_layer_repro
C · 0 人关注
kcalc
Arithmetic expression evaluator as pseudo device.
JavaScript · 0 人关注
neverland
a wordpress theme for ikde.org
0 人关注
parallel-prettier
Concurrent prettier runner
Python · 0 人关注
phabricator-alfred
Simple Phabricator controls by alfred
0 人关注
pnpm-repro
dingstyle

dingstyle

V2EX 第 22387 号会员,加入于 2012-06-19 01:28:42 +08:00
dingstyle 最近回复了
@ivanor 来源是?
2013-05-10 11:29:18 +08:00
回复了 undozen 创建的主题 程序员 可以再聊聊 emacs vs vim 吗?
楼主一定是来收铜币的,于是我来送5铜币了。
2013-04-27 13:08:59 +08:00
回复了 zikkeung 创建的主题 程序员 国外有人用macvim模仿sublime text2
@egen 这个只能在MacVim下用,控制台下优势何在?
2013-04-03 21:19:10 +08:00
回复了 pythonee 创建的主题 程序员 github图标怎么变成方块了?
字体没显示出来,这些图标都是字体
2013-03-29 10:59:41 +08:00
回复了 workaholic 创建的主题 程序员 前端菜鸟问题:网页宽度选择960px还是1200px?
responsive
2013-03-29 10:52:23 +08:00
回复了 aisensiy 创建的主题 程序员 在编辑器里面你怎么样从当前的括号跳到括号后边
楼上有几位理解错了吧,楼主应该是说vim下不离开insert模式要怎么跳出括号。其实如果括号后面就是行尾,按Ctrl-e就可以了。另外,内置自动补全括号的编辑器,直接键入')'光标不就跳到括号外面去了么?
2013-03-15 17:15:26 +08:00
回复了 jingwentian 创建的主题 分享发现 Skillpages
@dingstyle typo,是1000万
2013-03-15 17:14:32 +08:00
回复了 jingwentian 创建的主题 分享发现 Skillpages
敢情这网站超过10万用户大多是被spam骗过来的啊……
2013-03-05 00:36:49 +08:00
回复了 jiyinyiyong 创建的主题 程序员 有没有同学来讲解下王垠的代码的...
@jiyinyiyong 他做的是自动将一个普通程序转换为等价的CPS形式。
2013-03-04 21:59:29 +08:00
回复了 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转换对于现代函数式语言的编译器、解释器的重要意义了。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1337 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 17ms · UTC 17:32 · PVG 01:32 · LAX 10:32 · JFK 13:32
Developed with CodeLauncher
♥ Do have faith in what you're doing.