`
文章列表

linux svn 命令

linux下svn命令大全 1、将文件checkout到本地目录 svn checkout path(path是服务器上的目录) 例如:svn checkout svn://192.168.1.1/pro/domain 简写:svn co 2、往版本库中添加新的文件 svn add file 例如:svn add test.php(添加test.php) svn add *.php(添加当前目录下所有的php文件) 3、将改动的文件提交到版本库 svn commit -m “LogMessage“ [-N] [--no-unlock] PATH(如果选择了保持锁,就使用–no-unloc ...

ubuntu 版本名称

Ubuntu各版本的代号却固定是形容词加上动物名称,而且这2个字的英文字当中,第1个字母一定是一样的.     * Ubuntu 4.10 - Warty Warthog (多疣的疣猪)     * Ubuntu 5.04 - Hoary Hedgehog (白发的刺猬)     * Ubuntu 5.10 - Breezy Badger (活泼的獾)     * Ubuntu 6.06 - Dapper Drake (整洁的公鸭)     * Ubuntu 6.10 - Edgy Eft (尖利的小蜥蜴)     * Ubuntu 7.04 - Feisty Fawn (烦躁不安的小鹿)   ...

SQLite

1)创建数据库文件:      >SQLite3 d:\test.db 回车      就生成了一个test.db在d盘。      这样同时也SQLite3挂上了这个test.db   2)       用.help可以看看有什么命令      >.help 回车即可   3)可以在这里直接输入SQL语句创建表格 用;结束,然后回车就可以看到了   4)看看有创建了多少表      >.tables     5)看表结构      >.schema 表名  6)看看目前挂的数据库      >.database  7)如果要 ...
sudo aptitude purge ~ilinux-image-.*\(\!`uname -r`\)

android life cycle

There two Activity. 1.First press the icon of the app enter the first Activity,then click the button witch is use to jump to the second Activity in the first Activity; 2.Then press back , to the first one; 3.Then exit the first one. The log is: 07-07 09:06:23.560: VERBOSE/my_log(3046): onCreate in A ...
原文:http://esausilva.com/2010/05/13/setting-up-adbusb-drivers-for-android-devices-in-linux-ubuntu/ If you are like me and like developing in Linux, then you will find this guide useful. When I was setting up everything for my Android development, I ran into the problem that Linux was not recognizing ...
需要使用的工具:    1. dex2jar:http://code.google.com/p/dex2jar/downloads/list    2. JdGUI:http://java.decompiler.free.fr/?q=jdgui (反编译Jar包,查看Jar包的源代码的GUI工具)    3. AXMLPrinter2.jar(http://code.google.com/p/android4me/downloads/list) 步骤: 1.将APK包的扩展名改成ZIP(ubuntu环境),解压。 2.使用dex2jar工具:    1) 将 dex 文件放入 dex2j ...
http://blog.jayway.com/2009/04/22/working-with-sd-cards-in-the-android-emulator/ Working with SD cards in the Android emulator April 22nd, 2009 by Mårten Österberg — Android, Embedded Mårten Österberg Working with external storage in the Android emulator could be a little tricky and the documentat ...
http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/MobileHIG/Principles/Principles.html Human Interface Principles A great user interface follows human interface design principles that are based on the way people—users—think and work, not on the capabilities of the dev ...
sudo apt-get install amule 之后打开aMule做下基本设置. 点击设置.做下基本的设置. 昵称:自己随便取一个就好. 连接:下载:1024KB/S 上传:15kb/s 单用户上传:3/kb 标准用户TCP端口:自己随便写一个很大的数 扩展用户UDP端口:自己随便写一个很大的数 (防火墙是高级规则的请手动开放这两个端口) 单个文件最大源数(硬限制):500 连接限制(最大连接数):1000 网络 :ED2K (钩选) Kad(钩选) 通用即插即用(UPnP) 启用UPnP(钩选) UPnP的TCP端口:50000 服务器:点击列表,加入: http://www ...

全屏显示

//--全屏-->> this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去除标题栏 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);//去除任务栏 //<<--全屏--
language support set "scim-bridge" cause the eclipse work correctly. 在Ubuntu 10.04下安装Google拼音输入法,如下: A. 获取代码:(没有git的先安装git:sudo apt-get install git-core) $ git clone git://github.com/tchaikov/scim-googlepinyin.git $ cd scim-googlepinyin B. 编译前提: 上面给的链接里面有介绍怎么编译的,但少提了几个必需组件,这里列一下: * a ...
1.创建java类,里面包含native方法 public static native getInt(); 2.javac xxx.java 3.javah -jni xxx.java (生成xxx.h头文件) 4.根据生成到头文件写 xxx.c 文件 5.创建so共享库:   gcc -share -I/home/.../jdk/include -I .../include/linux xx.c -o xx.so 6.运行java -Djava.library.path=(so的路径) xxx.java
gcc -shared -I/home/yangjia/develop/jdk1.6.0_24/include -I /home/..../jdk.../include/linux  XXX.C -O XXX.SO
下载地址:http://www.eclipse.org/downloads/ 然后解压
Global site tag (gtag.js) - Google Analytics