Pretty difficult champion in my opinion with a high skill ceiling.
Some matchups are brutal but honestly one of the most funnest champions to play
81–90 of 242 posts
Pretty difficult champion in my opinion with a high skill ceiling.
Some matchups are brutal but honestly one of the most funnest champions to play
Basic math. I'm amazed how little I remember 11 years after finishing high school. I also want to learn some frontend. I started learning Rust some time ago. I really need to remind me a lot of basic IT topics. The problem is how much I'd really learn.
What are you using to review/relearn basic math? I'm asking because this is the space I'm working in, so I wonder what "products" people are hiring to do this "job." PS: Check out this concept map that shows the high school math concepts and topics that you can use as a "progress bar" for what there is to review: https://minireference.com/static/conceptmaps/math_concepts.p...
Thanks for the link!
I'm trying to understand how to break an expression down to a graph of bit functions, so I can program a BitGrid. I suspect GitHub copilot can help.
How to MIG weld.
Mig welding is easy. Not inhaling shit that leads to cancer or alzheimer's is not so easy. Enjoy!
Earlier quoted context omitted.
I suspect if you're looking at C++ as a viable language for the problems you're solving, you're solving quite different problems from me, so take this with a grain of salt. What I wanted from Rust was basically a strongly-typed C and more modern tooling. I'm open to more checking than that, depending on what cost it has. What I'm getting is strong typing and more modern tooling--cargo, for example, is excellent. But…
Have you tried looking at zig? Also, unsafe is not meant to ease the borrow checker pains, that's like using void* everywhere in C because you don't know how to type a function pointer. Unsafe is meant for places where rust simply doesn't know better, like reading memory mapped registers.
Eh, one could argue that some of these "Rust simply doesn't know better" situations are often borrow checker pains. But in general, I'd agree that bypassing the borrow checker doesn't seem to be the point of `unsafe` in my limited experience.
But the bigger point I'm trying to make is that there doesn't appear to be any solution to some of the borrow checker issues I've run into. There are things you can do in C, which are strongly related to the reasons I'm using these low-level languages, that appear to be impossible in Rust.
Keep in mind the caveat that I'm new to Rust, so there may be some solution I'm just not aware of.
Earlier quoted context omitted.
You are in good company my friend. Here's my trike: https://www.youtube.com/watch?v=o3SEndDnVXg
Hoo boy, now I'm feeling equal parts inspiration and intimidation :P
Earlier quoted context omitted.
Have you tried looking at zig? Also, unsafe is not meant to ease the borrow checker pains, that's like using void* everywhere in C because you don't know how to type a function pointer. Unsafe is meant for places where rust simply doesn't know better, like reading memory mapped registers.
> Also, unsafe is not meant to ease the borrow checker pains, that's like using void* everywhere in C because you don't know how to type a function pointer. Unsafe is meant for places where rust simply doesn't know better, like reading memory mapped registers. Eh, one could argue that some of these "Rust simply doesn't know better" situations are often borrow checker pains. But in general, I'd agree that bypassing th…
Earlier quoted context omitted.
I'm taking a class at the local community college. It's OK, just some class notes and an e-textbook that I never bother to read. The pedagogy is much as I remember it, the teacher going through the problems on a whiteboard and expecting everyone to rote-memorize things. But mostly, I'm learning from ChatGPT. You can enter (or take a picture of) any problem and ask it to break it down step by step and it does that ver…
I've been considering paying for an LLM to augment my learning, for when I get stuck or can't figure something out. In terms of courses I am looking at Khan Academy but also https://ocw.mit.edu/courses/18-01sc-single-variable-calculus... (haven't started so I cant speak for quality)