Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
vendakka
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
vendakka
9y ago
Hi HN, TimeFerret is a beautiful calendar app for iPhones and iPads. It comes with a custom keyboard that lets you access your calendar from any app. How TimeFerret is different from other calendar apps: 1. Quickly see how much time you ha
2.
▲
Show HN: TimeFerret – Schedule meetings from your keyboard on iOS
(timeferret.com)
2 points
by
vendakka
9y ago
|
1 comments
3.
▲
by
vendakka
9y ago
Stencil implements GoImports formatting which is basically GoFmt with a slightly different import ordering. And yes, it would be useful to standardize this somehow, the way go generate is standardized.
4.
▲
Show HN: Stencil – Simple code templating for Go
(laddoo.net)
11 points
by
vendakka
9y ago
|
5 comments
5.
▲
What to Test? Using callgraph to prioritize test writing for Go code
(blog.chewxy.com)
3 points
by
vendakka
9y ago
|
0 comments
6.
▲
by
vendakka
10y ago
The go vet integration with go test looks interesting. I'm currently using github.com/surullabs/lint [1] to run vet and a few other lint tools as part of go test. It provides a nice increase in productivity for my dev cycle.
7.
▲
by
vendakka
10y ago
Ah right.
8.
▲
by
vendakka
10y ago
I wasn't very clear. A hypothetical conn.Read(w Writer) would call Write on w instead of filling a byte array. Write in turn allocates as needed. WriterTo is a cleaner way of doing this.
9.
▲
by
vendakka
10y ago
Exactly. The sync.Pool will only be useful if net.Conn.Read accepted a Writer instead of []byte.
10.
▲
by
vendakka
10y ago
Hi, I'm the author. Please let me know if you have any questions or comments. This library allows you to run a variety of linters as part of go test. It also supports whitelisting false positives. It reduces the need for build scripts,
11.
▲
Show HN: Lint – run linters from go test
(timeferret.com)
2 points
by
vendakka
10y ago
|
1 comments
12.
▲
by
vendakka
10y ago
This is something I definitely agree with. I've sometimes found that taking a few seconds to cache state in a notepad before responding to the interruption helps a lot. Having times of day dedicated to meetings also helps reduce fragme
13.
▲
by
vendakka
10y ago
This is very good advice. I've had trouble with flexibility for as long as I can remember. I've recently started some light exercise again and including yoga for just 5 to 10 min has made an enormous difference.
14.
▲
by
vendakka
10y ago
I've used git subrepo [1] for vendoring and been quite happy with it. Doesn't seem to have the problems of git submodule and it's easier to use than git subtree. [1] https://github.com/ingydotnet/git-subr
15.
▲
by
vendakka
10y ago
Would you be interested in trying our beta [1] once it's ready? We're working on the hypothesis that bad meeting schedules can result in a large drop in productivity, especially for software related jobs. Our current solution is t
16.
▲
by
vendakka
10y ago
Thanks for letting us know. I've updated the quota so the website is up now. EDIT: Changed it to say the website is up, where it said the website will be up shortly.
17.
▲
by
vendakka
10y ago
Slightly shameless self promotion: If you're looking for an Android solution, we're working on TimeFerret, a calendar app that helps you reduce fragmented meeting schedules and track productivity. It's not released yet though
18.
▲
by
vendakka
10y ago
Regarding generics: the tool generates Java bindings from Go code. Since Go doesn't have generics we just generate non-generic bindings.
19.
▲
by
vendakka
10y ago
Yes. The only constraint is that the jar will only work on the architecture it was built on.
20.
▲
by
vendakka
10y ago
Yes this is definitely a little limiting. I'm also experimenting with a slightly different binding method, where passing pointers to structs is disallowed (gobind currently allows pointers to structs). All structs are only passed by va
21.
▲
by
vendakka
10y ago
Yup. I'll put together some more docs and usage examples this weekend. Edit: https://github.com/sridharv/gojava/issues/6
22.
▲
by
vendakka
10y ago
This exists for Python [0]. The reverse is also interesting (Go -> Java/Python/Ruby) and once I get some spare time, I'll play around with using libjvm to load and call jar files from Go. [0] https://github.com&
23.
▲
Show HN: GoJava – Server/desktop Java bindings to Go packages
(github.com)
52 points
by
vendakka
10y ago
|
14 comments
24.
▲
by
vendakka
11y ago
I've set up a business here without knowing German (I'm Indian). I moved here from the U.S and what worked for me was to pass all of this off to people who know how to deal with it. My lawyers handled the company set-up and my acc
25.
▲
by
vendakka
11y ago
Conway's Law comes into play a little here. Microservices provide organization level flexibility at the cost of operational and development complexity. For small teams and especially at the start of a project, organizational flexibilit
26.
▲
by
vendakka
11y ago
I've recently started working in node after spending some time in Go-land and the reverse applies to me. The code I'm writing is a mix of js + Go and I find that in JS I have no sense for what can go wrong since it's not obvi
27.
▲
by
vendakka
11y ago
I just started working with javascript recently after a long time in Java/C++ land, and this really resonates. I get the feeling the javascript community is where the Java world was a few years ago. A number of the npm packages that I&
28.
▲
by
vendakka
12y ago
Transport Layer I'd use HTTP with SSL on port 443. The ports 443 and 80 are whitelisted by a number of corporate firewalls and the like. I've run into problems in the past caused by blocked ports. In addition there is a large amou
29.
▲
by
vendakka
12y ago
There is usually a fair bit of prototyping work involved as well. There's also a lot of listening involved, as you can't really design a good system without first talking to the people who are going to use the system and understan
30.
▲
by
vendakka
12y ago
It isn't just the tone that I'd take issue with. The person who reported the bug is also implying that the library author is either negligent or incompetent. I consider this to be an extremely uncharitable attitude. The library au
More ›