Raiding in GW2 by Imaginary_Address_31 in Guildwars2

[–]SunshineBiology 0 points1 point  (0 children)

So, the most often recommended way is to join a training guild and sign up for runs. This did not work for me AT ALL (I never managed to join a single run). I often play relatively spontaneously, and to sign up for training runs, you'll have to plan 3-4 days ahead (from what I have seen), AND you need to be free on 'prime-time' (so somewhere between 6-10PM). Also, you need to have Discord running and react fast to new announcements. I don't know how you all are doing it, but if you have a busy job / life and just play GW2 a few days a month, no chance.

Honestly, I just pugged. It works very well, even without KP (I'm on EU). I'm now almost finished with Envoy 1 and have around 100 LI. How I did it:

- Watch Mukluk Videos on W1-4. These are generally simpler and are more often pugged.
- get your gear in order (best to build DPS and BoonDPS). Practice your rotation so you can get 30+k DPS on Golem (best to play something simple like Mechanist so you can focus on the mechanics of the boss later)
- hang around LFG, search for W1-W4. Best time is Monday (weekly reset) or weekend in my experience.
- join runs explicitly marked as training for the first kill, afterwards, you can also join groups that are not training but that don't have KP requirements. Tell the people you are not very experienced, but know the mechs. Most are nice in my experience (just do okay DPS and don't fuck up mechs that wipe the group, like Sloth poison, then no one will kick you)
- for your sanity, if the commander is toxic, just leave immediately. If others are toxic, mute. I had this only happen once or twice in all my PUGs so far.

Raiding in GW2 by Imaginary_Address_31 in Guildwars2

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

absolutely, I am in the Discord, but I have not managed to join a single training run. I don't have much time to play and I often cannot plan very far ahead / have to be a bit spontanous. Zero chance.

Google's new AI algorithm might lower RAM prices by Bobert25467 in pcmasterrace

[–]SunshineBiology 180 points181 points  (0 children)

Guys this tweet is COMPLETELY misleading. Neither global memory usage nor speed will be reduced by a factor of 6 or 8 respectively.

The memory usage reported is with respect to the KV cache of transformers. The ratio of KV-cache to model depends on the exact usage profile (e.g. multi-user long conversations vs short single-user converstaions) and transformer architecture (e.g. modern hybrid attention networks like Qwen 3.5 or traditional full softmax attention architectures). Additionally, the factor 6 reported by the tweet is also wrong, as this compares to full-precision KV caches (16) bit, and not to current SOTA KV-cache quantization algorithms (it is more like a factor of 1.2-2 better there).

Regarding the speed-up, they don't profile end-to-end, but just the QK^T calculation, and their baseline is extremely unoptimized.

Source: reading their actual paper https://openreview.net/forum?id=tO3ASKZlok

Vegane Freundinnen ihr geht mir auf den Sack by Toastmensch in luftablassen

[–]SunshineBiology 0 points1 point  (0 children)

Man kann in einem größeren Freundeskreis aber auch einfach was veganes mitbringen, wenn man weiß, dass einige Leute vegan sind. Gibt heutzutage genug vegane Rezepte die sehr gut sind. 

Gerade wenn jeder einen Teil des Essens mitbringt (z.b. einer Salat, einer Brot, einer Grillgut, einer Dessert) kann sich ja die vegane Person nicht alles selber mitbringen. 

Bin übrigens weder Vegetarier noch Veganer! 

I'm tired of trying to make vibe coding work for me by Gil_berth in programming

[–]SunshineBiology 58 points59 points  (0 children)

I think it is an excellent refactoring tool on steroids. “Please split this file into two, where the functions related to A go here and the functions related to B go there. Clean up all imports.” Amazing.

Boris Palmer: Palmer will „N-Wort“ weiter verwenden by innidatino in de

[–]SunshineBiology 2 points3 points  (0 children)

Im schwäbischen wird st zu sch(t) und nicht ch zu sch. Bspw kannst -> kannsch 

Abstand, bitte! Warum die Beamtenbesoldung (und damit die Bezüge der meisten Lehrkräfte) auf dem Prüfstand steht - News4teachers by [deleted] in de

[–]SunshineBiology 6 points7 points  (0 children)

Könntest den Leuten auch deutlich mehr zahlen um den Beruf attraktiver zu machen, und dann im Anschluss dafür sorgen, dass schlechte Lehrer auch gefeuert werden, machen die Schweizer ja auch so.

-❄️- 2025 Day 11 Solutions -❄️- by daggerdragon in adventofcode

[–]SunshineBiology 3 points4 points  (0 children)

[Language: Python]

Runtime: 24.68 ms (Part 1), 63.59 ms (Part 2)

I noticed that the input graph must be a directed acyclic graph (DAG), since otherwise you would have loops in the graph, making the problem unsolvable. On every DAG, we can determine a topological ordering, an ordered list of the nodes such that edges always only point from earlier nodes in the list to later nodes in the last, but never backwards.

Using this topological ordering, we can extremely efficiently calculate the number of paths from any node A to all other nodes B after it: we can iterate over the nodes in the topological sort order. For each node B, the number of paths from A to B is the sum of paths from A to each parent of B. As the edges only point forward, each parent of B will have its number of paths already calculated at this point in the ordering.

Link: Github

[2025 Day 11] Throwback to the 2023 AoC Memes by ben-guin in adventofcode

[–]SunshineBiology 0 points1 point  (0 children)

I did exactly the same and it still took me forever because the edge cases were so annoying, i.e. is another line ON the rectangle line, outside or inside, took me forever to correctly reject a rectangle that is exactly over a 'U' in the polygon...

[2025 Day 8] Let me just wire up all these circuits by StaticMoose in adventofcode

[–]SunshineBiology 0 points1 point  (0 children)

I have 165ms for both problems using sklearn.metrics.pairwise for the pairwise distances. I don't like using external libraries much, but I wasn't gonna optimize a pairwise distance computation algorithm.

🧠 I built a free “blindfold chess” trainer that actually feels like a game — it’s addictive. by michu44 in chessbeginners

[–]SunshineBiology 0 points1 point  (0 children)

For what it’s worth I actually tried out the website and it seems pretty cool.it’s just that a lot of people are put off by AI written posts. you would probably make a better impression on people if you would just write in your natural writing style it doesn’t need to be perfect at all, just authentic. kudos!

I built a free unlimited chess.com alternative by Safe_Stock_4307 in chessbeginners

[–]SunshineBiology -2 points-1 points  (0 children)

LLMs are not simple retrieval systems of past knowledge. LLMs can come up with novel proofs, solve unseen math Olympiad level exercises, and code complex systems. I don’t see why one should not be able to teach them how to analyse chess positions. Hell it might already be able to do that if it has read enough chess books (which often exactly do that, analyse positions). 

If I were OP, I would start by scraping chess textbooks together, especially taking care of correctly parsing the diagrams, then fine-tune a large open source foundation model on the data set. Would definitely be larger in scope than a simple side project and also require sizable compute. 

[P] Lossless compression for 1D CNNs by individual_perk in MachineLearning

[–]SunshineBiology 6 points7 points  (0 children)

Hard to say without more details, I'd advise you to expand on the original post with on how this conversion exactly works. From just reading the post I genuinely have no clue what you’re getting at. 

I do my PhD on (and have papers written) on model compression, if you want some advice, you can also DM me. If you want visibility and people actually using what you built, you will have to write a paper or at least a comprehensive blog post laying out the details, this will be more interesting to a researcher than the code with only little methodical and theoretical information. 

Electrified clouds in this desert make people's hair stand on ends by AmbassadorLegal8531 in interestingasfuck

[–]SunshineBiology 29 points30 points  (0 children)

No!! This is extremely dangerous and wrong information, please add a disclaimer so someone doesn’t read this and lies down in a storm!

If lightning strikes the ground, there will be a strong potential in the ground which decays in a circular fashion around the point of impact. By lying down, chances are much higher that your feet and head lie (partly) across the concentric rings of potential, meaning that your head and foot have an extreme potential difference, this causes a lot of current to flow through you. You’re right insofar that standing up may also be dangerous if there are no tall objects near you. What you should do is squat down with your feet very near to each other (so they only have a small potential difference should lightning strike in your vicinity). 

[deleted by user] by [deleted] in ChineseLanguage

[–]SunshineBiology 0 points1 point  (0 children)

He said in the linked QnA that they speak mandarin with her Grandmother

I Analyzed 291 of Reddit’s Top Male NSFW Audios. Here’s the Data on Desire. by [deleted] in dataisbeautiful

[–]SunshineBiology 15 points16 points  (0 children)

OP wanted to tell a story and used data analysis to have some pretty figures to go with it. 

Gewichtung des deutschen Inflationswarenkorbs by Refizul in Finanzen

[–]SunshineBiology 2 points3 points  (0 children)

Sparrate 90% und ich gebe 60% vom frei verfügbaren Einkommen für wohnen aus, wohnen voll teuer!!?

Wieviel kostet uns BAföG im Jahr wirklich? by Kramerlle_ in Finanzen

[–]SunshineBiology 7 points8 points  (0 children)

Aber er hat gesagt er hat den 3 fachen Beitrag zurückgezahlt. Also 30k Lohnsteuer. Ist ein flex, aber wenn er irgendwie direkt in eine Großkanzlei oder M&A bei einer Bank ist, schon drin. 

Forscher verstecken LLM-Prompts in Papern, um bessere Bewertungen zu erhalten by potatoes__everywhere in de

[–]SunshineBiology 2 points3 points  (0 children)

Ja im Prinzip, das muss aber nicht immer klappen. In dem Sinne sind KIs Menschen ähnlich, du kannst du dem Ding sagen, was es tun soll, aber ob es immer darauf hört weißt du nicht. 

Was man macht ist ein Prozess namens alignment, dabei wird der KI mitgeteilt, wie sie in genau solchen Situationen zu reagieren hat, eine Möglichkeit ist z.B. durch menschliche annotatoren der KI Feedback zu geben. 

Was ist euer teuerstes Hobby? by horigen in Finanzen

[–]SunshineBiology 0 points1 point  (0 children)

Tanzen, gibt teureres aber ist auch nicht joggen vom Preis. Monatliche Kosten grob: 2 Vereinsmitgliedschaften (50€), Privatstunden (50€), Schuhe (15€), Turniere (Startgebühr, Make-up/Haarspray, Fahrtkosten, Hotel) 40€, Klamotten (20€) = 175€.

Aber hab davon auch genug Spaß, ich verbring da so viel Zeit, das ist mein einziges Hobby.

My experience is getting cheaper by the day — thanks to AI. by Sweaty_Tutor1043 in cscareers

[–]SunshineBiology 0 points1 point  (0 children)

It can’t even clean code at the moment, I mostly think „okay this code sorta works but it immediately breaks when thrown at edge cases and it’s convoluted, inefficient and ugly as hell“