HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mattsan

no profile record

Submissions

Ask HN: What are some resources to help me deal with seeing gory content?

6 points·by mattsan·vor 3 Jahren·11 comments

comments

mattsan
·vor 2 Jahren·discuss
You can keep it in the same orbit but spread the mass out along the orbit to the other side and that changes the combined CoG to be closer to Sun's CoG in turn changing Earth's orbit, albeit probably slightly
mattsan
·vor 2 Jahren·discuss
Haven't tested but I'm almost certain the Electron app they're talking about is VS Code. Wouldn't make sense for a code editor to sandbox extensions
mattsan
·vor 2 Jahren·discuss
Was a joke :)
mattsan
·vor 2 Jahren·discuss
Funny thought - want to solve global warming? Disassemble Mercury! Earth's orbit in theory would space a bit further out
mattsan
·vor 2 Jahren·discuss
To be fair all critical systems can be controlled by hardware buttons below the displays so they don't need a 100% guarantee, worst case rebooting would be fine
mattsan
·vor 2 Jahren·discuss
They're definitely marketing this as if they were Apple. If this takes off I'm betting on Apple buying them out.
mattsan
·vor 2 Jahren·discuss
yep this is what I meant. hallucinating, justifying or missing bad stuff.

additionally, similar to how large PRs are more likely to just be skimmed and replied with a "LGTM!", an LLM missing some bad stuff but still producing a seemingly thorough review would increase the chance of the bad stuff making its way in.

allowing LLMs to write code would be fine if its truly verified by a human, but let another LLM hallucinate and cloud a persons judgement and you've got a problem
mattsan
·vor 2 Jahren·discuss
It should just be banning the use of AI in code reviews
mattsan
·vor 2 Jahren·discuss
Cloudflare is profitable. Whales subsidise retail.
mattsan
·vor 2 Jahren·discuss
To be clear, that's a problem with your attention span, and not with the creator.
mattsan
·vor 2 Jahren·discuss
can't wait for LLMs to dispatch field agent robots who search for answers in the real world thats not online /s
mattsan
·vor 2 Jahren·discuss
This is addressed in the README and a comparison is given
mattsan
·vor 2 Jahren·discuss
x coord, y coord, command that consumes the arguments from what we can infer is pushed onto a stack beforehand
mattsan
·vor 2 Jahren·discuss
To be fair, theres also the kIPC mod that bridges and connects both kOS and kRPC together. I personally like the kerbal-y equivalent of Ada with kOS though ahaha
mattsan
·vor 2 Jahren·discuss
If you want a simpler intro into learning the math/logic behind rocket guidance systems, kOS is an alternative mod.

The main difference is that it has a pretty good base autopilot, such that you can give it a direction vector to point to.

The downside is that you have to learn a specific language for it, but you can also make your own language that transpiles as a fun project :)

Example of what's possible: https://www.youtube.com/watch?v=szsIL_0m2Qo
mattsan
·vor 2 Jahren·discuss
And in the UK student loans are adjusted over time based on inflation lol. Inflation don't be helping people with student loans here
mattsan
·vor 2 Jahren·discuss
I haven't done the math but I would think it's possible due to interactions from other solar systems. Similar to how satellites oscillate around Lagrange points
mattsan
·vor 2 Jahren·discuss
Yeah, thats the main engine site, the link submitted here is for a specific port. Not the same.
mattsan
·vor 2 Jahren·discuss
The website says this: https://arc.net/l/quote/btugrszz
mattsan
·vor 2 Jahren·discuss
Other than LLVM portability concerns, I think Rust can for sure replace C/C++ libraries (I'm talking DLLs etc).

Sure, there will be a small C ABI shim but the developer experience writing in Rust I think is worth it.

Also, nowadays whenever I want to write a fast Python extension, I don't think twice before using pyo3, super simple to write and build.