Live data from Hacker News

Viewing profile — sqlserver2008

sqlserver2008

HN member
Joined
Sat, Dec 17, 2022, 5:27 AM UTC
HN karma
11
Public activity
6 items

About sqlserver2008

No profile information was provided.

Recent public activity

  1. comment
    Comment #49149498

    Sure but even with no code indentation at all, an auto-formatter can easily indent everything for you because of the braces. If you have poorly indented code in a language like Pyt…

  2. comment
    Comment #35028331

    >first example is a syntax error The code runs so it's most definitely not a syntax error. May be against PEP styling rules, but it is valid Python code. >which must be fixed, and …

  3. comment
    Comment #35016961

    >Two ways to delimit blocks is redundant. It isn't redundant though because without delimiting symbols for a code block you lose the ability to have your code autoformatted in cert…

  4. comment
    Comment #34135458

    Was it this review? https://slatestarcodex.com/2017/04/25/book-review-the-hungry... This also lines up with my anecdotal experience, and the best boring food I've ever found were p…

  5. comment
    Comment #34026242

    > OCaml isn't indentation sensitive, so doesn't suffer from this True, I was just making the point that the lightweight syntax of indentation-sensitive languages like Python can be…

  6. comment
    Comment #34025180

    Indentation-sensitive syntax is totally obsolete in a world with autoformatters. In addition, with this kind of syntax you also lose the ability to have your code autoformatted in …