摘要: 1.建一个简单的php项目1)在目录C:\wamp\www中新建一个文件夹,命名为201510212)在文件夹20151021中新建一个index.php文件,内容为:2.修改hosts文件,设置IP与虚拟路径的对应关系在hosts文件末尾添加(hosts所在位置:C:\Windows\System... 阅读全文
posted @ 2015-10-21 19:15 LittlePenguin 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 在界面中,进入系统盘,然后进入“[x]:\Windows\System32\Drivers\etc”文件夹 阅读全文
posted @ 2015-10-21 19:03 LittlePenguin 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://www.cnblogs.com/2050/p/4198792.html前端构建工具gulpjs的使用介绍及技巧gulpjs是一个前端构建工具,与gruntjs相比,gulpjs无需写一大堆繁杂的配置参数,API也非常简单,学习起来很容易,而且gulpjs使用的是nodejs中s... 阅读全文
posted @ 2015-10-21 14:59 LittlePenguin 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #include #include #include char* str_contact(const char*,const char*);/** ** C语言实现字符串拼接 **/int main(void){ char *ch1 = "hui_"; char *ch2 = "_h... 阅读全文
posted @ 2015-10-16 16:27 LittlePenguin 阅读(3463) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(void){ if ( !access("C://Users/hui",0) ) puts("C://Users/hui EXISITS!"); else puts("C://Users/hui DOE... 阅读全文
posted @ 2015-10-16 15:16 LittlePenguin 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: #include #include #include int main(void) { int status; system("cls"); status = mkdir("book"); /*这是在程序所在当前文件夹下创建book*/ (!status) ? (printf("Directo... 阅读全文
posted @ 2015-10-16 10:46 LittlePenguin 阅读(1860) 评论(0) 推荐(0) 编辑
摘要: #include #include int main() { FILE *fp;if((fp=fopen("g:\\a.txt","wb"))==NULL){ printf("\nopen file error"); getchar(); exit(1); }fputs("34234",fp);fc... 阅读全文
posted @ 2015-10-16 10:44 LittlePenguin 阅读(558) 评论(0) 推荐(0) 编辑
摘要: 1.问题:C语言程序实现读写一个txt文件,txt文件中存储一个十进制数、每读一次该数值加一。2.实现:新建一个文件夹,在该文件夹中建一个outputFileName.txt文件、内容是:1,再在该文件夹中新建一个t.c文件、内容是下面的代码。3.代码:#include #include char ... 阅读全文
posted @ 2015-10-16 09:19 LittlePenguin 阅读(2151) 评论(0) 推荐(0) 编辑
摘要: style="overflow:auto;overflow-x: hidden" 阅读全文
posted @ 2015-10-15 18:21 LittlePenguin 阅读(575) 评论(0) 推荐(0) 编辑
摘要: 创建新仓库创建新文件夹,打开,然后执行git init以创建新的 git 仓库。检出仓库执行如下命令以创建一个本地仓库的克隆版本:git clone /path/to/repository如果是远端服务器上的仓库,你的命令会是这个样子:git clone username@host:/path/to... 阅读全文
posted @ 2015-10-14 16:40 LittlePenguin 阅读(114) 评论(0) 推荐(0) 编辑