V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  jimmyye  ›  全部回复第 4 页 / 共 8 页
回复总数  142
1  2  3  4  5  6  7  8  
2017-12-07 10:58:11 +08:00
回复了 2ME 创建的主题 程序员 BWG KVM 装 bbr 的时候提示 VPS 是 OpenVZ 无法安装
19.9 买 kvm 后转机房到 cn2,电信效果还是可以的。
2017-12-07 10:33:21 +08:00
回复了 2ME 创建的主题 程序员 BWG KVM 装 bbr 的时候提示 VPS 是 OpenVZ 无法安装
直接跟客服说买的 KVM 给的是 OpenVZ 不就行了,bbr 什么的有 KVM 后再处理
2017-11-20 13:04:27 +08:00
回复了 xiaoyaozi 创建的主题 程序员 工程师圈的正能量,冰冷湖水救一车 4 人还有孕妇!
只想说有些人太敏感了,事实就是工程师做,是工程师还不能说了?
去年在京东买的 LG 4k 显示器(质保 3 年)+plus 会员,几个月后四个角有不同程度显示异常,拖到一年零一天后续了 plus,然后报修,全程电话联系,上门收件,到修好送回来大概 10 天,不扯皮,态度好。所以以后还是选京东,尽管听说有这样那样的问题。
第一次听说。
2017-06-12 11:54:27 +08:00
回复了 liuxu 创建的主题 全球工单系统 为啥 V2EX 总是 502 bad gateway
6 月出现好几次了,没有代理
2017-06-09 18:37:49 +08:00
回复了 SimbaPeng 创建的主题 Python Python3 里的 dict 是有序的吧?
https://docs.python.org/3.6/whatsnew/3.6.html#new-dict-implementation
> The order-preserving aspect of this new implementation is considered an implementation detail and should not be relied upon (this may change in the future, but it is desired to have this new dict implementation in the language for a few releases before changing the language spec to mandate order-preserving semantics for all current and future Python implementations; this also helps preserve backwards-compatibility with older versions of the language where random iteration order is still in effect, e.g. Python 3.5).
2017-05-30 22:39:07 +08:00
回复了 callmexiaoliu 创建的主题 Android react native 只支持 api>16?没有办法了吗?
今年的 react 大会有说到,Facebook 官方 APP 有部分用到了 react native
因为异常导致赋值没有进行,在 except 里给它们赋值 None 就行了
2017-04-12 14:05:53 +08:00
回复了 fanne 创建的主题 Django django 定时任务选用哪种方式?
2017-04-09 00:57:53 +08:00
回复了 cpublic 创建的主题 VPS 求救呀, Let’s Encrypt 证书续期碰到"No module named virtualenv"问题?
也许是账号原因?我的步骤里面有设置 Email ,官方的好像没有仔细讲:

Install
wget -O - https://get.acme.sh | sh
# relogin or source .bashrc

Setup
# ACCOUNT_EMAIL:
vim .acme.sh/account.conf

# webroot:
sudo mkdir /srv/www/acme && chown jimmyye:jimmyye /srv/www/acme

sudo vim /etc/nginx/acme-challenge.conf
```
location /.well-known/acme-challenge/ {
root /srv/www/acme/;
try_files $uri =404;
access_log off;
}
```

# change /etc/nginx/site-enabled/domain.com.conf
```
server {
listen 80;
server_name domain.com www.domain.com;

include acme-challenge.conf;

location / {
return 301 https://domain.com$request_uri;
}
}
```

Issue certs
acme.sh --issue --days 60 -w /srv/www/acme -d domain.com -d www.domain.com

Install certs

**** Permissions ****
sudo chown jimmyye:www-data /etc/nginx/ssl
sudo vim /etc/sudoers.d/nginx_reload
```
# Cmnd alias specification
# Nginx reload
Cmnd_Alias NGINX_RELOAD = /usr/sbin/service nginx reload

# No-Password Commands
jimmyye ALL=NOPASSWD: NGINX_RELOAD

```

acme.sh --installcert -d domain.com --fullchainpath /etc/nginx/ssl/domain.com-chained.crt --keypath /etc/nginx/ssl/domain.com.key --reloadcmd "sudo service nginx reload"

另外测试的时候使用 --staging 或 --test 使用测试服务器,以免超出次数限制:
https://github.com/Neilpang/acme.sh/wiki/Options-and-Params
2017-04-08 19:07:38 +08:00
回复了 cpublic 创建的主题 VPS 求救呀, Let’s Encrypt 证书续期碰到"No module named virtualenv"问题?
https://github.com/Neilpang/acme.sh 吧,没有依赖,就一脚本
2017-04-08 11:11:09 +08:00
回复了 xuhaotian 创建的主题 程序员 心机队友拿我的代码当自己的去上交,还举报我做得少。
commit log 是根据本地时间,但是 Github 有各种 event 记录用户事件(至少 public repo 是有的),其中 PushEvent 记录了某些 push 信息(创建时间、 sha 等), Github 官方或者第三方 Github archive 都有此类事件存档
2017-02-16 14:16:38 +08:00
回复了 Tony2ee 创建的主题 问与答 相比京东,亚马逊好在哪里?
为什么楼上都说京东的是塑料袋?我收到的好像全是箱子的。
2017-02-03 11:44:55 +08:00
回复了 yangxg 创建的主题 Python 有没有类似于 Fabric 但支持 Py3 的自动部署工具?
@dcoder 官方还没有支持 Python3 : https://github.com/fabric/fabric
那里的 py3k 版本也只是一个 fork : https://github.com/mathiasertl/fabric
1  2  3  4  5  6  7  8  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   4011 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 37ms · UTC 05:15 · PVG 13:15 · LAX 21:15 · JFK 00:15
Developed with CodeLauncher
♥ Do have faith in what you're doing.