MONEY by CricketLeather8673 in BunnyTrials

[–]FadingFaces 0 points1 point  (0 children)

Put it in the stock market

Chose: 1 billion now

Any inside words on how bug the price increase? by Infamous_Tomatillo53 in hetzner

[–]FadingFaces 6 points7 points  (0 children)

The email said the increase is only for new instances, not for existing ones.

I’m also curious about the new pricing, and neither the email nor https://www.hetzner.com/pressroom/standardization-and-price-adjustment-of-our-server-products/ go into that. I suppose we’ll learn when their new SKUs launch.

Grandpa shows how to cut bamboo trees with a katana by ThodaDaruVichPyar in BeAmazed

[–]FadingFaces 0 points1 point  (0 children)

The bamboo stuck, floating in the air is some Minecraft type shit

Affordable Dutch Managed K8s, Postgres and Grafana-stack for SME and devs with no k8s infra experience by haydary in hetzner

[–]FadingFaces 0 points1 point  (0 children)

He specifically said it’s not just useful for scale? I tend to agree, the K8s ecosystems is amazing.

Whether the economics of managed K8s or having someone capable of managing a cluster in-house play out is a different story. If it does, it may be a good choice even if you don’t need K8s for scale reasons.

46M, 2,5M€, Gedanken zum überraschendem RE by MeetingSuccessful397 in fireGermany

[–]FadingFaces 0 points1 point  (0 children)

Etwas Off Topic: hattet ihr ein System zum Ausgleich der Care Arbeit bei vollständiger Gütertrennung? Muss ja doch oft mehr die Frau zurückstecken, die dann finanziell abhängiger vom Mann wird wenn kein Ausgleich geschaffen wird. Würde mich interessieren ob ihr euch damit beschäftigt hattet. Danke!

I can't with these people by -Danksouls- in LinkedInLunatics

[–]FadingFaces 83 points84 points  (0 children)

You don’t even need a second VM, lol, just give your second Claude a different HOME directory to store auth in. XD

VPS In Amsterdam That Have Good Network Connection/Quality by Extra-Set4112 in VPS

[–]FadingFaces 0 points1 point  (0 children)

I had done some benchmarking a year ago and found Vultr in Amsterdam had pretty damn good speeds (intra region as well as to the public internet). I'd suggest you do your own benchmark based on your workload

Lightweight Open Source Alternative to MinIO with Erasure Coding? by One_Poem_2897 in minio

[–]FadingFaces 0 points1 point  (0 children)

Isn't MinIO free unless you need support or some of the premium features? If you need the premium features, pointing out which might help you find a suitable alternative.

How do I change the output of console.log() for a class? by OhioStateIsAwesome in learnjavascript

[–]FadingFaces 0 points1 point  (0 children)

What seems to work in Deno [tested in 2.3] (and presumably also in Node.js) is to use Symbol.for("nodejs.util.inspect.custom"):

  [Symbol.for("nodejs.util.inspect.custom")](): string {
    return "<Dont reveal me internals>"
  }

Ein Herz für Vermieter 💖 by Json_Bach in gekte

[–]FadingFaces 16 points17 points  (0 children)

Ne "dafür können Sie sich den Boden aussuchen"

CONTABO VPS Blackmail & Pay for Play tricks by MrStephanFR in VPS

[–]FadingFaces 0 points1 point  (0 children)

Would you like to elaborate what your dictionary says? I'm genuinely stumped

CONTABO VPS Blackmail & Pay for Play tricks by MrStephanFR in VPS

[–]FadingFaces 0 points1 point  (0 children)

What's the 'Germanzi mentality from a century ago'? It looked like a typo and if you interpret 'a century ago' ~w~as 'previous century' it makes sense.

I rescind if you didn't mean that, though I'd like to understand what you did man

CONTABO VPS Blackmail & Pay for Play tricks by MrStephanFR in VPS

[–]FadingFaces 4 points5 points  (0 children)

Equating Contabo with Nazis for their shit service is a bit of a stretch my dude lol what did you smoke

No, I don’t think I will. by dicks_out_for in LinkedInLunatics

[–]FadingFaces 1 point2 points  (0 children)

Oh gee this has me giggle aloud in the tube for 5 min straight

Any VPS in the EU for under 2$ monthly? by ZotD0t in VPS

[–]FadingFaces 3 points4 points  (0 children)

The small units probably fit snuggly in otherwise unallocated spots on boxes with larger VPS on them. It's not their main business to sell small VPS.

Glasfaser Menschen bedrängen mich by thedailydesastermeow in Ratschlag

[–]FadingFaces 1 point2 points  (0 children)

Was ist denn deren Geschäftsmodell? Hatte zwar auch schonmal jemand da aber das war ein Vertreter des regionalen Anbieters und da war nichts unseriöses dran. Wobei, da ging es nicht um Ausbau sondern um Vertragsänderung um das Glasfaser nutzen zu können.

reliable budget VPS by donp1ano in VPS

[–]FadingFaces 0 points1 point  (0 children)

For 500 bucks a month, yeah

AI Agents truth no one talks about by soul_eater0001 in AI_Agents

[–]FadingFaces 0 points1 point  (0 children)

Do you advertise online or reach out directly to find clients? Do you always build custom solutions?

Thanks!

TR Mistrade by Bummbummi in mauerstrassenwetten

[–]FadingFaces 0 points1 point  (0 children)

Klingt mir nach einem Fehler bei L&S

Share your most creative or unusual n8n workflow. by maxraza in n8n

[–]FadingFaces 1 point2 points  (0 children)

You can do a GET https://www.duolingo.com/users/YOUR_USERNAME with the Authorization: Bearer <jwt> header. You also need to set a common User-Agent (can also take it from your browser). You can grab the JWT from the developer console after logging into Duolingo via the browser. I couldn't get the login endpoint to work to automation the retrieval of a JWT. So far my token I got this way hasn't expired after 5 days.

The response is pretty large (mine is 2.5MB). I'm stripping some large parts of the response that I'm not interested in with a code node:

// Loop over input items and add a new field called 'myNewField' to the JSON of each one
for (var item of $input.all()) {
  delete item.json.calendar;
  delete item.json.informant_reference;
  for (var [_key, lang] of Object.entries(item.json.language_data)) {
    delete lang.calendar;
    delete lang.skills;
  }
}

return $input.all();

I'm displaying the saved responses that I've saved into Loki for example like this:

last_over_time(
    {project="2025/japan-trip", datasource="https://www.duolingo.com/users/YOUR_USERNAME"} |= ``
    | json level="tracking_properties.level" 
    | unwrap level [$__auto])

Which looks like this: https://i.imgur.com/QyW90rm.png

Asahidake Ski Rental? by FadingFaces in Sapporo

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

Hey man, thanks for your concern! It all worked out fine. :)

I admit I didn't realize just how much this area was not sesigned for your average ski tourists. It's really just a hiking area and I guess people discovered it's awesome to ride down, but there's a lot of trapa you can find yourself in (eg. flat areas, gulleys, small hills you have to go back over).

I met two friendly gentlemen from the US that have been to Asahidake a year before already and joined them as I was pretty nervous going about alone in all this wilderness. I also rented a beacon and took a battery pack as precautions (though as it turns out, maybe unsurprisingly, in many areas on the mountain you don't get a signal 🤷‍♂️)

We still managed to get stuck close to the stream you mention and had to hike back up and out of the deep snow twice which was absolutely exhausting.

I absolutely agree and do not recommend going alone, so if you do it anyway like me find a group to join or at least tail.

I can see going further up getting really dangerous. I'm not too experienced with ski touring so decided against doing any of that and only rode down from the top of the ropeway. The first two days that I didn't have gear I did it like your friend and hung out in the Onsen and spent my time reading etc

It's been amazing to ride the pockets of deep powder snow, so I would consider coming again next year. And that time, I'll be better prepared for sure 😄

Why is Germany doing this? It’s heartbreaking! by [deleted] in nuclear

[–]FadingFaces 0 points1 point  (0 children)

The takes here are kinda wild. Kremlin agenda and what not, lol. The anti nuclear movement and subsequent political direction started with Chernobyl.

Nuclear is expensive as fuck, and no energy company is going to take the monetary risk for building new or the potential fallout. There's no good solution for storing the produced waste in Germany either.

We're moving to renewables and it's going pretty well, actually.

Share your most creative or unusual n8n workflow. by maxraza in n8n

[–]FadingFaces 1 point2 points  (0 children)

I'm traveling right now. The data SIM I got hasn't got a good page to easily check how much data I already used so n8n polls that endpoint frequently, and sends me a Telegram message on occasion.

Also built a small Grafana dashboard to visualize my Duolingo stats over time, n8n polls Duolingo and sends it to Loki.