V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  zhuangzhuang1988  ›  全部回复第 99 页 / 共 108 页
回复总数  2144
1 ... 91  92  93  94  95  96  97  98  99  100 ... 108  
2016-03-21 23:17:47 +08:00
回复了 MRJ 创建的主题 程序员 groovy 语言怎么样?
用 Scala 把。。 动态语言不好,不好。。
2016-03-21 10:47:43 +08:00
回复了 tanyamia 创建的主题 分享创造 设计妹子求程序员合作( 可免费哦) 附 GUI 手绘 icon 分享
好漂亮..
2016-03-19 23:33:08 +08:00
回复了 Threezj 创建的主题 程序员 大家最喜欢哪种后端语言?
@minsheng 这货没有宇宙第一的 ide 支持, 玩不来。
2016-03-19 22:12:45 +08:00
回复了 Threezj 创建的主题 程序员 大家最喜欢哪种后端语言?
必须是 c# , 异步啥的比 Nodejs 的好得多, 而且强类型+类型推导, 想写错都难。
2016-03-16 22:30:17 +08:00
回复了 sujin190 创建的主题 Python tornado 连续踩了两次坑,看来想驾驭好它还不容易啊
好惨。。。
2016-03-16 21:53:57 +08:00
回复了 zhaojjxvi 创建的主题 Linux 求个老笔记本的 Linux 方案
xp 不是很好么, linux 图形的话对硬件要求很高的。。
2016-03-15 23:25:07 +08:00
回复了 chuhemiao 创建的主题 硬件 是应该组装个电脑还是买个 mac pro?
笔记本就只有 mac??
2016-03-14 14:12:00 +08:00
回复了 xiaomajia008 创建的主题 程序员 请教个前端同学关于 new vue 和 vue.extend 的区别。。
额. 看源码 调试调试..
2016-03-13 22:41:13 +08:00
回复了 iannil 创建的主题 机械键盘 求推荐一个 Windows 下好点的键盘,适合开发的
我用的是 ikbc 红轴。全键盘。。
2016-03-13 22:38:23 +08:00
回复了 wico77 创建的主题 Node.js 寻找 nodejs 小伙伴
profile 一下。 像 flask 自带有 profile 工具的。。
没头脑就用 nodejs 没啥用的。
2016-03-12 19:52:50 +08:00
回复了 march1993 创建的主题 JavaScript GUI 编程有用有限状态机代替 OOP 的吗?
状态机? 可以看这个。。。 https://book.douban.com/subject/6886605/ 在最后有关于状态机 UI 编程。。
代码大概这样

let rec drawingLoop(clr, from) = async {
let! move = Async.AwaitEvent(form.MouseMove) #1
if (move.Button &&& MouseButtons.Left) = MouseButtons.Left then
drawRectangle(clr, from, (move.X, move.Y)) #2
return! drawingLoop(clr, from) #2
else
return (move.X, move.Y)
} #3

let waitingLoop() = async {
while true do #4
let! down = Async.AwaitEvent(form.MouseDown)
let downPos = (down.X, down.Y)
if (down.Button &&& MouseButtons.Left) = MouseButtons.Left then
let! upPos = drawingLoop(Color.IndianRed, downPos) #5
do printfn "Drawn rectanlge (%A, %A)" downPos upPos
}

#A Wait for the next mouse action
#2 Refresh rectangle and continue in the 'Drawing' state
#3 Return end location to the 'Waiting' state
#4 Repeat after drawing finishes
#5 Transition to the 'Drawing' state
2016-03-12 19:40:56 +08:00
回复了 quietin 创建的主题 程序员 感觉做 python 想去大公司稍微有点难
对的。。
2016-03-07 10:57:17 +08:00
回复了 billion 创建的主题 Python Python 如何将 windows 剪贴板中的图片保存到电脑上?
@billion 你要自己构建 bmp 的头才可能看得到..
2016-03-07 09:34:52 +08:00
回复了 billion 创建的主题 Python Python 如何将 windows 剪贴板中的图片保存到电脑上?
bmp 不仅仅只是后缀名, 也是有格式的..
2016-03-02 15:55:35 +08:00
回复了 haoc 创建的主题 Python 这算不算 python 的小坑?
@haoc 对的 好多东西似乎写起来爽.项目大的时候真想骂娘..
2016-03-02 15:50:15 +08:00
回复了 haoc 创建的主题 Python 这算不算 python 的小坑?
对的, 是坑...
2016-03-02 09:45:18 +08:00
回复了 strahe 创建的主题 Linux 刚看到一个 KDE 的视频,惊呆了。
没啥鸟用...
2016-03-01 17:32:59 +08:00
回复了 professorz 创建的主题 JavaScript 为什么 redux 的 example 用 es6 语法写?
你知道有一种叫做 typescript 的东西吗?
1 ... 91  92  93  94  95  96  97  98  99  100 ... 108  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   727 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 46ms · UTC 20:57 · PVG 04:57 · LAX 13:57 · JFK 16:57
Developed with CodeLauncher
♥ Do have faith in what you're doing.