HN user

techbro92

122 karma
Posts0
Comments52
View on HN
No posts found.

Okay question was about drugs that are contraindicated for all medical purposes like heroin.

Also do you see any ironic connection between your two examples: easily accessible antibiotics and a medically resistant infection?

What is the argument for legalizing drugs that are contraindicated for all medical purposes, are toxic, and have a high addictive potential? How does it benefit me or society if my neighbor is permitted to choose to basically roll the dice on afflicting themselves with a debilitating chronic illness (severe addiction)? If I don’t want to do illegal drugs why would I ant to support this?

I think a lot of the time you would be correct. But this is published to arxiv so it’s not peer reviewed and doesn’t boost the authors credentials. It could be designed to attract attention to the company they work at. Or it could just be a cool idea the author wanted to share.

I don’t understand the design constraints and goals that would lead to someone choosing this design. It seems like an insane amount of complexity. I also don’t know much about web development. Wouldn’t it be much simpler to just build a C++ application? I think one possible reason for choosing a web based design is because web frameworks can look really good. But I think this is not an important thing to optimize for in an editor, especially if it’s coming at the expense of performance.

Code Models 2 years ago

In general it’s impossible to trace the flow of an entire program due to the halting problem. Also most programs have a lot of branches and this would lead to an explosion of possible paths through the code to trace.

Really? Do you have any links to explain this? I find this to be a super unintuitive result because I would expect compiled code to be faster than interpreted. My recommendation for native compiling is just based on personal experience not benchmarks. Emacs feels faster after enabling it.

RAD Debugger 3 years ago

Fun fact, you can plot variable values over time with gdb. You just have to create a gdb extension to do it: https://github.com/jyurkanin/gdb_extensions This blew my mind when I figured out how to make these extensions and everyone should be making their own extensions. It's a force multiplier. Literally life changing