Live data from Hacker News

Viewing profile — waf

waf

HN member
Joined
Sun, Oct 04, 2009, 8:53 PM UTC
HN karma
59
Public activity
34 items

About waf

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #41022723

    Fun exercise! I found that the Ruby in this post resembles modern C# (probably because Ruby is a gold standard in readability, and in the last 5 years or so C# has been making big …

  3. comment
    Comment #37819005

    For VSCode, there's https://github.com/AnWeber/vscode-httpyac

  4. comment
    Comment #35812823

    An older yet still excellent take on this topic is https://joeduffyblog.com/2016/02/07/the-error-model/

  5. comment
    Comment #35299111

    I've been adding C# code completion functionality to my REPL tool, and ended up reverting to the text-davinci model. The codex (discontinued?) and text-davinci models gave much bet…

  6. comment
    Comment #35132556

    Just for reference, the PowerShell version of this would be: ls | where Length -gt 1mb | sort LastWriteTime

  7. comment
    Comment #33423016

    Jetabroad (Thailand) | Senior Software Engineer | Bangkok, Thailand | Hybrid | Full-Time | Visa / Work-Permit | Salary USD 80K | https://www.jetabroad.com.au/ Airfares are hard, we…

  8. comment
    Comment #31281400

    For what it's worth, modern C# can evaluate top-level statements with no other ceremony. The following is a valid standalone C# program: Console.WriteLine("Hello"); For REPLs, ther…

  9. comment
    Comment #31022782

    I'd love to see an additional section on unit testing -- if we wanted to write some assertions on our async http handler that queries the database, what would that look like? Would…

  10. comment
    Comment #30975475

    Agreed, the predictive intellisense is really nice and a makes a huge difference in my productivity at the command line. It's similar to Fish Shell's features. There are a ton of i…

  11. comment
    Comment #30020500

    For C#, there's https://github.com/spectreconsole/spectre.console I use this in a lot of my "quick apps" for status monitoring

  12. comment
    Comment #28264345

    Right, AWS accounts created before September 2017 are coupled to amazon.com retail accounts. Accounts created after this are separate.

  13. story
  14. story
  15. comment
    Comment #26384476

    It sounds like the team is interested in adding more automated tests, but are blocked by static singletons, which have high performance but also high coupling, resulting in poor te…

  16. comment
    Comment #26226758

    Because of the domain name, I expected this to be a quality blog post from the stackoverflow engineering team--they always have good content. But this website appears to be a place…

  17. comment
    Comment #24197175

    I've used this before (as an API consumer, not an author), and while it's better than many other documentation sites, for some reason the "scrolling will change the URL and active …

  18. comment
    Comment #23903548

    Visual Studio does semantic highlighting for at least C# (they call it enhanced highlighting). Static classes, parameters, internal structure of regex strings, etc. Basically anyth…

  19. comment
    Comment #23840985

    ah, interesting. I guess the implication in your comment is that there are other, more capable alternatives (but not as "pretty"). What are some of the criteria where wikijs is lac…

  20. comment
    Comment #23818139

    Did you look at wiki.js ( https://wiki.js.org/ )? I've been evaluating wikis too, and that's at the top of my list because it checks the boxes of having a git backend, markdown, an…

  21. comment
    Comment #23412715

    Another fun one to figure out is: 072 === 058 // returns true Thankfully, doesn't work in strict mode.

  22. story
  23. comment
    Comment #16164584

    You can also contribute and track the progress here: https://github.com/dotnet/corert/issues/4659

  24. story
  25. comment
    Comment #15300466

    > The fact they display the "total cost of all nights" in the results, instead of the per-night cost. That's not a misleading UX, it's just a bad UX decision. I prefer the total co…