
codingnow.cn
AlexZhou的程序世界周江海的个人技术博客,涉及c,c++,python,java,object-c,c#,android,wp7,ios,移动游戏开发,mysql,git
http://www.codingnow.cn/
周江海的个人技术博客,涉及c,c++,python,java,object-c,c#,android,wp7,ios,移动游戏开发,mysql,git
http://www.codingnow.cn/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Friday
LOAD TIME
14.3 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
23
SITE IP
61.139.126.216
LOAD TIME
14.344 sec
SCORE
6.2
AlexZhou的程序世界 | codingnow.cn Reviews
https://codingnow.cn
周江海的个人技术博客,涉及c,c++,python,java,object-c,c#,android,wp7,ios,移动游戏开发,mysql,git
android使用tcpdump抓包 | Alex's Blog
http://codingnow.cn/android/1633.html
Dump the traffic on a network)是Linux中强大的网络数据采集分析工具,不过需要拥有root权限才行,抓包之后需要一个图形化的网络封包分析软件看抓包数据,这里使用WireShark 前称Ethereal,是一个很强大的网络封包分析软件 ,所以需要的工具包括. 2 adb push ./tcpdump /data/local/tcpdump,或者打开应用宝文件管理,直接拖进去。 4 /data/local/tcpdump -p -vv -s 0 -w /sdcard/capture.pcap. Tcpdump的输出格式为 系统时间 来源主机.端口 目标主机.端口 数据包参数(协议,长度,数据信息). Ps 在命令符窗口使用adb命令如果出现 ADB server didn’t ACK,可以按照下面的方法解决。 符窗口,输入命令 netstat -aon findstr “5037”. 这样可以找到占用adb端口应用程序的PID,输入命令 tasklist findstr “7080”. 版权属于: Alex's Blog.
(转)年薪千万的工作感悟 | Alex's Blog
http://codingnow.cn/work/1537.html
我师傅王忠宁见到我就撂给我一本书 ORALCE ADMINISTRATOR GUIDE ,一寸半厚的英文书,愣是一周之内从头到尾看完并写了厚厚的读书笔记和一大堆不懂的问题,自此再也不怕厚厚的英文书。 我看完一本书后,在刚刚成为One Book Man时,问题单就来了,有一个重要的 引入程序有时候跑得出来,有时候跑不出来。 我立即打国际长途叫赵 赶紧去处理,过了几分钟,赵回电话绝望地说,他以最快速度赶到一号楼,进了电梯刚走到一半,喀嗒停电了,电梯卡在中间半个多小时,祸不单行,当时那种感觉真是 农夫内心如汤煮 啊。 记得当时正是刚谈女朋友,给她写了第一封也是唯一一封情书,成为太太后,她有一次跟我说,你那玩意儿叫啥呀,那能叫情书吗 通篇都在讲你如何如何工作的,象工作汇报一样,简直可以跟鲁迅写给许广平的 情书 相媲美,尽是革命理想,没有点花前月下。 我抱着死马当活马医的心态,又祭出了我的 二分法 体力活,测试了一封空邮件,能成功 测试了一封大邮件,失败 取其中间值,又失败 再取中间值,成功 再取前两次的中间值,成功一直到深夜,试了N次,终于总结出了规律 再一验证,只要在某个大小的地方,比它大的统统收不到。
Alex Zhou | Alex's Blog
http://codingnow.cn/author/alexzhou
在开发中可能会碰到这样的情况 有c/c 源文件,需要在c#中调用c/c 相关接口,但在c#中没法直接调用c/c 代码,我们可以先把c/c 代码编译成dll或so库文件,供c#代码调用。 1 生成dll文件 windows下使用 ,下面是一个gid和uid相互转换的demo,需要把这两个接口导. 在开发中可能会碰到这样的情况 有c/c 源文件,需要在c#中调用c/c 相关接口,但在c#中没法直接调用c/c 代码,我们可以先把c/c 代码编译成dll或so库文件,. 近段时间在使用cocos2d-x开发2D手游,技术方案使用的是cocos2d-x lua,因为游戏使用的是cocos2d-x 2.1.5版本,有些优化方案在最新版的cocos2d-x版本已经实现了。 近段时间在使用cocos2d-x开发2D手游,技术方案使用的是cocos2d-x lua,因为游戏使用的是cocos2d-x 2.1.5版本,有些优化方案在最新版的cocos2d-x版本已经实现. Table 是 lua 中唯一的一种数据结构,它可以用来描述原始的数组、符号表、集合、 记录、图、树等。 OpenGL ES 2.0渲染管线.
OpenGL ES 2.0渲染管线 | Alex's Blog
http://codingnow.cn/opengles/1504.html
OpenGL ES 2.0渲染管线. OpenGL ES 2.0渲染管线. Opengl es 2.0实现了可编程的图形管线,比起1.x的固定管线要复杂和灵活很多,由两部分规范组成 Opengl es 2.0 API规范和Opengl es着色语言规范。 下图是Opengl es 2.0渲染管线,阴影部分是opengl es 2.0的可编程阶段。 6和7行代码定义了顶点着色器的输入数据 Attributes,vec4表示包含了4个浮点数的向量,a position是顶点位置属性,a color是顶点颜色属性。 12-17行的main函数是顶点着色器和片元着色器的入口,第15行读取了顶点着色器输入属性中a color的值,并把它赋值给输出数据v color,第16行的gl Position 是内置的varying变量,不需要声明,顶点着色器必须把变换后的位置赋值给它。 光栅化阶段产生的颜色、深度、模板和屏幕坐标(Xw, Yw)成为流水线中pre-fragment阶段( FragmentShader之后. 下图是Opengl es 2.0逐片元操作的过程. 版权属于: Alex's Blog. 学习了Ope...
cocos2d-x 3.0制作2D横版格斗游戏-part2 | Alex's Blog
http://codingnow.cn/cocos2d-x/1324.html
要注意的是cocos2d-x 3.0监听屏幕触摸事件跟以前版本改动了很多,用了c 11新特性std: bind和std: function,参数也由之前的set改成了vector。 Auto operateLayer = OperateLayer: create(); scene- addChild(operateLayer, 1);. CC SYNTHESIZE(cocos2d: Point, m fVelocity, Velocity); std: function void(void) attack;. Std: function void(cocos2d: Point, float) walk; std: function void(void) stop;. CC SYNTHESIZE(Hero*, m pHero, Hero);. Size tileSize = m pTiledMap- getTileSize(); m fTileWidth = tileSize.width; m fTileHeight = tileSize.height; m pHero- attack =...近段时间在...
TOTAL PAGES IN THIS WEBSITE
19
java | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/bcyy/java
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. 2 十一月, 2016. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 31 十月, 2016. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 16 十月, 2016. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 10 十月, 2016. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 27 九月, 2016. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 7 七月, 2016. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 6 六月, 2016. 4 六月, 2016. 3 六月, 2016.
objective-c | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/bcyy/objective-c
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. 17 八月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. Cocos2d-x2.2.0 . Mac OS X 10.7.4 (24). Ruby on Rails (70). 浏览 1,448,200 次.
设计模式 | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/bcyy/sjms
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. 25 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 25 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 25 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 25 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 25 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 25 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 25 九月, 2015. 9 九月, 2015. 9 九月, 2015.
php | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/bcyy/php
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. CentOS6.6 安装mysqli和pdo mysql. 24 八月, 2015. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. Php项目框架搭建 三 实体篇 Page. 19 十月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. Php项目框架搭建 二 数据库篇 Result. 19 十月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. 17 十月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. Php项目框架搭建 一 数据库篇 BaseDAO. 17 十月, 2012. Php之ZendFramewor篇 十 ZF 数据库查询Zend Db Select使用方法. 16 十月, 2012.
Mac移动应用(游戏) | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/mac-2/mac
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. IOS 7 Xcode 5 免IDP证书 真机调试. 5 七月, 2014. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 26 九月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. Mac下Xcode 4.3.3 搭建Cocos2d-X(2.X)环境. 20 九月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. 30 八月, 2012. 对于刚加入iOS应用开发行列的开发者来说,终于经过艰苦的Co … Continue Reading →. 22 八月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. Cocos2d-x2.2.0 . Mac OS X 10.7.4 (24).
脚本语言 | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/bcyy/jbyy
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. 6 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 6 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 6 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 6 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 6 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 6 九月, 2015. 欢迎热爱编程的朋友们参与到cocos2d-x编程中,为了给大 … Continue Reading →. 6 九月, 2015. 9 十一月, 2013. Ruby on Rails (70).
Ruby on Rails | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/bcyy/ror
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. 1 八月, 2012. Http:/ www.letrails.cn/archive … Continue Reading →. 1 八月, 2012. Rspec代码 1 对象.should( not) be … Continue Reading →. 1 八月, 2012. Http:/ stackoverflow.com/quest … Continue Reading →. 1 八月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. 1 八月, 2012. 在text field输入中文后,若多于一个,文本框中的值只 … Continue Reading →. 1 八月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. 1 八月, 2012. 1 八月, 2012. 1 八月, 2012. 1 八月, 2012.
Linux专区 | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/linux
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. CentOS6.6 安装mysqli和pdo mysql. 24 八月, 2015. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. CentOS 6.6 Git服务器搭建. 17 六月, 2015. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. 1 八月, 2012. Mysql常用错误代码和消息[官方手册] 错误 1045 ( … Continue Reading →. 1 八月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. 1 八月, 2012. 本文为firedragonpzy原创,转载务必在明显处注明 … Continue Reading →. 1 八月, 2012. 1 八月, 2012. 1 八月, 2012. 1 八月, 2012. 1 八月, 2012.
汇编 | Software MyZone
http://www.firedragonpzy.com.cn/index.php/archives/category/bcyy/hb
欢迎光临Software MyZone,有问题可留言或到站点论坛发帖,争取第一时间帮忙解决 站点论坛 火龙论坛. Mac OS X 10.7.4. 27 七月, 2012. Ebp和esp是32位的SP,BP esp是堆栈指针 ebp … Continue Reading →. Cocos2d-x2.2.0 . Mac OS X 10.7.4 (24). Ruby on Rails (70). 浏览 1,448,200 次.
TOTAL LINKS TO THIS WEBSITE
23
Mirochiu星球的構築法則
2月 09, 2018. 2月 09, 2018. 2月 09, 2018. 2月 09, 2018. Git config - global apply.whitespace nowarn. Git config branch.master.mergeoptions - no-ff. Git config - unset branch.master.mergeoptions. 若主要是在ubuntu中開發, 而偶爾會在windows上開發,建議windows部份設定忽略檔案的屬性改變,以及讓git自動轉換換行字元(CRLF- LF). Git config - global core.fileMode false. In Windows/Mac, push/pull convert the line feed. Git config - global core.autocrlf true. In Ubuntu/Linux,convert CRLF to LF while push. Git config - global core.autocrlf input. 2月 09, 2018. 160; &...
Codingnote.net
Coding Notebook
I write a lot of code. I am constantly searching the web for solutions to tricky issues. This blog serves as my notebook to capture the things I've invested my time in investigating. Hopefully this helps others who need to deal with similar issues. Wednesday, October 21, 2015. How to move/rename a file in Windows kernel. Posted by John Fox. Thursday, August 28, 2014. Execute a command and capture output without showing a window. Static std: string exec(char *cmd) { FILE* pipe = popen(cmd, "r"); if (!
Coding Notes | Notes on Software, and Software Development.
Notes on Software, and Software Development. Welcome, I have been working hard to update my personal website ( www.alephcipher.com. Recently and to move this blog over there. So the new location for coding notes is: codingnotes.alephcipher.com. If you have bookmarks or rss feeds please update them to that location as I will no longer be posting to this location. Also I have moved all of my previous content from this location to the new location so you wont miss anything. Comments : Leave a Comment. 8220;...
CodingNovels | A Young Developper who wants to progress - For I Know I Need to Practice, For Sure I Will Made Mistakes BUT I Will PERSEVERE and Keep learning... So feel free to help me by your comments.
For I Know I Need to Practice, For Sure I Will Made Mistakes BUT I Will PERSEVERE and Keep learning… So feel free to help me by your comments. Codingnovels while (true) { learn(); practice(); madeMistakes(); practice(); }. 4 sept, 2014. FREE ANDROID GUI DESIGN EBOOKS. IT’S BACK TO SCHOOL Here some free resources about mobile design and android development. Mobile UI Design Patterns 2014 Deep study on famous mobile Apps with illustrated examples, case studies and pros/cons : link.. 4 sept, 2014. In your d...
AlexZhou的程序世界
我们在Android平台写c/c 程序的时候需要用到Android.mk(Makefile),一般用来编译c/c 源码、引用第三方头文件和库,生成程序所需的so文件。 下面是一个cocos2d-x游戏的Android.mk(删除了一些重复的东西),一般默认在jni目录下 #1 LOCAL PATH := $(call my-dir) . 我们在Android平台写c/c 程序的时候需要用到Android.mk(Makefile),一般用来编译c/c 源码、引用第三方头文件和库,生成程序所需的so文件。 Table 是 lua 中唯一的一种数据结构,它可以用来描述原始的数组、符号表、集合、 记录、图、树等。 Table 是 lua 中唯一的一种数据结构,它可以用来描述原始的数组、符号表、集合、 记录、. 首先完成lua代码,创建sum.lua function add(x, y) return x y; end 为了在c中调用lua中的add函数,首先需要把函数压入堆栈,然后把函数的参数压入堆栈,然后执行函数,最后从栈中获. 1 打开vs 我这里是vs2012 ,创建一个空的win32控. 1 下载AMD...
云风工作室
Coding and stuff
Saturday, February 19, 2011. As an always curious programmer, I want to learn interesting programming languages and new paradigms. Haskell. Is one of the languages I think would be interesting to learn. It is a purely funtional. Language, giving me the opportunity to learn a new paradigm - functional programming. So, lets start with the traditional first program in a new language - "Hello, World! Main=putStrLn "Hello, World! To compile this code (stored in the file hello.hs. Ghc - make hello.hs. That is ...
Coding N Tech | All about that bass
All about that bass. Git – By example. 1 de March de 2015. 3 de March de 2015. So, here we go again! Our purpose here is to present and make a brief walk through this great VCS, Git. Initially we introduce the concept of a Version Control System and justify it’s use. Then, we talk a little about the most common Git workflow. Apt-get install git,. Pacman -S git, for Arch, and so on). So, before continue, take a look at this page. Or some equivalent for your distribution. Continue reading →. Git – By...