Questions
阿里云连pip install都无法成功
刚刚申请了一个免费的阿里云主机。ssh进入后 clone了一个flask的github repo。之后
`pip install -r requirements`
死活不能成功。总是说网络超时。是我RP不好还是这东西太烂?
SSLError: The read operation timed out
本应几分钟就搞定的事没想到如此艰难。
CentOS 7 Docker启动服务失败
CentOS 7 用官方的脚本安装的docker,启动服务失败:
详细错误信息: 请问怎么办? 机器是AWS上的标准的CentOS 7 镜像。
systemctl status docker.service -l
docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled)
Active: failed (Re...
ios9下在浏览器中通过scheme打开app的问题
ios9系统下,safari下通过iframe(scheme)的方式跳app,无法打开app,通过
location.href=scheme
的方式倒是可以,不过在没有安装app时,这种方式可能会直接跳转到一个错误页面(无法打开url之类)。另外,ios9下有一个新问题:
由于要考虑用户没有安装app的情况,所以当用户没有安装时(通过计时器判断)会跳转到app store,在ios9下,当跳转app时,会弹出一个弹框,让用户选择是否跳转,此时还在当前页,setTimeout中的代码会继续执行...
在 IOS 开发中 NSUserDefaults 取到二层循环的值怎么办
下面是 Plist 文件
现在我需要取出 Authentication 下的 Phone 的值
代码如下
var userDefaults = NSUserDefaults(suiteName: "RootCom")
println(userDefaults?.dictionaryForKey("Authentication"))
//以上这一步我就不知道如何取出 phone 的 强制转换成 NSDictionary 会有黄色感叹号
请问可以不可这样取值 那么...
什么架构工具可以实现命令行的一键启动?
我用express做了个node站,想用架构工具实现
1.一键启动demo(启动mongodb,启动express入口文件)
2.二次开发前,一键清空demo上的脏数据(图片\相关的后台代码文件\数据库表里存储的demo数据)
请问 有什么架构工具可以满足我的需求?
项目地址:
https://github.com/xjchenhao/nodeSite
追问: 后来我在gulp中的配置脚本中调用了node的
child_process
模块用了
exec
...
composer安装dingo/api报错
Your requirements could not be resolved to an installable set of packages.
Problem 1
The requested package dingo/api could not be found in any version, there may be a typo in the package name.
Potential causes:
A typo in the ...
iOS开发中在View上不显示MapView但是想利用mapView方法获取经纬度
iOS开发中在View上不显示MapView但是想利用mapView:(MKMapView
)mapView didUpdateUserLocation:(MKUserLocation
)userLocation方法获取经纬度
http协议里面的CRLF问题?
windows的换行符是 \r\n 然而linux unix mac os的换行符是\n
s.send(b'GET / HTTP/1.1\r\nHost: www.sina.com.cn\r\nConnection: close\r\n\r\n')
那么上面这段代码 在Linux下改为:
s.send(b'GET / HTTP/1.1
Host: www.sina.com.cn
Connection: close
')
这样会不会报错呢? windows下会不会正常工...
block内存管理的问题
[UIView animateWithDuration:0.2 animations:^{
self.movingView.transform = CGAffineTransformMakeTranslation(200, 0);
}];
非常常用的一个动画block.
那么,在动画 block 中使用了成员变量,会导致 retain cycle 吗?
PHP 可以用 linux 下的FIFO文件实现简单的生产者/消费者模式吗?
我想用两个PHP 进程。 一个写FIFO 文件,一个读FIFO文件,然后通过读到的内容拼接shell ,PHP 去执行这个shell.
大家觉得可行吗?可取吗?负载高的时候呢?
AttributeError: 'list' object has no attribute 'decode'?
对python的编码没搞懂,2.7版本:
AttributeError: 'list' object has no attribute 'decode'
AttributeError: 'list' object has no attribute 'encode'
这是啥意思,要怎么解决?
HTTP Proxy 负载均衡
现有多个HTTP代理服务器, 但是每个都有限制速度. 所以客户端达不到最大速度.
如何实现一个本地HTTP代理服务器, 可以将HTTP合理的分发到每一个代理服务器.
从而提高客户端的代理速度?
同样的url,验证码却不同?
http://kmustjwcxk3.kmust.edu.cn/JWWEB/sys/ValidateCode.aspx?t=892
登录URL是这个
http://kmustjwcxk3.kmust.edu.cn/JWWEB/
这是我们学校教务系统登录时验证码的url,
我把URL复制下来,在IE中打开。但是两个验证码却不一样
这是为什么?
是因为IIS服务器会根据两个请求的时间,判断出不是同一次请求?还是说什么