Viewing profile — yatac42
yatac42
HN member- Joined
- Tue, Feb 12, 2019, 6:23 PM UTC
- HN karma
- 131
- Public activity
- 32 items
- HN profile
- View on Hacker News ↗
About yatac42
No profile information was provided.
Recent public activity
-
comment
Comment #47724163
From a quick look it seems like it's "as fast as a linter" because it is a linter. The homepage says "Not just generic AST patterns", but I couldn't find any rule that did anything…
-
comment
Comment #46989676
> My takeaway is that his test email bounced What test email? I see no mention of a test email in the blog post. The mail that bounced was the one with the verification link from V…
-
comment
Comment #40583825
> but we shouldn't forget that this kind of failure can only happen starting from an ambiguous grammar specification I don't think that's true. The following CFG is unambiguous: S …
- comment
-
comment
Comment #40063201
Note that they're actually citing "Mitchell, Webb et al." in the paper.
-
comment
Comment #38824829
> A lot of these games with fancy anti cheat protection the cheat tools basically just tell the server "spawn me a vehicle right here" and the server just does it. Citation needed.…
- comment
-
comment
Comment #37441952
And perhaps more relevantly, the regex from the article also works fine in RE2.
-
comment
Comment #37441655
> re2 uses a DFA-based system instead that just doesn't support the kinds of regexes that catastrophically backtrack There are certain fearures that are harder or impossible to imp…
- comment
-
comment
Comment #35175839
Yes and buying music on Amazon (which is what the comment I originally responded to was about), you get system number 2, i.e. a DRM-free MP3 download. Buying movies on Amazon is a …
-
comment
Comment #35175441
Which current systems? For games on Steam and movies basically anywhere, the current system is that after I buy the game/movie, I can watch/play it for as long as I have access to …
-
comment
Comment #35174365
> > music I've purchased > They really ought to stop using "buy"/"purchase" metaphorically to mean something more like "one time fee for an indefinite lease that ends upon account …
-
comment
Comment #32107788
I wouldn't say the source language is not meaningful. If you wrote an ahead-of-time JavaScript-to-WebAssembly compiler and benchmarked the WASM generated by that, it would probably…
-
comment
Comment #30586091
An important difference between your add method and binary search is that the signature of your add method already implies the contract that the sum of the two integers must fit in…
-
comment
Comment #30372521
> if this was true every company would be transparent "Only assholes and sociopaths are transparent" does not mean "all assholes and sociopaths are transparent".
-
comment
Comment #28986968
> I am fairly confident that people still use Apache Ant as build system As in: there are still (older) projects around that haven't (yet) migrated away from Ant? Sure. As in: Ant …
-
comment
Comment #28809434
If the `exit` variable were set to a string, `exit()` would be an error because you can't use `()` on strings. `exit` is a callable whose `__str__` method returns that message. Not…
-
comment
Comment #28627286
> it's conceptual slow because of the language (types, implicits, ...) and it's accidentally slow because written in Scala (a slow language) on the JVM (slow startups and warmups) …
-
comment
Comment #28286677
Å isn't a German character, it's Norwegian. GP was ordering a package from Germany to Norway.
-
comment
Comment #28196548
> Honestly your comment is so beside the point that I am not sure that you are not trolling. That seems pretty antagonistic for no reason. > You parent comment basically says the v…
-
comment
Comment #28000154
Word of warning: The Scanner class does not adhere to the maximal munch rule, so you shouldn't use it to match keywords the way that it's done in the code in the linked reddit thre…
-
comment
Comment #27787321
I can't find any evidence of that being true. In this article[1] for example, all the examples either have the comma before the "aber" or none at all. I can't find any example anyw…
-
comment
Comment #27094960
> In fact you wouldn’t really use iphone at all, but smartphone The sentence "Smartphone is a phone made by Apple" (or maybe "A smartphone is a phone made by Apple") would have a v…
-
comment
Comment #26134855
> What is the programming equivalent of stack equal columns? The game's "stack equal columns" corresponds to Haskell's Data.List.group function: > import Data.List > group [1,2,2,3…