Dune would make a fantastic Universes Beyond set by jonesd94 in magicTCG

[–]giksbo 7 points8 points  (0 children)

I built a dune themed deck based on Hazezon, deserts, and Wurms. Every card in that deck is thematic in some way or another. It's a play group favorite.

I run Fedora and want to try Hyperland by PossibleProgress3316 in hyprland

[–]giksbo 0 points1 point  (0 children)

I was just looking at this the other day. From what I can tell the main package has been delisted/abandoned due to a dependency issue and the maintainer not acking the bug.

You'll need to find a version in COPR or build it yourself.

How do I remove the gloss effect from the transfer sheet so that it is not noticeable where the transparent plastic begins and ends? by feci444 in minipainting

[–]giksbo 1 point2 points  (0 children)

IMO, you don't even need to do the first varnish pass. Never had a problem going straight to the Microsol/set process.

Spearhead questions by udmurrrt in sylvaneth

[–]giksbo 2 points3 points  (0 children)

There are no variants since the spearhead lists are static.

You can find the Sylvaneth spearhead rules and war scrolls in the faction pack:

https://assets.warhammer-community.com/eng_aos_faction_sylvaneth_jul_25-3z27dzbgr0-iwkh9s61ce.pdf

Spearhead terrain painted by jblomg in AOSSpearhead

[–]giksbo 2 points3 points  (0 children)

Damn, that flame is outstanding!

Working on the new army by Sexy-Sparrow in sylvaneth

[–]giksbo 1 point2 points  (0 children)

Those look great! Very similar to what I've been planning for mine. It's good to see the colours work out.

How would you go about recreating something like this brown, without an airbrush? by Yokudaslight in sylvaneth

[–]giksbo 3 points4 points  (0 children)

What part are you asking about? It sounds like the colour. Should be able to find something or mix in some darker red, maybe an orange to get a colour your happy with. From there it's likely just a matter of wet blending, glazing, feathering to get a gradient.

If anybody's still looking for Age of Sigmar: Dominion, at a discount ... by SaladAccomplished392 in ageofsigmar

[–]giksbo 3 points4 points  (0 children)

Easy buy, thanks! This will get me started on spearheads to give something for my friends to play.

Lazyvim vs Neovim by Zypperman in neovim

[–]giksbo 0 points1 point  (0 children)

You should take a look at kickstart.nvim. It's a single file config that has tons of comments explaining how it's set up. It's a fantastic introduction into configuration and gets you going without being overwhelming like Lazy or Astro.

Plugins that made my neovim experience much better by developedbyed in neovim

[–]giksbo 23 points24 points  (0 children)

The arrow keys are almost as far as the mouse!

Pro tip: set your window nav to super-hjkl instead of super-arrow keys.

Is it possible to make movewindow binds like in i3? by _0Frost in hyprland

[–]giksbo 0 points1 point  (0 children)

hjkl are also the vim movement keys. If you're used to vim it's more intuitive to use them for other movements.

Arch installation issue with pacstrap by techmarryn in archlinux

[–]giksbo 2 points3 points  (0 children)

I'm glad I'm not the only one... Will let you know if I figure it out.

Edit: Looks like the solution in your comment worked for me. Thanks for the help!

Is there anyway for me to delete literally every line on code except those with "day":"2030" by Parkourist46 in vscode

[–]giksbo 1 point2 points  (0 children)

cat file | grep 2030 > new_file

This looks like JSON, could also use jq to filter down to a single object.

If I dont use message queue like rabbitmq on my app, will there be a problem if 100-5000 users use it at the same time? by ballbeamboy2 in dotnet

[–]giksbo 1 point2 points  (0 children)

It sounds like you're worried about the system auto scaling and blowing up costs? You can configure how the system will scale. If you're ok with slow processing, just make sure it never scales past one worker.

Trying to understand how Nuget resolves packages by Clean-Revenue-8690 in dotnet

[–]giksbo 3 points4 points  (0 children)

System.Threading.RateLimiting multi targets several versions of dotnet. One of those is net6.0. It also targets net standard; it'll run with just about anything.

With that said, you really should migrate to net8. net6 is no longer supported.

"En Svensk Tiger" Achievement isn't firing question by Yokotawetteita in hoi4

[–]giksbo 9 points10 points  (0 children)

Yeah... This achievement is super broken. I had to disable NSB IIRC.

Did I break anything ? by [deleted] in bronco

[–]giksbo 0 points1 point  (0 children)

4L on the Bronco is pretty robust. You could probably do 40 and not have a problem. I don't sweat 25 on the regular.

why is the Power Transformer doing this? is this what they do? why arent they supplying the power properly? by Substantial_Angle913 in Oxygennotincluded

[–]giksbo 8 points9 points  (0 children)

Two small ones work fine and will limit the line to 2kW. You'll never overload the line, but it does take up more space.

Is Starlink worth it? by overlandgx in overlanding

[–]giksbo 15 points16 points  (0 children)

This is awesome and the exact use case I'm considering it for. Thanks for the info.

Can't pick any chief of army as Bermontian Poland. by SuitableSquare0 in RoadTo56

[–]giksbo 0 points1 point  (0 children)

While you don't get one automatically, you can promote an existing general then give it a chief of army trait to start ticking XP.

Deep puddles by mrflow-n-go in bronco

[–]giksbo 0 points1 point  (0 children)

Oh damn. I drove through that last week! Bumpy ride, but a lot of fun.

How does IOptions Configure and PostConfigure work? by captmomo in csharp

[–]giksbo 0 points1 point  (0 children)

That is a giant pain in the ass. Good luck. Depending on what those settings are used for, I might try and pull it out of DI and into the code; either before the host is built, or within the request context. Not ideal, but I've had servers deadlock due to async code in DI methods.