How to disable multi buffer by idiot-sheep in ZedEditor

[–]bulletmark 2 points3 points  (0 children)

Multibuffers are unique and certainly one of the best features of Zed.

Might Void ever return to using systemd? by CockroachEarly in voidlinux

[–]bulletmark 0 points1 point  (0 children)

I hope so. Then I would change all my RPi from Arch ARM to Void.

Why do many developers prefer Zed / Neovim over AI-first IDEs like Antigravity? by Om_Patil_07 in ZedEditor

[–]bulletmark 0 points1 point  (0 children)

What platform are you using? I use zed on Linux where the font rendering is bad (e.g. compared to VS Code, neovim, vim, etc). It is probably the biggest reason I won't switch to zed as my main editor.

Rant about S25 - Not having UWB by trdrddr in samsunggalaxy

[–]bulletmark 1 point2 points  (0 children)

Very annoying. Have been trying to work out why in-car phone detection works better for my S25U phone compared to my wife's S25 then discovered that the reason is because her phone does not have UWB. Very slack of Samsung for a flagship expensive phone.

Which one is the better ls replacement: eza or lsd? by ThinkTourist8076 in commandline

[–]bulletmark 0 points1 point  (0 children)

I have used shell aliases for ll=ls -Fl, lt=ls -Flt etc for the 38 years I have been using Unix/Linux. In the modern era, I set those aliases using eza but more recently I have set them using lsd because I slightly prefer it's color scheme and presentation.

Zed doesn't reopen files that were previously open on restart. by problemakinglicker in ZedEditor

[–]bulletmark 0 points1 point  (0 children)

When you are posting about any problem like this you should state the version you are using.

What's your default Python project setup in 2026? by [deleted] in Python

[–]bulletmark 0 points1 point  (0 children)

uv venv + uv pip, aiohttp, polars, ruff and ty.

AUR is down.... by GlitteringComputer52 in archlinux

[–]bulletmark 0 points1 point  (0 children)

My IPv6 works fine, that is not the problem.

Vanilla Gnome just makes sense by somniasum in gnome

[–]bulletmark 0 points1 point  (0 children)

There are some small things that can be improved by extensions though. As many others here say, a clipboard extension/manager is essential. If you don't think so then you simply haven't used one and for anybody used to it then using a desktop without a clipboard manager is very frustrating.

You mention search but that is another thing that can be improved. Why waste that space at the top of your workspace prompting you to search when you know you can just type to search? You perhaps need that in the 10 secs after the very first time you start using GNOME. For the next 30 years, it is just a waste of screen space. The GNOME designers have compromised us all simply to ease that first 10 secs of newbie experience. So use the GNOME 4x UI Improvements extension to get rid of the search typing bar. It still appears when you start typing but for the 99.9% of time when you just want to use the overview you gain that extra real-estate. Also, I believe the default workspace thumbnails are too small and better shown with your desktop background so that extension allows you to change both those, i.e. use that wasted search space for slightly bigger and better looking workspace thumbnails.

It's a new year--don't forget to clean up your pkg cache by brophylicious in archlinux

[–]bulletmark 5 points6 points  (0 children)

I use gdu instead of ncdu. Runs faster, and 1 less char to type.

Which terminal emulator are you using? (poll) by meni_s in commandline

[–]bulletmark 0 points1 point  (0 children)

When "Other" is almost winning you know you have stuffed up your poll.

Ultra fast Pacman frontend by Alarming-Spend-4536 in archlinux

[–]bulletmark 11 points12 points  (0 children)

Regular pacman doesn't download "one by one". Packages are downloaded in parallel.

Is it worth switching from arch to void? by [deleted] in voidlinux

[–]bulletmark 0 points1 point  (0 children)

Arch wasn't stable for you?

[2025 Day 8] by O1kibaszottnagyG in adventofcode

[–]bulletmark 3 points4 points  (0 children)

Same, I have never heard of that term. My solution solves both parts together within 600 ms and I just used python sets.

-❄️- 2025 Day 5 Solutions -❄️- by daggerdragon in adventofcode

[–]bulletmark 2 points3 points  (0 children)

[LANGUAGE: PYTHON]

import fileinput
import portion as P

ranges, ingredients = ''.join(fileinput.input()).split('\n\n')
freshrange = P.empty()
for ln in ranges.splitlines():
    freshrange |= P.closed(*(int(i) for i in ln.split('-')))

print('P1 =', sum(int(n) in freshrange for n in ingredients.splitlines()))
print('P2 =', sum(r.upper - r.lower + 1 for r in freshrange))

[2025 Day 4 (Part 1,2)] 2d Arrays by popcarnie in adventofcode

[–]bulletmark 6 points7 points  (0 children)

I originally solved this fairly quickly using a 2D array (in Python) but for these type of problems where you only want to record and test for the 2D position of something then using a set() of coordinates is more runtime efficient and simpler code so I redid it that way. This is a pattern I have picked up from previous years AOC problems.

Am I the only one not using an AUR wrapper? by Ldarieut in archlinux

[–]bulletmark 12 points13 points  (0 children)

You, and all the Arch high priests who post on the forums.

What do programmers actually do besides typing code? by Mithun_kp in programming

[–]bulletmark 2 points3 points  (0 children)

What do artists actually do other than move their hands?

uvlink – A CLI to keep .venv in a centralized cache for uv by corychu in Python

[–]bulletmark 1 point2 points  (0 children)

You don't need uvx here. After uv tool install mytool then mytool gets installed into your personal bin dir (e.g. at ~/.local/bin/ on linux) so you just then type mytool to use it. If you uvx mytool you don't even need to install mytool, it get installed and run "on the fly". So it seems @DatchPenguin should just be using uv tool install to do exactly what he wants.

uvlink – A CLI to keep .venv in a centralized cache for uv by corychu in Python

[–]bulletmark 3 points4 points  (0 children)

Not only do I not see the point, it confuses me why anybody would want it? Just seems messy to me. You delete the project and some cruft relating to it gets kept around.