|
Transliteration package for Go
|
| |
Hi, I need to somehow convert non-latin names (cyrillic, chinese and japanese mainly) to the latin alphabet. Is there a package for transliteration somewhere?
|
|
Platform specific behavior
|
| |
Hi, I have to code a very simple program with the need to distribute the binary for OSX and Windows platforms, that seems a perfect mission for Go (and a good pretext to learn it). So, I'm new to Go and my program need to read the clipboard, the way to do it is very different between Windows and OSX.... more »
|
|
"Effective Go" error
|
| |
The first example in the "Function" section, there is a strange looking expression. x = x*10 + int(b[i])-'0'
|
|
limiting http server connection count
|
| |
I've rewritten several services in use by my employer in Go as HTTP servers. A common theme with these services are errors of the forms "too many open files", "no such host" and the like. I'm not entirely sure what could cause the DNS errors, but it's my belief the root cause is accepting too many connections, and then not having any available file descriptors... more »
|
|
malformed HTTP response
|
| |
各位,我遇到一个问题。
使用 http.Get(url) 请求一个页面时,返回内容为 0 或 1
golang就会认为 malformed HTTP response 查看代码,原来是这样判断的,不知道这样判断的理由什么?
pkg/net/http/response.go
f := strings.SplitN(line, " ", 3)... more »
|
|
bug in cgo with C callbacks?
|
| |
I've been playing around with Cgo and came across a strange crash. The use is case extremely simple and I have no idea what I'm doing wrong. It really looks like a bug in cgo to me but I wanted to confirm that I'm not missing something simple. I'm on 64-bit Darwin, 10.8.3, 64-bit, Go 1.1 compiled from source.... more »
|
|
represent - Create static HTML presentations and articles
|
| |
I wrapped the beautifully clean and simple Present tool (from [link]) to compile .slide and .article files into static HTML pages. Useful for creating slides and articles that can be hosted on Github Pages, dirt-cheap web hosting, etc. Here's a presentation about represent, which I compiled with represent:... more »
|
|
A more powerful go I18n library
|
| |
Remember me? ;) I recently asked some basic questions about godoc. At that time, I hinted at a project I was working on. Its now in a state I feel confident showing to you: code.google.com/p/ginta * What is it? It is a library for i18n, that should be easy to use, extend and customize to your needs... more »
|
|
Go 1.1 integration of net package and the scheduler
|
| |
I was reading in the release notes for Go 1.1 about performance
enhancements through the coupling of the net package and the scheduler and
I'm curious how that works. Could someone please give me a pointer to the
file(s) I should be looking at to better understand that?
|
|
|