2016年11月3日

Linux使用技巧

摘要: 设置桌面分辨率 由于驱动问题,有些Linux系统启动后桌面默认不支持高分辨率,可以通过以下方法配置。 设置网络IP地址 修改/etc/sysconfig/network-scripts/eth0-cfg services network restart 重启网络 阅读全文

posted @ 2016-11-03 17:18 牧之巴巴 阅读(109) 评论(0) 推荐(0) 编辑

2016年9月28日

Python界面库 Tkinter

摘要: Tkinter TopLevel Window Controls Layouts: Advance: 阅读全文

posted @ 2016-09-28 23:31 牧之巴巴 阅读(330) 评论(0) 推荐(0) 编辑

2015年7月14日

Python学习资源

摘要: Module Of The Week http://pymotw.com/2/ 通过小例子讲解python模块的用法。 Python tkDocs http://www.tkdocs.com 详细的Tkinter文档。 阅读全文

posted @ 2015-07-14 11:16 牧之巴巴 阅读(136) 评论(0) 推荐(0) 编辑

2014年11月27日

Python中使用ctypes调用Windows API

摘要: # -*- coding: cp936 -*- import ctypes import ctypes.wintypes #print(dir(ctypes)) #print(dir(ctypes.wintypes)) user32 = ctypes.WinDLL("user32.dll") FindWindowA = user32.FindWindowA GetWindowTextA =... 阅读全文

posted @ 2014-11-27 00:31 牧之巴巴 阅读(1522) 评论(0) 推荐(0) 编辑

2014年11月24日

Xlib 查找窗口

摘要: 1 /* 2 xraise 0.2 - A small tool to send a X application 3 to the foreground 4 Copyright 2010 - socol 5 Copyrig... 阅读全文

posted @ 2014-11-24 22:36 牧之巴巴 阅读(972) 评论(0) 推荐(0) 编辑

2014年7月13日

lua示例 - 访问数据库

摘要: -- 加载动态库lib = assert(package.loadlib("luasql/mysql.dll","luaopen_luasql_mysql"))lib()-- 创建环境对象env = assert (luasql.mysql())-- 连接数据库con = assert (env:c... 阅读全文

posted @ 2014-07-13 13:45 牧之巴巴 阅读(355) 评论(0) 推荐(0) 编辑

sql - 批量插入数据

摘要: 直接构造insert into t (c1, c2, c3) values (1, 1, 1), (2, 2, 2)使用UNIONinsert into t (c1, c2, c3) (select a1, a2, a3) union all (select b1, b2, b3)利用查询结果ins... 阅读全文

posted @ 2014-07-13 13:39 牧之巴巴 阅读(151) 评论(0) 推荐(0) 编辑

2014年6月26日

随笔

摘要: 三十而立,生有涯,知无涯。 阅读全文

posted @ 2014-06-26 20:48 牧之巴巴 阅读(79) 评论(0) 推荐(0) 编辑

导航