摘要: 时间:2016/05/08 系统:ubuntu 15.10 原本因为开始学习网络编程,需要一个Clinet作为直观的调试工具,并且想在最初的时候就把数据封包一起做了,所以就打算自己写一个。GUI编程的话,我就会那么一点Qt,所以就准备用Qt做一个自己的TCpClinetTool。原本学习Qt是一年前 阅读全文
posted @ 2016-06-14 18:27 叶小鹏 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1.下载 tomcat 软件包 2.在webapps/Root 下放置需要下载的文件 3.运行 tomcat / bin目录 下的startup.sh 4.访问 ip+8080端口 阅读全文
posted @ 2016-06-14 18:24 叶小鹏 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1.安装 svn 工具 $sudo apt-get install subversion 2. 创建工程文件夹,用于存放工程 $mkdir ~/localsvn $mkdir ~/localsvn/workplaces 3.创建 svn 仓库 $svnadmin create ~/localsvn/ 阅读全文
posted @ 2016-06-14 18:21 叶小鹏 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 在 代码完成中,输入如下内容 阅读全文
posted @ 2016-06-14 18:19 叶小鹏 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 转自于:http://www.cnblogs.com/arci/archive/2011/01/23/1942646.html Eclipse颜色设置 Eclipse颜色设置 参考配色方案: http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/ ht 阅读全文
posted @ 2016-06-14 18:17 叶小鹏 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 我是 openSUSE 中文维基唯一的非官方维护者,openSUSE 简体中文翻译团队召集人,linuxsir SuSE 版块的版主,openSUSE 官方论坛 http://forums.opensuse.org 的唯一非官方版主,openSUSE 开放式编译服务中文软件源维护者。PS:建议大家也 阅读全文
posted @ 2016-06-14 18:13 叶小鹏 阅读(675) 评论(0) 推荐(0) 编辑
摘要: 用于无法在线调试情况下的打印输出辅助(如单片机 ESP8266等调试) 其中,os_printf() 为 ESP8266的打印函数 使用时,DE_OUT("Hello World"); 输出信息: 换行 File:文件名 Line:行号 Hello World 阅读全文
posted @ 2016-06-14 18:06 叶小鹏 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1 #ifndef C_TYPE_H 2 #define C_TYPE_H 3 #include 4 5 6 7 8 typedef signed char int8_t; 9 typedef short int int16_t; 10 typedef int int32_t; 11 12 #define INT8_T in... 阅读全文
posted @ 2016-06-14 18:00 叶小鹏 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 系统环境:ubuntu 16.04 TLS 64BIT 编辑器: Eclipse CDT 版本 编译器:xtensa-lx106-elf 交叉编译工具链 下载工具:esptool.py pyserial 一、软件准备 1.eclipse:download.eclipse.org 下载 CPP版本 2 阅读全文
posted @ 2016-06-13 02:00 叶小鹏 阅读(3669) 评论(0) 推荐(0) 编辑
摘要: 使用字符串操作函数,从一个字符串中读取IP和PORT 1 #include 2 #include 3 #include 4 #define DEBUG 5 #ifdef DEBUG 6 #define DE_OUT printf 7 #else 8 #define DE_OU... 阅读全文
posted @ 2015-11-13 00:40 叶小鹏 阅读(461) 评论(0) 推荐(0) 编辑