V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  zhuangzhuang1988  ›  全部回复第 95 页 / 共 111 页
回复总数  2213
1 ... 91  92  93  94  95  96  97  98  99  100 ... 111  
Groovy.
@likai "用 java 是为了有一个好的编程习惯" ==> 说得没错..
2016-07-27 20:14:07 +08:00
回复了 myyou 创建的主题 Python django 执行多请求的流程是什么?
熟读 wsgi 协议先...
2016-07-26 21:24:17 +08:00
回复了 zhongsheng 创建的主题 程序员 迷茫的高三学生 (准备复读了)
好好读书, 大学有的是时间折腾编程..
2016-07-25 22:06:13 +08:00
回复了 miaotaizi 创建的主题 程序员 老婆有二胎了, 无奈辞了工作回家陪产.
@miaotaizi 慢慢来嘛..
2016-07-25 21:58:48 +08:00
回复了 miaotaizi 创建的主题 程序员 老婆有二胎了, 无奈辞了工作回家陪产.
为了 vr 去学 C++不就是南辕北辙么, 要学也得学 C#(Unity)啊,或者 js 本身也可以啊,
看这个例子 https://channel9.msdn.com/blogs/misslivirose/Introduction-to-the-VR-Web
2016-07-23 16:04:02 +08:00
回复了 dettac 创建的主题 PHP [求助]PHP imagepng()函数如何将 png 图片生成至指定目录?
自己写一下, 测试一下要死啊...
看源码吧...
2016-07-22 20:34:36 +08:00
回复了 slysly759 创建的主题 Python 请教一下 Python 多进程的内容
用 visualstudio 分析一下, 慢在哪里, 再优化..
2016-07-22 17:44:57 +08:00
回复了 yiciyuansky 创建的主题 程序员 有没有什么能生成 html 的小程序?
vue + ajax ???!!!
2016-07-22 15:18:55 +08:00
回复了 allencloud 创建的主题 Node.js 一段 node.js 代码,如何优化防止 callback hell?
擦 , 空格都没了
2016-07-22 15:18:26 +08:00
回复了 allencloud 创建的主题 Node.js 一段 node.js 代码,如何优化防止 callback hell?
如果闲的蛋疼的话可以试试 http://fsprojects.github.io/Fable/
最后结果类似这样
```F#
async {
try
let! exists = users.userExists({username: username})
if exists:
res.status(HttpStatus.CONFLICT).json(response);
return;
try:
let! users.emailExists(profile.email)
if exists:
response.error = '邮箱 ' + profile.email + ' 已存在';
res.status(HttpStatus.CONFLICT).json(response);
return
try:
let! (uid, hash) = users.createUser(username, password, profile)
response.statusMessage = '成功生成用户';
response.uid = uid;
res.json(response);
except err:
response.error = '生成用户错误';
console.error('Failed to create user ' + err);
res.status(HttpStatus.INTERNAL_SERVER_ERROR).json(response);

except err:
console.error('checking email error');
response.error = '业务忙,请稍候重试';
res.status(HttpStatus.INTERNAL_SERVER_ERROR).json(response);
except err:
console.error('Error testing if user exists: ' + err);
response.error = '业务忙,请稍候重试'
res.status(HttpStatus.INTERNAL_SERVER_ERROR).json(response);
finally:
users.close()
}

```
2016-07-20 16:13:16 +08:00
回复了 elvis_w 创建的主题 Python 才发现微软为 Python 3.5 提供了编译器——Visual C++ Build Tools
原来的 vc++ 2008 应该还是可以用的吧..
2016-07-19 12:24:47 +08:00
回复了 kafukwen 创建的主题 Android 吐槽!公司前辈程序员还是用 eclipse,如何劝解他也用 AS?
以前老同时喜欢用 vc6 调试 window 驱动内核..
所以说"我爷爷活了 96 岁"..
唉...
啥破题目, 基本素养 和 IDE 有啥关系??
2016-07-18 08:34:05 +08:00
回复了 jason19659 创建的主题 Go 编程语言 最近想学 go 作为第二语言
java?
那就 scala/kotlin/clojure 搞起来..
2016-07-17 14:32:01 +08:00
回复了 Stlin 创建的主题 程序员 用 Vue 写了个斗鱼的 Web App
牛逼..
2016-07-17 12:06:10 +08:00
回复了 nooper 创建的主题 Python Python 性能的大杀器
@guyskk 嗯, 没说所有的都必须使用 lazy 技术, 简单的来说 你的 module 里加载太多, 比如里面还有个 time.sleep(1000), 但是实际上你这个模块根本没用到. 咋办...
1 ... 91  92  93  94  95  96  97  98  99  100 ... 111  
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5562 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 50ms · UTC 02:22 · PVG 10:22 · LAX 19:22 · JFK 22:22
Developed with CodeLauncher
♥ Do have faith in what you're doing.