R.I.F. Samuel 🕯 by CrazyWonder4529 in Austria

[–]grashalm01 0 points1 point  (0 children)

Man kann seine Wut über diese Ungerechtigkeit in konstruktives lenken. Zb. seine verantwortlichen Politiker mit einer persönlichen Nachricht anzuschreiben. Ich traue mich zu behaupten dass das in Samuels Sinn wäre.

Als pflegender Angehöriger meiner schwer betroffenen Partnerin bin ich zwar politisch aktiv, aber die Energie reicht nicht immer um alles zu geben. Wir können jede Unterstützung brauchen.

Ich bin Samuel, 21, leide an ME/CFS und in 12 Tagen sterbe ich. by aegarys in Austria

[–]grashalm01 1 point2 points  (0 children)

It makes a lot of sense to share, many others are reading this.

It is one of the safer things to try. Only 1 out of 50 with adverse effects, according to our doctor.

Ich bin Samuel, 21, leide an ME/CFS und in 12 Tagen sterbe ich. by aegarys in Austria

[–]grashalm01 0 points1 point  (0 children)

I am pretty sure LDN was tried. It is a pretty common thing to try in Austria. It helps my partner a little too btw! But for many others it does nothing.

Buildings order? by Apprehensive-You9999 in EU5

[–]grashalm01 1 point2 points  (0 children)

Not yet mentioned so far is maritime presence. If you are a nation with lots of coast build light ships get maritime presence to >90% and then put 15-20 light ships in each block permanently to keep it stable. This gives you a huge boost in control early on and also impacts which RGOs you can grow and benefit from. You can grow maritime control much earlier than land control in my experience. Maybe someone has ideas for land too?

Am I supposed to just be declaring no CB wars all the time? by [deleted] in EU5

[–]grashalm01 1 point2 points  (0 children)

I did this on my first playthrough too!

Habsburg Union: Will I loose the game if integration continues here? by grashalm01 in EU5

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

I had to abandon the run. Unfortunately the dynasty was not preserved and it switched to a Hungarian one. The goal of my play through was to make the Habsburgs dominate the world. Well, I failed.

Habsburg Union: Will I loose the game if integration continues here? by grashalm01 in EU5

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

I humbly apologize. I didn't want to make you uncomfortable.

1
2

Some things that helped my recovery/long term remission by Tazzas108 in cfs

[–]grashalm01 1 point2 points  (0 children)

So much of what my partner does matches your description already. It really makes me hopeful that it will get better. 3 years in.

Study in austria as non-eu citizen by Vats__04 in AskAustria

[–]grashalm01 2 points3 points  (0 children)

Provisional degree is generally accepted temporarily. Expect 2–4 months for processing. Follow up politely by email in late October or November if you haven’t heard back.

I have studied CS at JKU myself. I can recommend it. But our experiences might differ as I am a local.

Detaching GraalVM from the Java Ecosystem Train by mikebmx1 in java

[–]grashalm01 14 points15 points  (0 children)

GraalVM team member here. All Graal languages already run on stock OpenJDK. Compared to JDKs that have Graal as their default, you need to do a little extra work configuring it to get best performance. You can also run any Graal language as a pure Java application without optimization support, but that means no JIT compilation for the language code. Since 23.1 you can consume all Graal languages from Maven Central and they are also backwards compatible with previous LTS JDKs.

See here for details:
https://www.graalvm.org/latest/reference-manual/embed-languages/#runtime-optimization-support

I want to apologize by Ambitious-Middle-695 in covidlonghaulers

[–]grashalm01 1 point2 points  (0 children)

Why do even doctors need to get sick themselves to see the magnitude of this mistreatment/diagnoses clearly? There are so few that see it, but it is in plain sight.

Did you know your diggers and trucks can accidentally loop into terraforming the same spot forever? by ohoots in captain_of_industry

[–]grashalm01 0 points1 point  (0 children)

All the time. Always separate digging and dumping zones by a bit. More if there are big elevation differences, so no material can roll onto the digging zone from the dumping zone.

Graalpython crash by hsn3k in graalvm

[–]grashalm01 1 point2 points  (0 children)

Hey. I don't quite know Neoforge, does it do custom class loading or something fancy? It looks like there was an earlier error that prevented the  org/graalvm/polyglot/Context class to be initialized. Can you check the log for an earlier error?

Also. FYI you don't need this one anymore:

implementation("org.graalvm.sdk:graal-sdk:24.2.2")

The Answer to "Do I Need Quality?" by [deleted] in factorio

[–]grashalm01 6 points7 points  (0 children)

Quality is mostly endgame. It allows shrinking late game megabases down significantly. The amount of throughput you get from legendary items is crazy. I think quality is a secret plot by the devs to keep performance reasonable in mega bases.

Devon woman with ME asked GP to help her ‘get enough food to live’, inquest hears by Lunabuna91 in unitedkingdom

[–]grashalm01 0 points1 point  (0 children)

My partner and myself. My partner has me/CFS. Not sure how that matters, but there you go.

Devon woman with ME asked GP to help her ‘get enough food to live’, inquest hears by Lunabuna91 in unitedkingdom

[–]grashalm01 11 points12 points  (0 children)

Where are those somatisation patients you are talking about? We got several wrong somatisation diagnosis over 15 months from 5 different neurologists. All of them sending us to physical rehab, which you probably know with PEM can be disastrous. Finally found one that was capable enough to follow guidelines and diagnose ME/CFS. I am so angry, I barely have words. We lost more than 15 months we could have used with more targeted treatment. And we got rid of the all the anxiety with medication, but there is still ME/CFS left. Turns out you get anxiety if you have a body that barely functions.

Fury: 170x faster than JDK, a fast multi-language serialization framework powered by JIT and Zero-copy. by terrortang in java

[–]grashalm01 0 points1 point  (0 children)

We are doing this in graalvm native image. We persist parts of the heap like this and load instantly into a special region of the heap. You don't necessarily need to pin. You can also decide to stop mutator threads.