摘要:
Cookbook都是比较经典的系列。 阅读全文
摘要:
某些原因使得项目可能常常会被来回的迁移。如果没有事先规划好这种可能性的话这绝对是一个棘手的问题。Rob Hudson 有一个极好的技巧能够确保你的Django项目在部署过程中能够轻松的来回迁移。仅仅只要编写几行代码在你的配置文件(settings.py)中。1 import os2 BASE_DIR = os.path.dirname(os.path.abspath(__file__))3 4 TEMPLATE_DIRS = (5 BASE_DIR + '/templates',6 ) 阅读全文
摘要:
1. 回车重复。 windbg也实现了。shell不可能实现。(有些命令不支持,比如run,因为不能支持)2. 支持Tab自动完成,跟shell一样。命令和symbol都支持。 <ESC> followed by ?. 可以打印出所有可能。比如输入info 然后<ESC> followed by ? (gdb) inf inferior info 还能支持结构成员变量扩展3. 命令可以接参数,比如step 54. 命令只要没有二义就不用写全。 更有甚者(这样的设计很好),有二义也有二义的优先级,比如s就指的是step5. Getting Help help h help 阅读全文
摘要:
啥东西有logging就是牛X的,Django也有logging。set logging onEnable logging. 默认打印到当前目录的gdb.txt文件set logging offDisable logging. set logging file fileChange the name of the current logfile. The default logfile isgdb.txt.set logging overwrite [on|off]By default, gdb will append to the logfile. Set overwrite if you 阅读全文
摘要:
shell command-string 阅读全文
摘要:
quit [expression]qTo exit gdb, use the quit command (abbreviated q), or type an end-of-file character (usually Ctrl-d). If you do not supply expression, gdb will terminate normally; otherwise it will terminate using the result of expression as the error code.An interrupt (often Ctrl-c) does not exit 阅读全文
摘要:
怎么调用gdbgdb programgdb program corefile <=> gdb program -c corefilegdb program 1234 would attach gdb to process 1234 (unless you also have a file named 1234; gdb does check for a core file first). gdb --args gcc -O2 -c foo.c This will cause gdb to debug gcc, and to set gcc's command-line ar 阅读全文
摘要:
学习gdb 记录:http://sourceware.org/gdb/download/onlinedocs/gdb/index.html有时候总是感觉学不透彻,不能成为高手,那是因为没有系统学习。把guide通读一遍是一个途径。网上有些文章为什么不想读,是因为太长长。。。。 阅读全文
摘要:
版本:1.0版本说明:1) 大部分来源于http://www.cnblogs.com/cacique/archive/2012/09/29/2707976.html2) 自己测试用,使用svn比较方便以下详细步骤1. create foldermysite22. cmd to mysite2django-admin.py startproject blog#F:\tools\Django-1.5\build\scripts-2.7\django-admin.py 是Django 安装路径此时目录结构如下blog/ manage.py blog/ __init__.py settings.py 阅读全文
摘要:
阅读全文