One big favourite is the fan translation of Mother 3 for GBA.
One big favourite is the fan translation of Mother 3 for GBA.
I was looking for a mouse recently. My priorities were:
I got the Logitech Lift. I am pleasantly surprised by how nice it is.
Granted I mostly use my mouse for browsing, scrolling and navigating UIs. The rest is all keyboard. For games I prefer controllers and game pads so precision/high performance wasn’t an issue for me at all.
Yeah, COBOL schools and boot camps have started to pop up
Over about a decade: Win7 -> Mint -> Manjaro -> Mint -> Endeavour
Eyeing Nix atm, looks cute, might hop later
“You won’t age, everything freezes” implies my body (and brain) won’t change. That is, I won’t be able to form memories. So even if I experience it all “with all my senses”, it will only be for that exact moment and then it will be gone.
Like blinking and nothing has changed. You don’t remember any of it. It’s a bargain if you ask me.
My very first was my dad showing me his ICQ convos and letting me say hi to one of his friends, the client going OH-OH every now and then. Late 90’s.
emacs-everywhere with a nicely crafted flyspell config? ( ͡° ͜ʖ ͡°)
Reddit exodus last year. I like it here, it’s like old Reddit.
Some commenter asked why they were using Brave. I saved it to check out the answer later, because I was curious, but now I’ll never know :(
The year is 2026. The system requirements for Windows 12, shutting out 98% of the all current PCs in use, are set in place to manage Windows 12’s multiple new Outlook versions.
Sure. For instance, Andras Arato (“Hide the Pain Harold”) regurarly interacts with his fans. https://www.youtube.com/watch?v=a3WnvDtDD2M
What dense paragraphs? The review is well-structured in my eyes.
What about: a smith’s graduation test?
Lol. It does look great for carpal tunnel/RSI. I’d definitely buy it if it didn’t have such a 'murica gamer kiddo vibe.
…So if you use your hands to put pressure on the wound to stop the bleeding, you won’t get an ambulance?
You can implement Display for custom structs, to print them in the regular manner:
use std::fmt; struct Point { x: i32, y: i32, } impl fmt::Display for Point { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "({}, {})", self.x, self.y) } } fn main() { let point = Point { x: 10, y: 20 }; println!("{}", point); // using standard println! }
You can also implement things like Add, Sub, AddAssign (point_a += point_b)… :)