记录自己的第一个比较长的汇编代码,
看学完后,回过头再来看的感觉是什么。没新意的想法写出来的代码,只是没有纯dos环境。通过debug倒是看到全部的结果,不过是一个个显示
。题目是王爽汇编实验9.本是自己记录,当然,大家有什么看法,欢迎随便说说。assume cs:code, ss:stacksgd...
分类:
其他好文 时间:
2014-04-27 23:24:06
阅读次数:
492
github.com,作为程序员的代码仓库,我们经常会用到。但有时候我们不能直接通过网络链接它,只能通过代理。
这里我有一台代理服务器,起初我以为在终端设置了代理环境就行了,其设置为在你的~/.bashrc里增加以下几行:
export http_proxy="http://proxy-server:3128/"
export https_proxy="http://proxy-server:...
分类:
系统相关 时间:
2014-04-27 19:50:27
阅读次数:
1181
有个项目需要实现push的方式从左向右,现在记录一下我的学习过程
push 从左向右
- (void)settingBtnMethod{
CATransition *transition = [CATransition animation];
transition.duration = 0.5f;
transition.timingFunction ...
分类:
其他好文 时间:
2014-04-27 18:53:32
阅读次数:
577