常用网址备份

怎么在已添加的git版本管理的项目中更新ignore文件

Remove existing files from the repository:

阅读更多

Flask和SQLAlchemy

Flask和SQLAlchemy

安装

怎么使用virtualenv

阅读更多

Python pip, flask使用备忘

pip使用

官网文档:https://pip.pypa.io/en/latest/user_guide.html

阅读更多

CSS样式基础学习笔记

CSS基础学习

问题:

  1. css的作用
  2. css的原理
  3. css的使用,针对每个部件配置

阅读更多

Flask database使用

Flask-SQLAlchemy的使用

  1. 初始化

阅读更多

Python Flask使用备忘

备忘:

  1. 处理请求参数:通过request.args.get可以获取get的参数和将参数放入header的post请求,如果需要处理将form-data的数据,需要使用request.form[‘key’]获取

示例:

1
2
3
4
5
6
7
method = request.method
if method == 'POST':
username = request.form['username']
password = request.form['password']
elif method == 'GET':
username = request.args.get('username')
password = request.args.get('password')

阅读更多

iOS in-house发布

几个备忘:

  1. plist的链接必须是https开头的,貌似第三方存储平台没啥用,还是考虑怎么在服务器端搞定吧
  2. 新版不会自动生成plist,所以需要手动的去弄
  3. https://xx./xx.plist这里对于长度没要求,不一定必须放入根目录中,(不知道谁好像说过,反正这个是没要求的)

阅读更多

iOS 应用的图标和启动图尺寸

官网数据:
https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html#//apple_ref/doc/uid/TP40006556-CH27-SW1

阅读更多

python study 0

input & output

  1. 输出 print 'Hello, world'

阅读更多

常用app url scheme

微信电话本: sharecalllog://

微信: wechat://

怎么获取app的 url scheme 参考网址:http://stackoverflow.com/questions/6845693/can-i-extract-the-custom-url-scheme-from-a-ipa-file

阅读更多