码迷,mamicode.com
首页 >  
搜索关键字:style    ( 244891个结果
如何做到每天写代码?
你是否曾为业余项目没有进展而惆怅过?想要有完整两天时间(没有任何的放松机会)来编程也不现实,时间的零乱往往让人不知所措。还有一个重要的问题就是你上个星期写的代码,隔一个星期后再接着写,你还能记得多少?为此,可汗学院计算机科学学院院长暨jQuery创始人John Resig撰文分享了自己的心得和体会。...
分类:其他好文   时间:2014-07-22 23:11:34    阅读次数:235
远程调试
一、服务器端远程调试设置linux下远程调试配置:1、新建startup_debug.sh2、在startup_debug.sh里加入如下内容:引用export JPDA_ADDRESS=5566catalina.sh jpda start3、启动startup_debug.sh在windows下远...
分类:其他好文   时间:2014-07-22 23:11:33    阅读次数:439
SET Statements for SQLServer
SET SHOWPLAN_ALL { ON | OFF }It will not execute the TSQL statements.It cannot be specified inside a stored procedure,must be the only statements in a...
分类:数据库   时间:2014-07-22 23:11:32    阅读次数:646
[leetcode]Insertion Sort List @ Python
原题地址:http://oj.leetcode.com/problems/insertion-sort-list/题意:对链表进行插入排序。解题思路:首先来对插入排序有一个直观的认识,来自维基百科。 代码循环部分图示:代码:class Solution:# @p...
分类:编程语言   时间:2014-07-22 23:11:32    阅读次数:411
python函数式编程
python函数式编程
分类:编程语言   时间:2014-07-22 23:11:32    阅读次数:428
《Thinking in C++》读书笔记——Chapter 3: The C in C++ (2)
Chapter3: The C in C++ (2)Bitwise operators(1)The bitwise exclusive or, or xor (^) produces a one in the output bit if one or the other input bit is a...
分类:编程语言   时间:2014-07-22 23:11:16    阅读次数:618
[Arduino] 外部中断
原文:http://www.arduino.cn/thread-2421-1-1.html1.什么是中断?试想一下,你正在家里吃饭,这时传来了敲门声,虽然你巨饿,虽然面前全是山珍海味,但此时你不得不去开门,同时不得不放停下生命中最重要的事情——吃饭。打开门后,你发现只是一个查水表的,你检查了水表读数...
分类:其他好文   时间:2014-07-22 23:11:16    阅读次数:327
20140429
1、单链表循环体用while(p->next!=NULL)而不用while(p!=NULL)的原因 node *Find_MidNode(node *head){ if(head->next==NULL||head->next->next==NULL) return head->next; node...
分类:其他好文   时间:2014-07-22 23:11:15    阅读次数:374
win7下oracle的安装
1.参考地址1:http://www.cnblogs.com/libiao/archive/2008/08/24/1275000.html 2.参考地址2:http://www.server110.com/oracle/201310/2546.html 安装前先看看oracle的安装教程、例子。避免...
分类:数据库   时间:2014-07-22 23:11:15    阅读次数:446
Mysql Cookbook学习笔记第二章
1,使用python链接mysql # -*- coding: utf-8 -*-# connect.py --连接到MySQL服务器import sysimport MySQLdbtry: conn = MySQLdb.connect(db = "cookbook", host = "localh...
分类:数据库   时间:2014-07-22 23:11:15    阅读次数:518
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!