2016年5月16日

开发效率进阶

摘要: 巨匠以他的工具而出名,鲁班因锯而高效,庖丁十九年一刀。 好的工具让人提高效率,心情愉悦,工作的时候妙趣横生。某现在把自己积攒的一些微薄的经验分享之,希望大家能补充或指正。 1 chrome(或者其它有书签漫游功能的浏览器) 个人比较中意chorme,比起其它的浏览器稳定高效。还在于书签(即收藏夹)可 阅读全文

posted @ 2016-05-16 16:47 jogger 阅读(970) 评论(6) 推荐(6) 编辑

2016年4月22日

windows编译 obs-studio

摘要: github下载源码 https://github.com/jp9000/obs-studio 还需要一个开发包 http://code.fosshub.com/OBS/download/dependencies.zip 环境:windows 7 64位系统 工具:cmake 2.8.12,vs20 阅读全文

posted @ 2016-04-22 11:26 jogger 阅读(2686) 评论(0) 推荐(0) 编辑

2016年3月2日

python 控制vbox虚拟机

摘要: (本机环境:win7;python 2.7.9; vbox 4.3.12) 目标: 完成官网(https://pypi.python.org/pypi/pyvbox)上的demo: > python In [1]: import virtualbox In [2]: vbox = virtualbo 阅读全文

posted @ 2016-03-02 18:16 jogger 阅读(4023) 评论(0) 推荐(0) 编辑

2014年5月22日

pyqt实践——从裸机到打包安装

摘要: 1 安装python安装python-2.7.6.msi默认在c盘设置环境变量,path后追加c:/python27。可以在命令行直接认识命令python2 安装pyqtPyQt4-4.10-gpl-Py2.7-Qt4.8.4-x32.exe,会自动寻找python路径,并装在python安装目录下... 阅读全文

posted @ 2014-05-22 17:35 jogger 阅读(540) 评论(0) 推荐(0) 编辑

2014年1月17日

测试darwin calendar 服务器

摘要: cd CalDAVTesterREADME.txt中说的明白——QUICKSTARTEdit the serverinfo.xml file to run the test against your server setup.Run 'testcaldav.py --all' on the command line to run the tests. The appwill print its progress through the tests.看了一下serverinfo.xml已经配置好,为本地的服务器。直接testcaldav.py --all问题出现了,python说 阅读全文

posted @ 2014-01-17 11:51 jogger 阅读(300) 评论(0) 推荐(0) 编辑

2014年1月16日

centos 搭建 darwin calendar 服务器

摘要: 方法一(官网方法):useradd caluser ----为日历服务器建立一个新用户,方便管理passwd caluser -----新用户更改密码su calusermkdir ~/CalendarServer ---- 创建一个专门存放安装包的文件夹cd ~/CalendarServersvn co http://svn.calendarserver.org/repository/calendarserver/CalendarServer/trunk/ CalendarServer-------下载源代码./run -s # 什么也没发生。。。./run # 什么也没发生感觉可能是pyt 阅读全文

posted @ 2014-01-16 16:31 jogger 阅读(1094) 评论(0) 推荐(1) 编辑

2013年11月17日

配置oschina for pc 开发环境

摘要: oschina for pc 是一款用python + pyqt + html + css +js开发的桌面程序,感觉十分强大.python开发快捷, 网页技术绚丽,正是桌面程序需要的.感谢铂金小鸟,感谢开源精神软件主页http://git.oschina.net/fantsme/oschina-for-pc首先获取源码和依赖库python2.7.3 (顺便说一句,python2.7是比较稳定和成熟的一个版本, 成熟是指依赖库都比较丰富而且完善. 之前的版本库少,之后的3大版语法又有大改变)xmltodict-0.6.0.tar.gzhttplib2-0.8.zipPyQt4-4.10.3-g 阅读全文

posted @ 2013-11-17 13:49 jogger 阅读(337) 评论(0) 推荐(0) 编辑

2013年3月20日

加快工作效率,再快点

摘要: (继欲善其事,先利其器之后加强篇)君子生非异也,善假于物也 ——《劝学》1 应用程序导航工具:launchy (下载地址)这个软件帮助我们快速打开应用程序,有助于保持整洁的桌面和快速启动栏(尤其是有洁癖的人)。设置中添加上搜索路径,launchy就会根据所有的路径自动建立索引。当敲入alt+space时,会弹出launchy主程序。输入程序首字母,比如xshell的xs,即可立即执行xshelllaunchy还支持一些其它自定义类型的文件,比如MP3 py ,设置是文件夹路径,官网有介绍。2 手工打制 命令行快速路径定位工具:cd.bat这个非常简单,在常用的文件夹下(比如经常执行py文件,或 阅读全文

posted @ 2013-03-20 12:03 jogger 阅读(499) 评论(0) 推荐(0) 编辑

2013年3月1日

sqlite3.exe 使用

摘要: 1 下载sqlite3.exe2 命令行cmd,进入到sqlite3.exe目录3 >sqlite3.exe database.db 来打开sqlite数据库。4 基本语法:>.help 查找帮助输出如下:sqlite> .help.backup ?DB? FILE Backup DB (default "main") to FILE.bail ON|OFF Stop after hitting an error. Default OFF.databases List names and files of attached databa... 阅读全文

posted @ 2013-03-01 14:53 jogger 阅读(4048) 评论(0) 推荐(0) 编辑

2013年2月1日

linux signal 信号表

摘要: Signal Value Action Comment ------------------------------------------------------------------------- SIGHUP 1 Term Hangup detected on controlling terminal or death of controlling process SIGINT 2 Term Interrupt f... 阅读全文

posted @ 2013-02-01 11:18 jogger 阅读(698) 评论(0) 推荐(0) 编辑

导航