从stackoverflow上找到的,已经安装成功,借此留存下
Here's how I got Auctex to work with pure Emacs:
Install the MacTeX distribution package
Download OS X emacs, place in /Applications
Download the Auctex tarba...
分类:
系统相关 时间:
2014-12-03 23:31:35
阅读次数:
531
As i need to read something from a csv file using python. I got something and put it here.Module: csvimport csvFILE_FULL_PATH = 'D:\\Work\\script\\My ...
分类:
编程语言 时间:
2014-11-27 12:39:12
阅读次数:
173
I got a question from one of our partner, and they got a crash while calling FBPlayerControl::GotoStart() from within a device real-time engine thread...
分类:
其他好文 时间:
2014-11-20 11:40:09
阅读次数:
333
I really like the new PopupMenu we got in 3.0, but I just can't display any icons next to the menu items in it. I'm inflating the menu from the .xml b...
分类:
其他好文 时间:
2014-11-17 12:10:47
阅读次数:
407
Socket
小型服务器:
#!/usr/bin/env python
import socket
s = socket.socket()
host = socket.gethostname()
port = 1234
s.bind((host,port))
s.listen(5)
while True:
c,addr = s.accept()
print 'Got connection ...
分类:
编程语言 时间:
2014-11-15 18:56:56
阅读次数:
174
Sale
Crawling in process...
Crawling failed
Time Limit:2000MS
Memory Limit:262144KB
64bit IO Format:%I64d & %I64u
Submit
Status
Description
Once Bob got to a sale of old ...
分类:
其他好文 时间:
2014-11-15 17:10:21
阅读次数:
346
I‘m so careless I deleted a Java web project in eclipse. the only thing I have is a war file which I got from server. Thanks to?Procyon / Java Decompiler, I recovered all java source code from wa...
分类:
编程语言 时间:
2014-11-14 18:08:20
阅读次数:
160
Exception in thread "main" org.apache.solr.client.solrj.impl.HttpSolrServer$RemoteSolrException: Expected mime type application/octet-stream but got t...
分类:
移动开发 时间:
2014-11-12 19:39:16
阅读次数:
1013
implicitexplicitfloat f=12123456.213Fint a = Convert.ToInt32(f); //throw exception orint a = (int)f; // not throw exception nut got an overflow valuep...