2016年7月7日

DataSnap

摘要: 一. DataSnap REST - http://docwiki.embarcadero.com/RADStudio/Berlin/en/DataSnap_REST 1. URI Mapping: (js 如何访问 DataSnap Server) 1.1HTTP请求格式: http://my.s 阅读全文

posted @ 2016-07-07 17:44 rexhu 阅读(206) 评论(0) 推荐(0) 编辑

2016年7月4日

py函数递归

摘要: 1.从前有座山,山中有座庙,庙里有一个老和尚在讲故事... 2.递归:程序调用自身。 3.形式:在函数定义有直接或间接调用自身。 例如:阶乘: n!= 1 x 2 x 3 x ... x n; 从后身前考虑 p(n) = n * (n-1)!, p(n-1) = (n-1)* (n-2)! 4. 初 阅读全文

posted @ 2016-07-04 08:05 rexhu 阅读(161) 评论(0) 推荐(0) 编辑

2016年6月29日

uWSGI

摘要: 参考:http://perlmaven.com/deploying-pyton-with-uwsgi-on-ubuntu-13-10 阅读全文

posted @ 2016-06-29 17:37 rexhu 阅读(87) 评论(0) 推荐(0) 编辑

2016年6月14日

TCP连接状态图

摘要: 阅读全文

posted @ 2016-06-14 09:44 rexhu 阅读(66) 评论(0) 推荐(0) 编辑

2016年6月9日

py正则表达式

摘要: 1.元字符 . ^ $ * + ? {} [] \ | () --> [] : - 常用来指定一个字符集:[abc], [a-z] 匹配任意一个字符 - 元字符在字符集中不起作用:[akm$] 但是^ 这个字符放在前面表示不匹配这里面字符 [^abc] - 补集匹配不在区间范围内的字符:[^5] - 阅读全文

posted @ 2016-06-09 06:58 rexhu 阅读(406) 评论(0) 推荐(0) 编辑

2016年5月31日

泛型

摘要: 理解: 1.<T> 你要替换的参数类型。 2. 阅读全文

posted @ 2016-05-31 21:57 rexhu 阅读(66) 评论(0) 推荐(0) 编辑

2016年5月26日

Django

摘要: 参考:http://djangobook.py3k.cn/2.0/ Q1. 在Ubuntu 16.04下安装Django? [使用其中一种方法] 1.apt-get update 2.For Python2: apt-get install python-django, For Python3: a 阅读全文

posted @ 2016-05-26 18:05 rexhu 阅读(136) 评论(0) 推荐(0) 编辑

Ubuntu

摘要: Q1:Official Ubuntu Documention https://help.ubuntu.com/ Q2: 修改TTY分辨率(ChangeTTYResolution) For 9.10 and later: /etc/default/grub 1.查看分辨率:vbeinfo 2.添加一新 阅读全文

posted @ 2016-05-26 17:34 rexhu 阅读(177) 评论(0) 推荐(0) 编辑

Bash

摘要: 资源1:http://tldp.org/LDP/abs/html/index.html 资源2: 1. 函数 Shell 函数定义 函数的返回值,可以显示的增加retrun;如果不加,会将最后一条命令运行结果作为返回值。 函数的返回值只能是整数,一般用来表示执行成功与否,0表示成功,其他表示失败。 阅读全文

posted @ 2016-05-26 15:01 rexhu 阅读(113) 评论(0) 推荐(0) 编辑

2016年5月23日

FireDAC

摘要: http://docs.embarcadero.com/products/rad_studio/firedac/frames.html Access: http://docwiki.embarcadero.com/RADStudio/XE8/en/Connect_to_Microsoft_Acces 阅读全文

posted @ 2016-05-23 21:38 rexhu 阅读(178) 评论(0) 推荐(0) 编辑

导航