V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  uorz  ›  全部回复第 2 页 / 共 2 页
回复总数  29
1  2  
表示对算法的有兴趣,具体在上海哪里?
2018 年 12 月 22 日
回复了 wddwycc 创建的主题 分享创造 用 Cloudflare 自己搞 DDNS
这个看起来不难,但是要想做好还是得调校算法的,还得智力构建训练集。刚好前两天给公司写了个类似的验证码识别的算法,有兴趣可以邮件我 Y2FwdGNoYUB1b3J6Lm1lCg==
2018 年 9 月 1 日
回复了 Andor_Chen 创建的主题 Flask 送几本《Flask Web 开发(第 2 版)》
分母+1
2018 年 8 月 16 日
回复了 wangxiaoaer 创建的主题 问与答 Docker 的一些疑问
用 export 完全不用担心啥 docker history 被泄露
2018 年 8 月 16 日
回复了 wangxiaoaer 创建的主题 问与答 Docker 的一些疑问
用 docker 的分段编译,完全不用担心最后的 images 过大。最简单的方式是在你本地编译通过,然后用 ldd 看需要哪些 so 文件,,这样根本不关 gcc 啥事,用 ADD 把这些文件添加到 docker 里面,然后 export 一下你的 docker image。生成的文件像 binary 一样拷过去 import 一下就成了。
2018 年 6 月 21 日
回复了 coderstory 创建的主题 Python 求帮忙把一个简单的 Python 改成 bash shell 的
Forgetting exit with status

```
#!/bin/bash

echo '.......................Code Style Checking....................'

git diff-index --cached HEAD |grep '\.java$'|\
while read -r FILE_NAME; do
java -jar $(git config --get checkstyle.jar) -c $FILE_NAME |tee| grep -Eq '(ERROR|WARN)' && \
echo '.......................You must fix the errors and warnings first, then excute commit command again...........' && \
exit -1
done

echo '.................................Code is very good...................'
```
2018 年 6 月 21 日
回复了 coderstory 创建的主题 Python 求帮忙把一个简单的 Python 改成 bash shell 的
```
#!/bin/bash

echo '.......................Code Style Checking....................'

git diff-index --cached HEAD |grep '\.java$'|\
while read -r FILE_NAME; do
java -jar $(git config --get checkstyle.jar) -c $FILE_NAME |tee| grep -Eq '(ERROR|WARN)' && \
echo '.......................You must fix the errors and warnings first, then excute commit command again...........'
done

echo '.................................Code is very good...................'
```

Not promised to work.
1  2  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3383 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 18ms · UTC 00:42 · PVG 08:42 · LAX 17:42 · JFK 20:42
♥ Do have faith in what you're doing.