上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 8 Recursion8.11 recursive templates8.12 variations on the basic templates8.13 trees and car/cdr recursion8.14 helping functions8.16 tail recursion8.18... 阅读全文
posted @ 2015-05-10 00:49 Jolin123 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 7 Applicative Programming7.2 funcall7.3 mapcar7.4 manipulating tables with mapcar7.5 lambda expressions7.6 find-if7.7 my-assoc7.8 remove-if, remove-if... 阅读全文
posted @ 2015-05-07 10:08 Jolin123 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 6 list data structure 首先注意cons的用法 (cons 'w '(x y z)) -> (w x y z)但是想在list的结尾添加一个元素就不能这样实现,eg,(cons '(w x y) 'z) -> ((w x y) . z)6.3 the APPEND functio... 阅读全文
posted @ 2015-05-04 22:02 Jolin123 阅读(917) 评论(0) 推荐(0) 编辑
摘要: vundleYouCompleteMeVimwikivundle1.setup vundle$ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim 2.配置插件,编辑主目录下的.vimrc文件,在文件... 阅读全文
posted @ 2015-04-20 19:29 Jolin123 阅读(277) 评论(0) 推荐(0) 编辑
摘要: django.core.urlresolvers (django 1.7)url()url()函数有四个参数,regex,view,kwargs,name.前面两个是必须的regex: 是用来匹配url的正则view: 正则匹配之后调用的view函数,参数是HttpRequest,也可以从正则里面抓... 阅读全文
posted @ 2015-04-19 19:58 Jolin123 阅读(498) 评论(0) 推荐(0) 编辑
摘要: Functions as objects and closurespython中的函数是first-class objects,即它们可以作为参数传递到其他函数中,可以存储到数据结构中,也可以作为函数的返回值一个简单例子# foo.pydef callf(func): return func(... 阅读全文
posted @ 2015-04-19 00:16 Jolin123 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 变量名的力量命名对于编写程序来说尤为重要,也许我们喜欢偷工减料使用一些很短的变量名,如下标i,j等,或者temp临时变量,但到头来我们还是要为这些许的偷懒付出沉重的代价,往往在调试自己刚刚写好的代码时就已经不知道刚才自己的意图。更何况每个程序都不可能只是给自己阅读的。下面是我在阅读《code com... 阅读全文
posted @ 2015-04-13 21:56 Jolin123 阅读(263) 评论(0) 推荐(0) 编辑
摘要: eclipse_opengl_glut_settingopengl一般使用vs来开发,我个人还是偏向使用eclipse,这里是eclipse使用glut的配置首先下载glut包,包含下面5个文件:glut.dllglut.hglut.libglut32.dllglut32.lib 这里有个下载链接:... 阅读全文
posted @ 2015-03-29 09:15 Jolin123 阅读(956) 评论(0) 推荐(0) 编辑
摘要: writing_first_django_app_part6在django中,网页应用中的一些附加文件,如image, JS, CSS等,称为静态文件"static files"django.contrib.staticfiles: 从各个应用中收集静态文件,放到一个单独的位置,方便使用和管理Usi... 阅读全文
posted @ 2015-03-20 11:35 Jolin123 阅读(141) 评论(0) 推荐(0) 编辑
摘要: writing_first_django_app_part5Automated Testing解决问题一个很好的方法是首先描述这个问题,然后写出代码来实现它。但是很多人习惯先写好代码然后再进行调试找问题。也许在写代码之前先写好一些测试会是更好的选择。A little bug前面在我们的Questio... 阅读全文
posted @ 2015-03-20 10:21 Jolin123 阅读(210) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页