petke
|
10 years ago
|
on: Alphabet Becomes the Most Valuable Public Company in the World
Also apple only spends about 3% of revenue on R&D. Google spends about 15% (and so does ms) if i remember correctly. I think at some point this is going to show. If apple isn't careful they might end up making the pretty but dumb phones of tomorrow.
petke
|
10 years ago
|
on: Why I'm Choosing C++
I find it surprising how little interest there is on hn about cpp in general. This video about the future of cpp is the best i have seen this year. My guess is the demographics of hn is just wrong for cpp. Its mostly web developers here?
petke
|
10 years ago
|
on: Why I'm Choosing C++
Garbage collection only works well for memory though. Other resources like file handles, mutexes, database connections, etc. You don't want to leave those hanging. You want them to be released at once a scope is exited.
petke
|
10 years ago
|
on: Why I'm Choosing C++
Its not been done as general as this though. Check out this link if you have the time. Especially the last 15 minutes. Its by the ceo of openmp and its very interesting.
http://youtu.be/0mwHJ0950tA
petke
|
10 years ago
|
on: Why I'm Choosing C++
I have never been as excited for the future of cpp as I am now. Cpp17 and cpp20 are going to be revolutionary when it comes to concurrency an parallelism.
In cpp17 we get couroutines. Its like await in c# only more general and powerful. In cpp20 we will get parallel executors. Kindof like cppamp and openmp only more general and powerful. It will bring supercomputing mainstream.
Its exciting times for cpp. There are already some experimental implementations to try out. There are also a bunch of other big features coming out. Modules, concepts, transactional memory, compile time reflection, ranges, views, etc.
People can hate on cpp all they want. I'm super excited, and think they are missing out on the future.
petke
|
10 years ago
|
on: We're the Only Animals with Chins
I'm no expert just an mma fan. The rear naked choke for instance. Once they get under your chin its hard to slip out. The bigger the chin the more difficult. The chin is like a hook. Imagine a person without a chin. He could just pull his head out. Especially if they are sweaty.
petke
|
10 years ago
|
on: We're the Only Animals with Chins
If the neck was so vulnerable it needed protection why doesn't animals have a chin. And why isn't there a permanent bone covering the neck at all times.
petke
|
10 years ago
|
on: We're the Only Animals with Chins
The chin just helps people choke you better. You cant slip out of their grip as easy. Also a big chin is bad for fighting. The easiest way to knock someone out I to hit them on the chin. It makes the head turn and the brain bounce against the skull. The more the chin sticks out the easier it is to hit and the more the head turns.
petke
|
10 years ago
|
on: We're the Only Animals with Chins
Chimps pout better than any selfie teen. So I don't think that's it
petke
|
10 years ago
|
on: A Programming Language with Deterministic Multithreading
Fair enough. I was talking about synchronisation of threads though.
petke
|
10 years ago
|
on: A Programming Language with Deterministic Multithreading
Truly deterministic multithreading is really just single threading. Multithreading is by its nature undeterministic. To make it deterministic you really have to synchronize enough until just one thread at a time is making progress. It kindof defeats the purpose of multithreading. Synchronization is the enemy of scalability. You want to avoid it at all costs.
petke
|
10 years ago
|
on: 216 postive words not in the English language
It took me a while to get that. Yes thats a very useful word. Much information per character. If we could use it as a verb also it would be very useful. Ex: I meh calling her, could you do it?
petke
|
10 years ago
|
on: Ask HN: What should we fund at YC Research?
Its kindof strange that we see doctors time as so valuable that we shouldn't bother them unless we are sick enough we cant function. Its like taking the car to the mechanic only when the engine has come off because we don't want to bother them with the small stuff. But waiting for small problems to turn big ... Is also a waste of medical resources. And it might be too late to fix them then.
petke
|
10 years ago
|
on: 216 postive words not in the English language
Just looked up Finnish quickly. I never thought of it before but its very strange to me that a basic word like jaksaa is missing from English. It seems as basic a word as want or cant. In English you have to say something cumbersome "I don't have the energy to do that" in Finnish or Swedish you say that in 3 short words.
petke
|
10 years ago
|
on: The Shipping News Suggests Economic Weakness
It took me a while to see that the dramatic looking spikes and falls in the graphs where only due to the lower range of the y axis being cut out.
petke
|
10 years ago
|
on: Ask HN: What should we fund at YC Research?
Are you talking about Robocop?
petke
|
10 years ago
|
on: Reddit in 2016
I imagine if hn grows any bigger it will become like reddit. It's the smalltown vs big city mentality.
petke
|
10 years ago
|
on: The Darker Side of Aaron Swartz (2013)
I don't think this obsession with Aaron and his death is any good. It feels like a morbid soap opera. He is more talked about in death than in life. I think its better to focus on the living. There is plenty of interesting tech entrepreneurs and activists out there.
petke
|
10 years ago
|
on: Ask HN: What should we fund at YC Research?
Automation of common medical lab tests. Not just for the sick but for the healthy. How cool would it be to every week send a drop of blood by mail and get to see a nice graph on a website how the different hormones and proteins etc in your blood has changed throughout the year. It could help you live a healthier life.
petke
|
10 years ago
|
on: Automatic bug-repair system fixes 10 times as many errors as its predecessors
If it can identify a bug and fix it then its fully automatic. If its good enough we could eventually give it the password to our source control systems and let it do its thing unsupervised. As a funny thought I imagine a future virus that gains write access to all github projects but instead of deleting everything it just fixes all the bugs.