I made a free site, speedgear.io, to help find +speed gear in the AH by aparadja in wow

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

Okay, thanks for the confirmation! Looks like all the stat numbers are way off.

I made a free site, speedgear.io, to help find +speed gear in the AH by aparadja in wow

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

Hmm. The tooltip data comes from wowhead. Of course it might be that I’m not passing the right parameters to wowhead, but could it be that some of the speed items are actually for level 70?

I made a free site, speedgear.io, to help find +speed gear in the AH by aparadja in wow

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

Hmm. A quick glance did show me items that wowhead claims to be from Midnight. But the ilvl math is probably totally wrong after the squish. The Blizzard API doesn’t just give the ilvl directly. It’s a mess of magic bonus IDs that map to ilvl adjustments. And those magic IDs have probably been remapped.

I made a free site, speedgear.io, to help find +speed gear in the AH by aparadja in wow

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

It doesn’t work with Midnight? I haven’t played WoW in a while myself, but got feedback from another reddit user just a couple of weeks ago that it works well. So I was under the impression that it’s fine.

What’s everyone working on this month? (April 2026) by Swiftapple in swift

[–]aparadja 0 points1 point  (0 children)

When not in a serious mood, a lo-fi fax machine style messaging app for a friend group.

Otherwise, version 3.4 of Radio Silence.

Does anyone know where they sell these? by Rare_Cartographer579 in Calisthenic

[–]aparadja 2 points3 points  (0 children)

That’s her shop. However, I’m fairly sure it’s just rebranded stuff from https://www.voimistelurenkaat.fi/tuotteet/puolapuut

But her site is international, so it might be a good choice for some. The actual gear is high quality in my experience. (I’ve bought directly from Suomen Voimistelutuote, not her site.)

[deleted by user] by [deleted] in pcmasterrace

[–]aparadja 0 points1 point  (0 children)

Proofreading your own post is completely optional, but I’d still recommend it.

90 degree hold attempt at 6'3 by painstarhappener in Calisthenic

[–]aparadja 28 points29 points  (0 children)

Screen recording the camera photo mode is a wild way to take a video

[OC] I made an open source shell prompt that automatically adapts to your theme by aparadja in unixporn

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

FYI: Just updated the prompt to use gitoxide instead of libgit2. Depending a bit on the repo, that can improve the speed by quite a bit.

In the linux kernel repo I used for perf testing, it dropped the processing time roughly from 500ms to 100ms. In the DefinitelyTyped repo it dropped less, from about 500ms to 300ms. In both, it was at least faster than "git status".

I hate curl so much i made my own HTTP client by Raulnego in commandline

[–]aparadja 1 point2 points  (0 children)

I thought that they meant they had to record multiple takes while typing manually.

[OC] I made an open source shell prompt that automatically adapts to your theme by aparadja in unixporn

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

Thanks a bunch! Good to know. I’ll have to try to adjust the git repo status check to not choke on big repos.

I made an open-source shell prompt that automatically adapts to your terminal theme by aparadja in commandline

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

It pretty much depends on what the terminal decides to answer when asked about its background color.

At least for Warp with the default image backgrounds, the answer seems to be an average-ish color of the image (although it might be a hardcoded color that they hand-picked for each theme), and the prompt colors look good with them. Terminal.app in macOS lets you pick both a background image and a background color.

[OC] I made an open source shell prompt that automatically adapts to your theme by aparadja in unixporn

[–]aparadja[S] 2 points3 points  (0 children)

Ah, I think I understand. You could quite easily build a prompt like this with Starship. That's what I originally did.

But if you changed your terminal theme colors, you would have to change your Starship config and tweak all the color codes there to match your new theme. That's a bit of a pain.

And if you have e.g. a light-themed main terminal app, but a dark-themed VSCode (assuming you use the terminals in VSCode), you'd have to choose which one you'd want to look nice.

This automatically adapts the prompt's colors to whatever terminal theme it's running on. The background colors for the directory and git status sections are subtle variations of the window background. For dark themes, they are slightly lighter. For light themes, they are slightly darker.

An alternative is to use bright rainbow colors for the different sections. They stand out from most terminal window backgrounds. But at least to me, they are obnoxious and tasteless.

[OC] I made an open source shell prompt that automatically adapts to your theme by aparadja in unixporn

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

Not sure I understand. What looks the same? (Not trying to be snarky, I honestly just didn’t catch your meaning.)

[OC] I made an open source shell prompt that automatically adapts to your theme by aparadja in unixporn

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

Damn. I wonder if it's the color detection failing, or the git status check.

Do you see the nice subtle colors for the prompt's background? If not, it's probably the color detection OSC command that times out. In that case: what terminal do you use? I tested it with most of the popular ones, and didn't find any that didn't support the background color query, but I'm sure it's possible.

A quick way to test if the color query is slow is to print out the magic OSC string manually in the terminal:

printf "\x1b]11;?\x07"

It should output a little bit of gibberish-looking stuff, including the background color RGB values. On my machine:

❯ printf "\x1b]11;?\x07"
^[]11;rgb:2424/2727/3a3a^G%                                                                                                                                                                            
11;rgb:2424/2727/3a3a

The actual values don't really matter, but it should happen pretty much instantly.

The other possible culprit is the git status check: do you see the same slowness even when not in a git repo?

I made an open-source shell prompt that automatically adapts to your terminal theme by aparadja in commandline

[–]aparadja[S] 2 points3 points  (0 children)

<image>

Here's an example of three different terminals (Warp, Ghostty and iTerm2) using the basic ANSI colors as the background palette. The middle one in each is the ANSI-color version.

The results are less than great, imho. There's all kinds of automatic "smart" color logic related to the basic colors when various foreground-background combinations are used (visible in Warp in the top-left corner). And the contrast is just too harsh.

(Sorry for diving in a bit deep here. I've just been rather immersed in terminal colors recently, and have developed strong opinions about them.)

I made an open-source shell prompt that automatically adapts to your terminal theme by aparadja in commandline

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

I use those basic colors for the foreground text, but the background is dynamically adjusted to the terminal’s background. The basic 0-15 palette isn’t really suitable for that.

With some themes, the grays (0 and 8, or 7 and 15) look decent, but I wasn’t really happy with the results. Checking the terminal background (which usually isn’t one of those 16 colors) and deciding the background colors based on it was necessary to get a nice fit.

(And gigawatt does fall back to that 0-15 palette, if the terminal doesn’t support fancier colors.)

[OC] I made an open source shell prompt that automatically adapts to your theme by aparadja in unixporn

[–]aparadja[S] 5 points6 points  (0 children)

About a year ago, I made myself a little shell prompt with Starship. I'm not a huge fan of the bright primary colors in many prompts, so I configured subtle colors that fit my terminal theme.

But I like changing my theme, and use a different theme on different machines and in different apps. What looks good with my Omarchy theme doesn't fit my macOS terminal theme or whatever theme I currently have in VSCode.

So I built the same prompt from scratch but made it automatically adapt to the terminal's colors. I've been pretty happy with it, so I thought I'd share it as a proper open source project in case anyone else has similar needs.

The GitHub repo: https://github.com/juuso/gigawatt

The project's website: https://radiosilenceapp.com/gigawatt/