会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
自由出土文物
春困秋乏冬无力,夏日炎炎正好眠
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
33
34
35
36
37
38
39
40
41
···
45
下一页
2013年11月19日
debian之apt源
摘要: 美国的 中科大的源 这个是源生成器的页面地址:http://debgen.simplylinux.ch/ 官方cd列表 具体可以参考
阅读全文
posted @ 2013-11-19 16:09 自由出土文物
阅读(763)
评论(0)
推荐(0)
2013年11月16日
golang之void*类型可变数组例子
摘要: package mainimport ( "fmt")type TestStruct struct { aa string name string}type Object interface{}func main() { array := []Object{} a := TestStruct{} a.aa = "aaaa" a.name = "name" array = append(array, 1) array = append(array, a) for index, value := range array { ...
阅读全文
posted @ 2013-11-16 16:35 自由出土文物
阅读(1424)
评论(0)
推荐(0)
2013年11月6日
debian的pdf阅读器
摘要: www.foxitsoftware.cn下载deb包或者sudo apt-get install evince
阅读全文
posted @ 2013-11-06 19:15 自由出土文物
阅读(441)
评论(0)
推荐(0)
2013年11月4日
python之BeautifulSoup4的例子
摘要: 仅作演示用from bs4 import BeautifulSoupimport urllib.requestwebfile = urllib.request.urlopen('http://www.baidu.com')webcontext = webfile.read().decode("UTF...
阅读全文
posted @ 2013-11-04 07:53 自由出土文物
阅读(1072)
评论(0)
推荐(0)
2013年10月30日
Android下通过root实现对system_server中binder的ioctl调用拦截
摘要: http://bbs.pediy.com/showthread.php?t=157419
阅读全文
posted @ 2013-10-30 22:29 自由出土文物
阅读(178)
评论(0)
推荐(0)
2013年10月23日
golang显示本机IP代码
摘要: 1 package main 2 3 import ( 4 "fmt" 5 "net" 6 ) 7 8 func main() { 9 addrs, err := net.InterfaceAddrs()10 if err != nil {11 panic(err)12 }13 for _, addr := range addrs {14 fmt.Println(addr.String())15 }16 }
阅读全文
posted @ 2013-10-23 15:50 自由出土文物
阅读(354)
评论(0)
推荐(0)
2013年10月7日
mac的framework的路径
摘要: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/System/Library/
阅读全文
posted @ 2013-10-07 10:22 自由出土文物
阅读(151)
评论(0)
推荐(0)
visual leak detector用法
摘要: 百度vld和windbg安装配置symbol路径配置环境变量_NT_SYMBOL_PATHSRV*E:\symbols*http://msdl.microsoft.com/download/symbols在测试工程里面添加include目录,%VLD_PATH%\include添加lib目录,%VLD_PATH%\lib\Win32工程添加#include "vld.h"即可
阅读全文
posted @ 2013-10-07 10:10 自由出土文物
阅读(243)
评论(0)
推荐(0)
2013年10月3日
NSWindow添加NSViewController
摘要: 大概这样,笔记一下,防止忘记1 - (void)applicationDidFinishLaunching:(NSNotification *)aNotification2 {3 MyViewController* ctller = [[MyViewController alloc] initWithNibName:@"MyViewController" bundle:nil];4 [self.window setContentView:ctller.view];5 [ctller release];6 }
阅读全文
posted @ 2013-10-03 12:09 自由出土文物
阅读(1506)
评论(0)
推荐(0)
2013年9月21日
开启postgresql的远程权限
摘要: cd /etc/postxxxx/版本号/mainvim postgresql.conf修改#listen_addresses ='localhost'为listen_addresses ='*'vim pg_hba.conf添加一行host all all 0.0.0.0/0 ...
阅读全文
posted @ 2013-09-21 15:37 自由出土文物
阅读(238)
评论(0)
推荐(0)
上一页
1
···
33
34
35
36
37
38
39
40
41
···
45
下一页
公告