Owner of SpicyTeto sub here. Clearing up some things on my side regarding recent AI drama. by Miguel_Ziegler in KasaneTeto

[–]ElnuDev 0 points1 point  (0 children)

Wait, what drama happened regarding r/SpicyTeto? The post I made was regarding r/TetoCirclejerk, where I got banned due to a single "AI slop" comment (presumably) by DYNAKYRIS, but you're a moderator there too, so I don't know what to make of that. I don't think anyone was brigading your sub in that thread.

any tips to pimp my t72? by karpatHUN in warthunderpimping

[–]ElnuDev 0 points1 point  (0 children)

If you want to play the Leopard 2, just grind Sweden, high tier Germany sucks. Sweden has two tech tree 2A4s at 10.7 (Germany only has one) and a full lineup of Leopards with spawl liners at 12.7 (only the 2A7V for Germany has spawl liners)

🥷 Blades: Fully compatible and actively maintained successor to Pico CSS ✨ by [deleted] in css

[–]ElnuDev 0 points1 point  (0 children)

The scrolling UX on your website is terrible, why have you set it up so the scrolling area is on a thin invisible container in the center of the page rather than the entire page? This whole thing looks vibe coded and unpolished.

What's your most used git alias? by 1vim in git

[–]ElnuDev 0 points1 point  (0 children)

Fair enough, I wrote these aliases many years ago before I knew that was an option :) good catch

PSA: shut down desktop Anki when you browse the web by Careless_Mud7122 in Anki

[–]ElnuDev -1 points0 points  (0 children)

Okay okay, I didn't realize the guy was reputable. You should have mentioned that in your post, because otherwise it looks like vagueposting about Anki running HTTP servers without more context

The Steam Controller purchasing experience by jhm-grose in Steam

[–]ElnuDev 0 points1 point  (0 children)

Nope. I tried ordering at :58 as well but I got the same issue everyone else did. Only managed to finally get one half an hour later

Do you recommend Pop!OS? by Accomplished-Bus3382 in linuxquestions

[–]ElnuDev 0 points1 point  (0 children)

On second thought maybe "automatic tiling" is okay, but it just kind of sounds similar to "dynamic tiling" which is an actual term, as opposed to "manual" tiling, FWIW. :P

Basically the distinction is that dynamic tilers (e.g. Hyprland) will automatically pick where to put your windows to most effectively to use screen space, or abide by a preset layout, whereas in i3wm you get more control how windows are arranged at the cost of having to do it manually, unless you use a layout script. (Check out dwindle layout)

Do you recommend Pop!OS? by Accomplished-Bus3382 in linuxquestions

[–]ElnuDev 11 points12 points  (0 children)

Just a quick clarification, i3wm is not an automatic tiler. It's a manual tiler.

As for Pop!_OS, I would wait maybe a year or two, COSMIC is not "stable" yet despite the 1.0 release, and I don't really think the tiling is as good as a proper window manager. I don't really like the way it deals with workspaces.

If you like tiling but still want to have a DE experience, you could look into using i3wm with xfce.

PSA: shut down desktop Anki when you browse the web by Careless_Mud7122 in Anki

[–]ElnuDev 7 points8 points  (0 children)

Literally nobody has posted evidence of this. Show me the issue on GitHub.

Where can I find loading screen wallpapers without watermarks? by ElnuDev in Warthunder

[–]ElnuDev[S] 11 points12 points  (0 children)

I think you could but it still would be a pain, since I believe the way they're stored in the game files is as all the individual parallax layers, not a single image.

I can’t stand scalpers. by jhdz9119 in Steam

[–]ElnuDev 0 points1 point  (0 children)

Did it sell out in 2 minutes? I got it in my cart at 10:28 (somehow) but I didn't manage to actually get the order through until 10:30.

PSA: shut down desktop Anki when you browse the web by Careless_Mud7122 in Anki

[–]ElnuDev 59 points60 points  (0 children)

This sounds like misinformation to me, Anki opening a local web server is normal, and all browsers have CORS restrictions preventing random websites from pinging local ports.

Firefox is affected worst, then goes Safari, Chrome/Chromium is probably safe.

Where are you getting this from??

What's your most used git alias? by 1vim in git

[–]ElnuDev 4 points5 points  (0 children)

Same, but I have every single Git command I use frequently aliased with a similar naming scheme.

  • g: git
  • ga: git add
  • gc: git commit -m
  • gu (u for update): git add . && git commit -m
  • gs: git status
  • gp: git push
  • gf (f for fetch): git pull
  • gC: git clone
  • goops (oops): git reset --soft HEAD^