摘要:
ackage test;import java.awt.*;import java.awt.event.*;import java.awt.geom.*;import java.util.*;import javax.swing.*;/**Shows an aninated bouncing ball.*/public class Bounce{public static void main(S... 阅读全文
摘要:
1、将其他目录下的.android复制到C:\Documents and Settings\Administrator路径下.(具体的用户名看自己的)然后进入.android\avd打开avd.ini文件.将里面的路径设成此路径,不过这样的解决方案有一个明显的缺点,那就是如果又新 建立AVD,又得重新复制。感觉很麻烦~~~ * 2. 打开系统属性-->环境变量—>在“系统变量”那一个Group... 阅读全文
摘要:
change Linux Edit tool Gedit into TextMate like software.1. install the Gedit plugins cd ~ sudo apt-get install gedit-plugins2. sudo apt-get install git-core3. git clone git://github.com/gmate/gmat... 阅读全文
摘要:
The simplest sort algorithm is not Bubble Sort..., it is not Insertion Sort..., it's Gnome Sort!Gnome Sort is based on the technique used by the standard Dutch Garden Gnome (Du.: tuinkabouter). Here ... 阅读全文
摘要:
仔细分析小问题可以带来巨大的实际好处。定义恰当的问题,需求分析:问题的输入--问题的输出---约束条件位图数据结构可以很方便的处理索引问题,有限域中的稠集。多通道算法,多个输入通道或者多个输出时间和空间的权衡,二者可以转换效率,用时间换取空间或用空间换取时间简单的设计:设计师的至高境界不是他能不能再往作品中添加什么东西,而是他不能从中取走什么东西。顺序查找带有冲突解决的开放式散列:商店根据用户的... 阅读全文
摘要:
《达·芬奇的广博与创新》 晓玲 编著 北京:东方出版社,2008,11达·芬奇(1452-1519)是一位思想深邃、学识渊博、多才多艺的艺术大师、科学巨匠、文艺理论家、哲学家、诗人、音乐家、工程师、解剖学实习生和发明家。由于是私生子,从小就被父亲皮耶罗抛弃与母亲一起生活,他不愿称她为母亲。后来父亲把他带到佛罗伦萨14岁跟随维罗基奥学习绘画。后来在佛罗伦萨不顺利,给米兰大公路德维克写了自荐信,开... 阅读全文
摘要:
使用winsock来尝试下载html文件,但对于图片二进制文件接收还有问题 很不稳定#include #include #include #include #pragma comment(lib,"ws2_32.lib")#define USERAGENT "Mozilla/5.0 "#define BUFFSIZE (6000)SOCKET HTTPConnectToServer(char*... 阅读全文
摘要:
【http报文格式】:【用牡丹园BBS做测试】:首先查看BBS源代码:(右键分别在BBS不同的两个区域点击并查看源代码,得到如下结果)【找到HTML源码中相应的变量和表格提交的地址并用程序实现】:【成功的运行】:(当然经过了N次测试,同时还感谢Inkoo的大力支持)【程序源代码】:/***************code.h********************/#ifndef _CODE_H... 阅读全文
摘要:
I spent a day in reading the chrome extension development. Its main point is aboout manifest.json and backgroud.html and popup.html.http://code.google.com/chrome/extensions/官方文档一个扩展的主要内容.crx本质上是一个zi... 阅读全文
摘要:
C++语言: Codee#1208001 #include 02 #include 03 using namespace std;04 05 class Pet {06 string pname;07 public:08 Pet(const string& name):pname(name){}09 virtual string name() const { re... 阅读全文