Viewing profile — Gazler
Gazler
HN member- Joined
- Sun, Jan 08, 2012, 8:21 PM UTC
- HN karma
- 226
- Public activity
- 37 items
- HN profile
- View on Hacker News ↗
About Gazler
No profile information was provided.
Recent public activity
-
comment
Comment #19562225
Not sure when you were using Elixir, but releases are a good option for deployment now. This is supported with the distillery library ( https://hexdocs.pm/distillery/home.html ). T…
-
comment
Comment #17310274
There are a few. This page lists the IETF QUIC implementations and gQUIC implementations (which is supported here) at the bottom. https://github.com/quicwg/base-drafts/wiki/Impleme…
- story
- story
-
comment
Comment #8663114
I wrote something a few years ago that does a similar thing using a real command line. https://github.com/Gazler/githug
-
comment
Comment #8588903
It is common in many flows to expect people to do a force push if something is wrong with their pull request, e.g. having 15 commits that look like: Try stuff Another prototype Fix…
-
comment
Comment #8588890
I think doing it like that is a neat idea. Perhaps there could be an "advanced" page which is as you describe and the current method could be the "simple" version?
-
comment
Comment #8587433
Thanks for the ideas. I think there are several avenues that could be explored with this. I wanted to stay away from explicitly checking the code initially, as there are other tool…
-
comment
Comment #8587296
Glad it made sense! So the match is exact between the non %{..} characters. The idea for scope is the context of the commit, in my libraries I use the name of the class as the scop…
-
comment
Comment #8587240
This is a great idea, definitely something worth implementing. Thanks for the feedback.
-
comment
Comment #8587223
Hi, thanks for the feedback, it would be great to be used by a project like Foreman! Currently the string for the format only allows the 3 defined variables, type, scope and descri…
-
comment
Comment #8587101
Thanks for the feedback, I hope your dev team find it as valuable as you do.
-
comment
Comment #8587055
I'm not too familiar with Atlassian Stash, I will have a search around and see how plausible it would be to integrate.
-
comment
Comment #8587030
A git hook would certainly work for this as you described and I would certainly encourage people to investigate that route if it is appropriate for them. http://git-scm.com/book/en…
-
comment
Comment #8586527
Thanks for the feedback, I am a fan of the pricing schema too! An example of the messages GitCop outputs can be seen at https://github.com/Gazler/gitcop-test/pull/2 if you are inte…
- story
-
comment
Comment #7452940
Excuse the self promotion I wrote a tool aimed at teaching git at https://github.com/Gazler/githug
-
comment
Comment #5895705
Yeah, me too. It happens to me at least daily. I don't think I have ever wanted to search within the repository and it certainly shouldn't be default. In fact, I might write a brow…
-
comment
Comment #5892390
Perhaps these examples weren't the best. When searching for more general things it helps to put in golang. For example "Running go on multiple machines" or "Running go on multiple …
- story
- story
-
comment
Comment #4809103
Surely you are just benchmarking Varnish and Drupal is irrelevant in the equation? The other results are more useful. Interesting to see how little it takes to kill Apache for a st…
- story
-
comment
Comment #4614431
My goto ruby solution looks something like: (1..100).map{|i|(f=[["Fizz"][i%3],["Buzz"][i%5]].join).empty? ? i:f}
-
comment
Comment #4475540
I really like the structure of this, very readable and a great intro. I have some confusion on http://www.golang-book.com/6 It says: Go also provides a shorter syntax for creating …