HN user

brann0

281 karma
Posts0
Comments44
View on HN
No posts found.

Mmmh, if you search for a place in the maps tab instead of the general one you usually have a telephone url you can tap to start a phone call.

I still find that you're using a very specific use case of a search engine to completely dismiss not using a different search engine.

You seem to be missing the point of IM GUIs. They are just intended to render the UI in a stateless way. If you try to use them in another way you'll find them awkward, of course.

I may have misunderstood you, tho :)

Performance is not the only consideration, even in most demanding games. IM GUIs simplify UI code a lot, by not having to rely on message systems that make the code harder to follow and less predictable.

As most things in life, it's a matter of trade-offs.

Annoying for everyone? Talk for yourself, I'd love some flexibility when it comes to job hours, and I'd love my kids to start school later in the mornings.

Jobs should accommodate to people's lives, and not the other way around.

Can you provide some proof that "pirating" (I hate that word) had severely diminished sold copies? And I don't mean all those "studies" based on the false premise that downloaded records are lost sales.

Copyright isn't here to protect the creator, but the copyrights holder. The great extension of copyright (way beyond the artist life) is there so a few copies holders keep their IPs for a handful of mega-successful acts: Mickey, The Beatles, Elvis,...

Screwing us all because they are still able to milk the cow is unfair. Money-making cannot be the only factor taken into account. Public domain is something we, as a society, deserve.

What happens right now is unacceptable.

OT: Luckily for him, he studies at a public university so much likely he doesn't even need a student loan.

Students shouldn't need loans. It's an aberration.

DOSbox-CRT 8 years ago

Me and some friends acquired some cheap Eizo 21" CRTs back in the day. It was an awesome display, but weighted >30kg.

The amount of heat it dissipated was huge, tho.

It also helps spread content, like a modern version of word of mouth. Assuming every download is a lost sale is a debunked myth. I agree there's a problem, but the solution isn't prosecution but education.

Also, piracy is, most of the time, a master of convenience: Netflix/Steam have reduced pirating way more than any anti-P2P law.

Great answer, thanks for the insight. I'm really puzzled at how many people aggressively answers when someone refuses to use standard libraries (or practices).

We were in a similar situation and using our own string implementation improved performance and reduced memory fragmentation.

Some people refuses to accept that certain software cannot rely on general purpose libraries and need to roll their own solution adapted to their specific needs.

You're missing the point of reimplementing some or all of the standard libs. Similarly, disabling C++ exceptions and RTTI is a very common practice in gamedev.

Sometimes you reimplement a certain standard class (vector, string...) to adapt it to the very needs and usage patterns you have. Standard libs tend to be too general, plagued with allocations and other useless (in this specific context) behaviors that may negatively impact your performance/cache friendliness/memory fragmentation...

I agree a simple tiny game doesn't need all of these but when you need to squeeze all the performance you can there's no other option.

So please, do not just dismiss all the gamedev wisdom like that.