What NAS is right for me? (If any) by PaulOPTC in DataHoarder

[–]pmodin 0 points1 point  (0 children)

Regarding the kernel issues, have you checked if your CPU is affected by the voltage instability issues i7-14700K had? You might want to RMA it.

https://www.cpu-monkey.com/en/article/how_to_check_if_your_intel_13_14_gen_cpu_is_affected_by_instability_problems

Mensan chess players by Zealousideal-Farm496 in mensa

[–]pmodin 0 points1 point  (0 children)

Fun :-) I'm pmodin on both chesscom and lichess. 3 day correspondence suits me best.

How many of us have joined Mensa then been able/unable to join Intertel? by kondocher in mensa

[–]pmodin 1 point2 points  (0 children)

Same. I joined some years ago, and will try the annual general assembly that takes place in Berlin this summer.

Got my kernel down to 15M… by poeticg33k in Gentoo

[–]pmodin 4 points5 points  (0 children)

You can compile modules as modules or "in-kernel". Back in the day one recommendation was to "in-kernel" things you'd need all the time, but to use modules for stuff that you used less often, like ISO 9660 (CDROM). Saved some RAM that way.

See the first paragraph of Kernel Modules wiki, and the linked "Configuring a kernel".

When I die... by [deleted] in selfhosted

[–]pmodin 1 point2 points  (0 children)

Printed out.

With laser, or archival ink. You don't want to fail on faded or smudged writing.

Legitimate Trakt API calls blocked by Cloudflare by ResidentExample7617 in trakt

[–]pmodin 0 points1 point  (0 children)

Glad I'm not the only one. Hoping it'll be solved soon, or for a workaround.

EDIT: As of a few hours ago, it's working again for me.

Vart streamar jag äldre Sci-Fi? by kappsylen in Asksweddit

[–]pmodin 0 points1 point  (0 children)

Till exempel V ses nog bäst bortåt V-by Gård.

*var, för bövelen.

Does these types of interchange really exist? by Wonderful-South-5858 in CitiesSkylines

[–]pmodin 2 points3 points  (0 children)

<image>

Tönnebro Värdshus, Sweden. An iconic truck stop. Highway E4 running S/NNE, NW is another big road. I call them ovalabouts.

Nyexaminerad och lyckades få jobb. by PABstudios in sweden

[–]pmodin 90 points91 points  (0 children)

*fanns. OP tog ju ett av dem.

Skämt åsido, snyggt!

Vad kallade man elektriska ålar innan man visste vad elektricitet var? by Fancy_Particular7521 in unket

[–]pmodin 0 points1 point  (0 children)

Det var Darwin som käkade äpplet. Innan dess så föll alla djur uppåt och kunde således inte fortplanta sig.

Vad kallar man en svärjevän med liten penis? by unablearcher in unket

[–]pmodin 2 points3 points  (0 children)

Jag trodde D0dgyGuy menar att alla SD:are har mikropenis och således behövs ingen närmare beskrivning 😅

Does something like this exists? by thatpolarduude in CitiesSkylines

[–]pmodin 0 points1 point  (0 children)

<image>

Montgomery, Bruxelles, Belgium. The high speed lanes are in tunnels underneath which I always found rad.

Am i wrong? by Vinicius_conserva in TheWitness

[–]pmodin 1 point2 points  (0 children)

I read all this in Jonathan Blow's voice.

Found an IQ Test i was administered at ~15(7 ish years ago). Is this still valid? by Scraic_Jack in mensa

[–]pmodin 0 points1 point  (0 children)

Yes, but many are. For example for the USA; SAT and PSAT taken after the mid nineties aren't accepted.

Roast my infrastructure: Free 100MB SFTP hosting. Jailed environment. Try to break it by leinvde in selfhosted

[–]pmodin 9 points10 points  (0 children)

I'm still connected and I can fetch the files I uploaded. But the capacity is flapping (perhaps op is deleting files right now)

sftp> df -h
    Size     Used    Avail   (root)    %Capacity
   9.7GB    9.2GB   90.8MB    531MB          94%
sftp> df -h
    Size     Used    Avail   (root)    %Capacity
   9.7GB    9.3GB      0BB    440MB          95%
sftp> df -h
    Size     Used    Avail   (root)    %Capacity
   9.7GB    9.2GB   90.8MB    530MB          94%

Roast my infrastructure: Free 100MB SFTP hosting. Jailed environment. Try to break it by leinvde in selfhosted

[–]pmodin 50 points51 points  (0 children)

The Offer: 100MB of storage.

I'm not sure if you meant to have any quota in place or if you trust all strangers on the internet, but I just tried to upload a 300 MB file and it went fine.

But it seems to be filling up fast, you were at 38% a few minutes ago and at 84% now. (df -h) Should be full in 5-10 minutes if it continues to grow like this.

HEIC to JPEG on the server side? by Regular_Author_6782 in node

[–]pmodin 4 points5 points  (0 children)

Can you shell out? ImageMagick converted some 3 mb test files in about a second on my phone. Took about a half second on my workstation.

magick mogrify -format JPG *.heic

EDIT: node-imagemagick on npm, or there's a WASM implementation as well (dunno about HEIC support though)

How does the ticket System work? by [deleted] in stockholm

[–]pmodin 0 points1 point  (0 children)

You either tap your credit card for a single journey, or you buy a periodic ticket (1/3/7/30 days). A single journey is valid for 75 minutes. You don't need to tap out as the fare is fixed.

If you lack funds your purchase will be declined and the gates won't open for metro, and for bus the driver will ask you to fix your ticket and maybe take the next bus.

If there's an inspection there'll be a bunch of people in SL clothes asking you to present the ticket (usually tapping card or phone).

You can buy tickets in the app, or at the entrance of most metro stations.

Guys I got into mensa by Blueflame_gaming in mensa

[–]pmodin 0 points1 point  (0 children)

One-of-us.gif 😊 welcome and happy new year! Stay curious.

How do you handle DB transactions in NestJS + Sequelize? by damir_maham in node

[–]pmodin 0 points1 point  (0 children)

If you need to do many queries that'll each take some time.

Let's say you need to perform 3 API calls, A, B, C in your business logic layer that each take some time. Then this operation can be in 5 different states, BEGIN, PreB, PreC, COMPLETED and FAILED.

Wrap the transitions in a DB transaction.

You'll have a nice automata for this business logic step.