Live data from Hacker News

Viewing profile — Gazler

Gazler

HN member
Joined
Sun, Jan 08, 2012, 8:21 PM UTC
HN karma
226
Public activity
37 items

About Gazler

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…

  3. story
  4. story
  5. 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

  6. 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…

  7. 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?

  8. 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…

  9. 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…

  10. comment
    Comment #8587240

    This is a great idea, definitely something worth implementing. Thanks for the feedback.

  11. 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…

  12. comment
    Comment #8587101

    Thanks for the feedback, I hope your dev team find it as valuable as you do.

  13. 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.

  14. 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…

  15. 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…

  16. story
  17. comment
    Comment #7452940

    Excuse the self promotion I wrote a tool aimed at teaching git at https://github.com/Gazler/githug

  18. 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…

  19. 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 …

  20. story
  21. story
  22. 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…

  23. story
  24. 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}

  25. 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 …