各种艰辛就不一一表过了,反正最后无奈的有捡起了minicom。因为使用的brew,所以安装相对比较容易:brew install minicom和Linux下一样的操作,先是查看硬件设备名称:ls /dev/*tty*找到其中的tty.usbserial,然后转回来修改minicom配置minico...
分类:
其他好文 时间:
2014-07-22 22:54:34
阅读次数:
1896
1.文件结构:2.先创建一个xib文件,删除原有的view,添加一个TableViewCell控件。3.ModelTableViewController.m文件 1 #import "ModelTableViewController.h" 2 #import "Cell.h" 3 4 5 @in.....
分类:
其他好文 时间:
2014-07-19 19:31:48
阅读次数:
169
当Linux 进行查找时,对某些目录的访问可能没有权限而无法进行访问,打印出很多错误消息
1、root目录文件内容
-bash-3.2$ ls
anaconda-ks.cfg bea Desktop lib wls1036_generic.jar
2、查找.log结尾的文件,
-bash-3.2$ find . -name "*.log"
find: ./.gconfd...
分类:
系统相关 时间:
2014-07-16 17:27:01
阅读次数:
433
转自:http://blog.chinaunix.net/uid-26000296-id-3575475.html 1 function ergodic(){ 2 for file in `ls $1` 3 do 4 if [ -d $1"/"$file ] 5 then 6...
分类:
其他好文 时间:
2014-07-16 16:47:36
阅读次数:
206
PB中实现dropdownlistbox和数据库绑定
stringls_temp
declarereaddatedynamiccursorforsqlsa;
stringls_sql="selectROLENAMEfromT_ROLE"
preparesqlsafrom:ls_sql;
opendynamicreaddate;
dowhilesqlca.sqlcode=0
fetchreaddateinto:ls_temp;
ifsqlca.sqlcode=0then
tab_1.tabpa..
分类:
数据库 时间:
2014-07-16 16:40:56
阅读次数:
298
1.在Ubuntu14.04 LTS版本中,已经自行安装了python,可以在Terminal(CTRL+ALT+T)中输入:ls /usr/bin | grep python 进行查看。如果想运行python2.7的话,直接在终端输入:python即可。如果想运行python3.4的话,直接在终端...
分类:
编程语言 时间:
2014-07-16 15:50:35
阅读次数:
226
文件结构:一:先定义cell,这里是Cell类,继承自UICollectionViewCell,用xib画出cellCollectionCell.h1 #import 2 3 @interface CollectionCell : UICollectionViewCell4 5 @endCollec...
分类:
其他好文 时间:
2014-07-16 15:49:37
阅读次数:
355
#!/bin/bashimage_list=$(ls *.png)for imag in ${image_list}do if test -f $imag then xxd -i ${imag} >> test.h fidone参考:http://www.cnblo...
分类:
编程语言 时间:
2014-07-16 15:29:12
阅读次数:
260
-genkey 在用户主目录中创建一个默认文件".keystore",还会产生一个mykey的别名,mykey中包含用户的公钥、私钥和证书-alias 产生别名-keystore 指定密钥库的名称(产生的各类信息将不在.keystore文件中-keyalg 指定密钥的算法-validity 指定创建...
分类:
其他好文 时间:
2014-07-16 14:50:31
阅读次数:
239
APK文件结构
APK文件实际是一个zip压缩包,可以通过解压缩工具解开。
下面是用解压缩工具解开的APK包的结构:
|-- AndroidManifest.xml
|-- META-INF
| |-- CERT.RSA
| |-- CERT.SF
| `-- MANIFEST.MF
|-- classes.dex
|-- res
| |-- dr...
分类:
其他好文 时间:
2014-07-16 12:50:17
阅读次数:
234