码迷,mamicode.com
首页 >  
搜索关键字:git init    ( 57340个结果
有这样的事?
#include #include #include #include #include #include int init_win_socket(){ WSADATA wsaData; if(WSAStartup(MAKEWORD(2,2) , &wsaData) != 0) { return -...
分类:其他好文   时间:2014-05-18 18:57:26    阅读次数:245
【XCode 5】快速注释插件,一劳永逸
推荐你安装 VVDocumenter-Xcode 这个插件,它会根据你的代码自动提取变量生成 JavaDoc 型 的注释格式,你需要做的只是填写注释内容而已: 上传个效果图,编译插件后重启xcode, Window->VVDocumenter自己定制风格 下载链接内有操作说明 GIT下载地址:VVDocumenter-Xcode 或VVDocument-Xcode...
分类:其他好文   时间:2014-05-18 15:06:08    阅读次数:219
【cocos2dx游戏开发】之 坐标系(二) convertToNodeSpace和convertToWorldSpace
convertToNodeSpace和convertToWorldSpace这两个的使用方法 我们加三个sprite,r0,r1,r2, r0的父节点是layer, 父节点下坐标(0,0,100,100) r1的父节点是r0,父节点下坐标(0,0,100,100) r2的父节点是r1,父节点下坐标(0,0,100,20) bool HelloWorld::init() {...
分类:其他好文   时间:2014-05-18 13:53:13    阅读次数:331
JQuery -> 超级简单的下拉菜单
用jquery实现的一个超级简单的下拉菜单。 效果图 初始效果 鼠标悬浮效果 代码 nav a { text-decoration: none; } nav > ul > li { float: left; text-align: center; padding: 0 0.5em; } nav li ul.sub-menu { ...
分类:Web程序   时间:2014-05-18 10:48:11    阅读次数:522
【Cocosd2d-x CCMenu菜单之二】
程序代码: bool HelloWorld::init() { ////////////////////////////// // 1. super init first if ( !CCLayer::init() ) { return false; } CCSize visibleSize = CCDirector::s...
分类:其他好文   时间:2014-05-18 10:10:11    阅读次数:299
python中创建和遍历二叉树
python创建二叉树,源代码如下: #!/usr/bin/python class node(): def __init__(self,k=None,l=None,r=None): self.key=k; self.left=l; self.right=r; def create(root): a=raw_input('enter a key:'); if a is '#...
分类:编程语言   时间:2014-05-18 09:27:13    阅读次数:384
github basic usage
GitHub and Git basic command tips...
分类:其他好文   时间:2014-05-18 09:03:35    阅读次数:255
LeetCode: Swap Nodes in Pairs [023]
【题目】 Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. You may not modify the values in the list, only nodes it...
分类:其他好文   时间:2014-05-18 08:37:57    阅读次数:370
LinearLayout详解二:从其父类View说起
如果大家不知道怎么下载View.class的源代码,或者说懒得去下载(因为源代码确实比较大,大概有10G)的话,教大家几个取巧的办法: 1.直接在google中输入“android view.java”即可。这种方法成功率非常高,一般android的比较重要的类都能搜到。 2.给大家提供一个人家用于放源码的的git:git@gitorious.org:rowboat/frameworks-base.git 大家自己去clone一下。(什么!你Y的居然连git都不会用!服了,好吧,请继续往下看)。 3登录到这...
分类:其他好文   时间:2014-05-18 08:32:48    阅读次数:751
JSP配置
JSP的本质是Servlet,那么Servlet是可以进行web.xml配置,那么理论上JSP也可以进行基本的配置。修改web.xml title czbk myjsp /init.jsp ip 192.168.10.1 1 myjsp /haha.html 编写代码获取配置信息 t...
分类:Web程序   时间:2014-05-18 00:33:50    阅读次数:367
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!