Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
tombell
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
tombell
6y ago
I've never had an issue running binaries written in Go I've compiled myself. From what I've experienced, only appears to affect .app binaries.
2.
▲
by
tombell
8y ago
should be 141 if you want to print out a string that would be 140 characters, NULL termination is a thing.
3.
▲
by
tombell
9y ago
There are so many lines in the post series that don't make very much sense if you understand the YC program. > We'd aim to have 4 to 6 developers on the project within the first few weeks, and had a substantial budget to achiev
4.
▲
by
tombell
11y ago
Yes, the public API for a library that the developer interfaces with. Not a web APi.
5.
▲
by
tombell
11y ago
They may also have internal apps written using Swift which are not public. However it's also nice to have a public style guide.
6.
▲
by
tombell
13y ago
I have my GitHub profile, but it doesn't have much on it except a few random open sourced projects and some random open source contributions. A lot of other work is for past/current employers which I can't exactly show off ea
7.
▲
Ask HN: Best way to find a better job without contacts
6 points
by
tombell
13y ago
|
6 comments
8.
▲
by
tombell
13y ago
If you built an app knowing it NEEDS push notifications on a platform where it's optional for the user to enable/disable, you failed as a developer. The application should be able to function either way. Users deny getting their location? A
9.
▲
by
tombell
14y ago
Even if you change one post, you still need to 'rebuild' every thing. I can't see how this can be reduced.
10.
▲
by
tombell
14y ago
It's a static site, you have no idea what files depend on each other. So everything has to be rebuilt.
11.
▲
by
tombell
14y ago
"The commands will trigger a webhook call to your server, where the actual deployment/testing/whatever command you need takes place." The end user still needs to run something on their servers to actually do anything for their custom comman
12.
▲
by
tombell
14y ago
So you came here to advertise your own product in a post about mine? You're basically deploying a thing that'll send http requests to another server which then executes specific tasks. So you've essentially replaced hubot with a web applica
13.
▲
by
tombell
14y ago
Yup, I plan on writing a pretty detailed section in chapter 4 about the hubot brain. Redis is just the default backend for persisting the brain.
14.
▲
by
tombell
14y ago
I'm trying to understand which part of my book you're trying to 'avoid'. Because from what I understand it's just the deploying bit? Which my hubot-factory already did, and it is being improved for a new version with the help of a great com
15.
▲
by
tombell
14y ago
How does one go about writing their own commands for a hosted product?
16.
▲
by
tombell
14y ago
This book is a work in progress, feel free to open an issue on the repo to suggest things you want to see added, and I'll add them!
17.
▲
by
tombell
14y ago
I recently added a HTTP route to hubot `/hubot/help` that you can visit if you enable the HTTP support to view the help on a page rather than flood channels.
18.
▲
by
tombell
14y ago
The only issue I have with this is having to type 'octogit' as a command or alias it, compared to 'hub' or 'git'.
19.
▲
by
tombell
14y ago
So the Mafia are hiring Rails devs, cool I guess? How about people just move on and care about something more important... like beer.
20.
▲
by
tombell
14y ago
Ctrl (or Cmd) Click, done.
21.
▲
by
tombell
14y ago
You're still coding in assembler I assume?
22.
▲
by
tombell
14y ago
> I disagree, he was simply posting comments about a professional athlete on his own twitter account, it's not like he was yelling it on the street or putting up billboards. I think you'll find, posting it on Twitter is the same as gett
23.
▲
by
tombell
15y ago
> So, the answer would be to never scrap features (that's why you did proper design beforehand, right?). Sure, if you work in some sort of enterprise or corporate environment.
24.
▲
by
tombell
15y ago
So you end up with a bunch of commits in a random order relating to different things. Lets say person A and person B are working on two features both committing to master. Person A commits some work to master and pushes to origin. Person B
25.
▲
by
tombell
15y ago
Tagging is useful for libraries and such. But for web sites and the like, you can just use the deployed commit SHA as an identifier. Much like GitHub does https://github.com/site/sha
26.
▲
by
tombell
15y ago
I prefer keeping unfinished features out of my deployed code base, so I keep them in branches.
27.
▲
by
tombell
15y ago
Even if all tests pass, it doesn't mean you're ready to ship half-completed features. The features should be on branches not in the deployable code.
28.
▲
by
tombell
15y ago
A branch is just a pointer to a commit. Once you've merged/rebased your branch into master, why would you keep it around?
29.
▲
by
tombell
15y ago
A long running branch is usually a feature branch that is worked on over a long period of time. Just committing everything to master is asking for trouble.
30.
▲
by
tombell
15y ago
I feel the need to point out the obvious. It's LEGO not LEGOS or legos.
More ›