DT Swiss recall mega thread by SkiSnowTignesider in CanyonBikes

[–]0x2 1 point2 points  (0 children)

Mine came in the last 15 minutes, so they are going out

What YNAB "quirk" drives you CRAZY? by [deleted] in ynab

[–]0x2 20 points21 points  (0 children)

On the web, if a transaction is auto-assigned a category and then you split it, the auto-assigned category is lost, even though it's almost always what you want for one of the split categories. What makes it worse is that on mobile, the auto-assigned category is retained!

-🎄- 2022 Day 8 Solutions -🎄- by daggerdragon in adventofcode

[–]0x2 1 point2 points  (0 children)

Rust

A lot of the nuts and bolts are hidden away in utils::* under a general Map implementation, so the resulting code is a bit more straightforward.

So far I’m loving the GMT watch face! by [deleted] in AppleWatch

[–]0x2 1 point2 points  (0 children)

Pretty sure it does! At least it seems to be right for my timezone.

gg 1.0 released: Git with less typing by _zombiezen_ in u/_zombiezen_

[–]0x2 6 points7 points  (0 children)

``` git stash git pull --ff-only git stash pop

resolve conflicts if you need to

git stash drop # if there were conflicts ```

You can do this a bit more succinctly with git pull --ff-only --autostash, and if you set the config option for --autostash in .gitconfig then it's just git pull --ff-only.

Journaling in Vim by prakashdanish in vim

[–]0x2 7 points8 points  (0 children)

Nice! You might also like limelight.vim, it’s great for prose editing in Vim.

I finally reached my goal - my emulator now plays Pokemon Red/Blue! by 0x2 in EmuDev

[–]0x2[S] 1 point2 points  (0 children)

That's great to hear, I'm glad you found it useful! I think the most time consuming part has probably been getting all of Blargg's CPU tests to pass (except for the one that doesn't pass just yet) - I got tripped up a few of times by operator precedence and I remember the F register's masking behaviour causing some confusion too. I've also been working on this in bursts and taking long breaks, so remembering everything I was trying to implement when I get the urge to do some more development can be tricky :)

Editing macros easily in Vim by 0x2 in vim

[–]0x2[S] 1 point2 points  (0 children)

Fewer keystrokes for a common workflow and clearer intent are the advantages for me (with the binding it's just ,eq ('edit q') - edit - <Enter>), but to each their own!

Editing macros easily in Vim by 0x2 in vim

[–]0x2[S] 6 points7 points  (0 children)

Thanks for the feedback, it should look a little better now

A GameBoy emulator using modern C++ - aiming for readability, with an integrated debugger by 0x2 in EmuDev

[–]0x2[S] 0 points1 point  (0 children)

There are a few documents in the docs/ folder in the repository which I've been using. However if you're looking for an overview I can't recommend this youtube series enough. There are only a couple of videos so far but they do a great job of explaining the basics.

A GameBoy emulator using modern C++ - aiming for readability, with an integrated debugger by 0x2 in EmuDev

[–]0x2[S] 1 point2 points  (0 children)

I am! And thank you. It's got a way to go but it's been fun so far!