rustbuckett
3
22
rustbuckett

@programming.dev

rustbuckett 30 points 2 days ago

I thought Fairphone was one of the few supported phones. Perhaps I'm thinking of a different phone OS.

path: 0 25360955 25362039, hotness: undefined, score: 30, children: 15
rustbuckett 4 points 6 days ago

I've used DDG for years and really like it. I like it even more now that I've been using #emacs more because they have a text-based, or at least non-js, search page that works well in eww.

path: 0 25282489, hotness: undefined, score: 4, children: 1
rustbuckett 2 points 6 days ago

I want to make my TCL Roku Smart TV dumb.

path: 0 25277394 25282424, hotness: undefined, score: 2, children: 0
rustbuckett 47 points 2 months ago

I love that their solution is to not use the thing that the data centers are supposed to be for.

path: 0 24525022 24527065, hotness: undefined, score: 47, children: 1
rustbuckett 35 points 2 months ago

"The Civil War was about states' rights!"

Yes. States' rights to own slaves.

path: 0 24317034, hotness: undefined, score: 35, children: 3
rustbuckett 33 points 7 months ago

Or the minutes that I get in early. Or take a short lunch.

path: 0 21913781 21915385, hotness: undefined, score: 33, children: 0
rustbuckett 20 points 2 months ago

Who could have predicted this outcome from a failed Fox personality?

path: 0 24317009, hotness: undefined, score: 20, children: 0
rustbuckett 10 points a month ago

I've used Fabric to summarize the transcriptions. I believe it works with Ollama and local models.

path: 0 24904676, hotness: undefined, score: 10, children: 1
rustbuckett 8 points 5 months ago

He's right. It's just another tool in the hands of a skilled technician. The upgrade from a hammer to a nailgun didn't suddenly make everyone a master carpenter, but in the hands of some that knows how to use it, it can greatly increase productivity. We are in the very early stages of AI, and we are working out the details. While it's not a great comparison, I remember when Windows 95 launched and, when you could find RAM, it was literally worth more than its weight in gold. Small shops had to keep it in a safe. This was because Windows 95 needed at least 8MB ( <- not a typo) of 30 pin SIMM RAM to run well. A couple years later and people were putting them on their keychains as a joke.

path: 0 22631980, hotness: undefined, score: 8, children: 2
rustbuckett 7 points 2 months ago

holy shit that guy is twisted af.

path: 0 24317200, hotness: undefined, score: 7, children: 0
rustbuckett 4 points a month ago

It's not for them, it's for their neighbors.

path: 0 24787535 24794607, hotness: undefined, score: 4, children: 0
rustbuckett 3 points 2 months ago

That's actually what Idiot Flesh did in the 90s. They had one show where the band outnumbered the crowd, so they had the crowd gather in the middle of the venue and they played the show around them.

path: 0 24317146, hotness: undefined, score: 3, children: 1
rustbuckett 2 points 3 years ago

I'd like to figure out that mapping. I do this all the time. I forget I'm in insert mode, try to move the curser with 'j' and just end up typing a bunch of j's that I have to delete.

path: 0 5895469, hotness: undefined, score: 2, children: 0
rustbuckett 2 points 5 months ago

I love the graphic. It is now the wallpaper on my laptop.

path: 0 22632131, hotness: undefined, score: 2, children: 0
rustbuckett 1 point 3 years ago

That's the thing. I forget to switch to normal mode, it just locks up. The default behavior is the backspace in insert mode, but that's not what it's doing. I'll try to remember to post my mappings.

path: 0 5912045 5936101, hotness: undefined, score: 1, children: 0
rustbuckett 1 point 5 months ago

Yeah. I just use Emacs for coding.

path: 0 22604742 22608139 22625874 22632300 22632541 22667508, hotness: undefined, score: 1, children: 0
rustbuckett 1 point 5 months ago

Isn't there a Visual Studio for Linux? Or am I just thinking of Visual Studio Code? I'm not going to pretend that GIMP can do everything that Photoshop can do, but it has come a long way.

path: 0 22604742 22608139 22625874 22632300, hotness: undefined, score: 1, children: 2
rustbuckett 1 point 5 months ago

I do. Supply and demand. Supply hasn't caught up.

path: 0 22631980 22638144 22667534, hotness: undefined, score: 1, children: 0
rustbuckett 1 point 3 years ago

This isn't exactly a fix, but it keeps me from accidentally locking up my terminal and potentially losing work

map('i', '', 'gj', {})
map('i', '', 'gk', {})
map('i', '', '', {})
map('i', '', '', {})
map('n', '', 'j', {})
map('n', '', 'k', {})
map('n', '', 'l', {})
map('n', '', 'h', {})

Now if I forget to leave Insert Mode, the cursor just moves to the left, and C-H in Normal Mode still works as expected.

p.s. I commented the key_bindings in alacritty.yml

path: 0 5943807, hotness: undefined, score: 1, children: 0
rustbuckett 1 point 3 years ago

I think I'm on the trail. According to this post on Reddit, some terminal emulators have trouble passing the correct codes to terminal apps like Neovim. I did manage to break C-H completely, but that's not really helpful. By adding the following keybinds to alacritty.yml, I'm getting Neovim to behave differently, but not as expected.

key_bindings:
  - { key: F6,    mods: Shift,        chars: "\x1b[17~;1u"   }
  - { key: H,     mods: Control,               chars: "\x1b[72;4u"}

The first one for S-F6, gets Neovim to recognize the 'F6' part, but does not behave any differently than if I just pressed 'F6' without the modifier. But, without this key binding in alacritty.yml, Neovim doesn't react to Shift+F6 at all.

The second entry, if I'm in Insert Mode in Neovim, causes Neovim to switch to Normal Mode and go to the top of the buffer. In normal mode, it just goes to the top of the buffer instead of the defined behavior of moving to the pane to the left of the current pane.

So, I've basically managed to get a "different error", but not solve the problem. Any ideas?

path: 0 5943558, hotness: undefined, score: 1, children: 0

thanks for using Leebra!

go to feed...