上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: https://docs.python.org/2/library/index.html 阅读全文
posted @ 2016-08-05 22:10 JustRelax 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 一、定义class模拟 1 如果是新版Python用户(Python 3.4 with PEP 435): from enum import EnumAnimal = Enum('Animal', 'ant bee cat dog') 2 class Directions: up = 0 down 阅读全文
posted @ 2016-08-05 22:07 JustRelax 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 一、Python call C function: C: vi hello.c gcc -fPIC -shared -o libhello.so Python: vi test.py 二:Ctypes 结构体 1. 定义结构体: class My_ST( Structure ) _fields_ = 阅读全文
posted @ 2016-08-05 22:02 JustRelax 阅读(354) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python """PyQt4 port of the dialogs/findfiles example from Qt v4.x""" import sys,os from PySide import QtCore, QtGui from PySide.QtCore import * from PySide.QtGui import * #codeing=ut... 阅读全文
posted @ 2016-07-17 11:38 JustRelax 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 创建新用户: 2 为新用户添加密码: 3 删除用户: 4 查看系统信息: 5 常用apt 命令: 阅读全文
posted @ 2016-06-17 21:51 JustRelax 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 删除每行前N个字符,经常从网上拷贝代码,但是都带行号的,用这个不错。 2 sed 比对每一行数据,如附和样式,执行指定操作。删除D 3 替换S/打印P (取用附和样式的字符串) 4 awk的工作方式是:读取数据文件,将每一行数据实为一条记录。每笔记录以字段分隔符分成若干段。 5 打印ifconf 阅读全文
posted @ 2016-06-17 21:35 JustRelax 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 取消commit: 1.1 reset 命令详解: 2 创建分支 如果以master分支为基础建立test_branch分支为例: 3 分支切换 如果已经建立了test_branch远程分支,首次使用时可执行以下命令可以切换到本地wct_dongle分支工作: 以后就可以用git checkou 阅读全文
posted @ 2016-06-17 21:21 JustRelax 阅读(139) 评论(0) 推荐(0) 编辑
摘要: below describes u-boot do_bootm flow: do_bootm ->do_bootm_states ->bootm_start /bootm_find_os /bootm_find_other ->bootm_load_os ->boot_fn = bootm_os_g 阅读全文
posted @ 2016-06-04 10:58 JustRelax 阅读(1244) 评论(0) 推荐(0) 编辑
摘要: u-boot source code site: git clone git://git.denx.de/u-boot.gitgit clone https://git.toradex.com/u-boot-toradex.gitgit clone git://git.jdl.com/softwar 阅读全文
posted @ 2016-06-04 10:12 JustRelax 阅读(130) 评论(0) 推荐(0) 编辑
摘要: This test can used for padding data. For example: 32bytes align. 阅读全文
posted @ 2016-06-04 10:08 JustRelax 阅读(178) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页