HN user

mimog

56 karma
Posts0
Comments65
View on HN
No posts found.

Its not two realities. Its one population chunk living in reality and one chunk living in a misinformation fueled delusion. Special interests have managed to weaponize social media and misinformation. It started with allowing blatant lying and partisan propoganda to be framed as impartial news because deliberate mass misinformation is apparently free speech. Now the cat is out of the bag and the only way back is strong regulation of social and news media.

You are violating DRY principle. Copied code, with minor variation, spread out through a codebase is, seriously, the root of all evil.

You seem to struggle with the fact that your personal interests and the HN submission guidelines diverge. Even though the story of a Hotel manager levying unlawful charges against his guests seems to pique your intellectual curiosity immensely, it still doesn't mean that it adheres to the submission guidelines. More specifically this part of it: "Off-Topic: Most stories about politics, or crime, or sports, unless they're evidence of some interesting new phenomenon. Videos of pratfalls or disasters, or cute animal pictures. If they'd cover it on TV news, it's probably off-topic"

Also, your use of a double negative in the sentence "It's not a story that doesn't have connections to how some businesses perceive the internet, internet 'mob' justice, antiquated laws, free speech and such, right?" makes it far less sarcastic than you probably intended it to be.

> Which amount to "whatever piques one's intellectual curiocity" and "whatever good hackers like"

It only amounts to that if you completely disregard this part: "Off-Topic: Most stories about politics, or crime, or sports, unless they're evidence of some interesting new phenomenon. Videos of pratfalls or disasters, or cute animal pictures. If they'd cover it on TV news, it's probably off-topic. "

This part apparently: "Most stories about politics, or crime, or sports ... If they'd cover it on TV news, it's probably off-topic."

But forgive me, I am, unlike you, not the type of person who finds a story about a Hotel manager behaving badly particularly intellectually gratifying.

> Trip Advisor is a tech startup

So a nearly 15 year old company with a billion dollar revenue still qualifies as a startup?

> The situation couldn't have occurred without a service like them

Freedom of speech infractions have occurred for way longer than online services have existed.

So if someone tweets something stupid/political it should be posted on hackernews as well, simply because tweeting wasn't possible prior to twitter? Or what if someone reacts badly to something on tumblr, is that relevant for hn'ers as well in case they are trying to innovate in the micro-blogging space?

Banned for Life 12 years ago

Good. I wish all the people developing crappy and useless apps, flooding the place, would get banned. You publish 10 different apps where the only thing that changes is the youtube channel, and claim you were beta testing? I hope Apple and Microsoft ban you as well.

According to Robert C. Martins book "Clean Code", and the SLAP principle, the maximum length of a method (yes, an entire method) is around 20 - 50 lines of code. If it gets longer than that, odds are that it is doing more than one thing and is operating on different levels of abstraction, and should be broken up into smaller methods. I would also say that I have rarely seen (if ever) well-written, easy to comprehend and maintain code where the control structures and methods contain hundreds of lines of code.

I like how it says "Rock-Solid Ecosystem", yet I have had the exact opposite experience trying to install even the most basic things with Cabal. I still can't get the Sublime text haskell plugin to work due to a dependency that fails to compile.

How about having your client cache the results? I am working on a project that uses an external customer database service, and in order to speed up the service i cache the lookups/REST responses in a 5 min retention speedup cache and an eternal failover cache that allows us to continue to function if the external service goes offline. I use Ehcache.

In my experience lexers and parser generators are used extensively by hobbyists. Tools such as Antlr, Boost.Spirit and Xtext come to mind.