Details
Joined devRant on 7/15/2022
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API

From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Sometimes we are ping pong balls being smashed from one side to the other. This is me, I'm currently studying a technology. Oops! Change of assignments! Plz study new tech! Ok thanks for the constant context-switching.5
-
@retoor I did it I FUCKING DID IT. I CRACKED THE COWDZ.
HAVEN'T SLEPT IN ALMOST THREE DAYS.
BUT I FED THIS TO A LOBOTOMIZED BOTII.
IT WAS ABLE TO RUN MY RULESET.
WELL, A VERY LIMITED VERSION.
BUT STILL.
PRO VIBES-ORIENTED PROGRAMMING.
IN MARKDOWN.
PSEUDOMARKDOWN.
what?
WHAT??!!!!
OH YEAH.
BEHOOOOOLLLD THE POWER OF CRACK:
```
# Definition of Basic Terms:
- Actor;
· * "An Actor is a character or entity actively or passively participating in the game";
- Action:
· * "An Action is whatever an Actor does during their turn";
· * **IMPORTANT: "In addition to taking an Action during their own turn, an Actor can opt to prepare a Re-Action to activate during another Actor's turn, *if* they have enough SP/MP to do so"**;
- Signa:
· * "A Signa is an in-game effect that describes an Actor's Actions and Re-Actions";
· * "In-game effects can only alter values within the Actor->Status dict";
· * Signa->Caster = the Actor that activated the Signa;
· * Signa->Target = the Actor that is affected by the Signa;
· * **IMPORTANT: "A Signa can be cast 'OnSelf', that is, the Caster can choose to cause the effect on themselves"**;
---
# Actor Attributes:
- Actor->ReadOnly:
· * **IMPORTANT: "ReadOnly attributes represent an Actor's natural advantages and cannot be changed through in-game effects"**;
· * **IMPORTANT: "The purpose of these immutable attributes is determining the base values for game formulas"**;
· * "Actor->ReadOnly is a (key=>value) dict that stores the Actor's innate and immutable attributes";
· * **IMPORTANT: "These bonuses are fixed and cannot be altered by in-game effects"**;
· * "Each key corresponds to a specific game formula";
· * "Each value is a constant signed integer that represents a modifier for the associated formula";
- Actor->Grit:
· * Actor->ReadOnly->{"HP->Max"} = 8+(Actor->Grit*2);
· * "Actor->HP->Regen is not affected by Grit";
· * Actor->ReadOnly->{"Strength"} = Actor->Grit*1;
· * Actor->ReadOnly->{"Resist"} = Actor->Grit*1;
- Actor->Wit:
· * Actor->ReadOnly->{"MP->Max"} = 4+(Actor->Wit*2);
· * "Actor->MP->Regen is not affected by Wit";
· * Actor->ReadOnly->{"Intelligence"} = Actor->Wit*1;
· * Actor->ReadOnly->{"Dexterity"} = Actor->Wit*1;
- Actor->Charm:
· * Actor->ReadOnly->{"SP->Max"} = 1+(Actor->Charm*1);
· * Actor->ReadOnly->{"Perception"} = Actor->Charm*2;
· * Actor->ReadOnly->{"Charisma"} = Actor->Charm*2;
- Actor->Spirit:
· * Actor->ReadOnly->{"Arcana"} = Actor->Spirit*2;
- Actor->Faith:
· * Actor->ReadOnly->{"Defend"} = Actor->Faith*1;
· * Actor->ReadOnly->{"Heal"} = Actor->Faith*1;
· * Actor->ReadOnly->{"Bless"} = Actor->Faith*1;
- Actor->Hatred:
· * Actor->ReadOnly->{"Damage"} = Actor->Hatred*1;
· * Actor->ReadOnly->{"Curse"} = Actor->Hatred*1;
---
# Diceroll Definition:
- rand:
· * "A pseudo-random number between 0 and 0.99";
- roll->dX:
· * roll->dX = truncate (rand*X);
---
# Basic Formulas:
- Actor->Status:
· * "Actor->Status is a (key=>value) dict that stores the Actor's current status effects";
· * "These bonuses are temporary and can be altered by in-game effects";
· * "Each key corresponds to a specific game formula";
· * "Each value is a signed integer that represents a modifier for the associated formula";
- Actor->Damage:
· * let base = roll->d4;
· * let X = Actor->ReadOnly->{"Damage"};
· * let Y = Actor->Status->{"Damage"};
· * Actor->Damage = base+(X+Y);
· * "Result can be negative if (X+Y) is less than -base";
---
# Regeneration Rates:
- Actor->HP->Regen:
· * const base = 0;
· * let X = Actor->Status->{"HP->Regen"};
· * Actor->HP->Regen = base+X;
· * "Result can be negative if X is less than 0";
- Actor->MP->Regen:
· * const base = 1;
· * let X = Actor->Status->{"MP->Regen"};
· * Actor->MP->Regen = base+X;
· * "Result can be negative if X is less than -1";
- Actor->SP->Regen:
· * let base = Actor->Status->{"SP->Max"};
· * let X = Actor->Status->{"SP->Regen"};
· * Actor->SP->Regen = base+X;
· * "Result can be negative if X is less than -base";
---
# Default Signas:
- Movement (Signa):
· * Movement->Cost->SP = 1;
· * Movement->Cost->MP = 0;
· * Movement->Duration = 1 turn;
· * Movement->AreaOfEffect = 4 tiles;
· * "Allows the Caster to move the target up to 4 tiles distance";
· * **IMPORTANT: "This Signa does not allow the Caster to avoid obstacles"**;
- Attack (Signa):
· * Attack->Cost->SP = 1;
· * Attack->Cost->MP = 0;
· * Attack->Duration = 1 turn;
· * Attack->AreaOfEffect = 1 tile;
· * let dst = Attack->Target;
· * let src = Attack->Caster;
· * dst->HP->Current -= src->Damage;
· * **IMPORTANT: "This Signa never misses"**;
```14 -
So a question.
I remember a news article recently urging all people to use python and rust and the like because of memory safety.....
somewhere way back whenever this bs was.
so a few times now I had chatgpt generate me a status window script because it was a one use thing just so I could see how far along a near 500 gb download was to finished.
and it repeatedly caused my machine to freeze from an unknown source of memory leakage as it gradually built up a ridiculous amount of overhead at a rate much faster than it should jhave from the few references and bits of scalar data that it was accumulating.
I know its means something else...
but its kind of funny just the same :P
my system crashed from what is supposed to be a managed language right ? exceptions and stack traces etc ?16 -
So im a frontend developer. Yet i get an issue on my plate regarding a 504 error. Maybe i should ask whst css file this is part of. My god im looking into this for over an hour now…8
-
I'm slowly but surely make my KDE Debian's UX better than what I was familiar with on macOS. It's already _way_ faster.
When I'll get UX done, I'll get to UI -- all kinds of beautification
pro tip: AI is VERY good at configuring linux for you4 -
Is Mobile Application development still trending? Why are you not using cloud based platforms Why do you have to download the APKs and keep bursting your storage ?, by using it, you get an instant preview of your app in the browser.I wanna know the reality! But instead you go for cheaposss like diawi, Like whyyy ? ?????6
-
What is your longest remote desktop chain. Mine is currently at five!
HomePC-WorkPC-JumpStation-FARM3-OperatingPanel7 -
I made an Ollama hub where you can share your Ollama resources with others to be used.
Long story, see https://ollama.molodetz.nl for information.
Uses of the API can just use their default api clients! For security people can only call chat completions api on the shared resources. Content gets validated before forwarded to your Ollama instance if you're a host.
I hope you guys like this concept. Donate your server!
See model availability here: https://ollama.molodetz.nl/models3 -
my phone bill is more expensive some reason. which is strange because that's illegal to do
they're like if you want to see bill details log in. ok I did. I see nothing mentioning it. check my last few bills emails. it's been 5$ more expensive since the new year.
actually I have a 1gb data plan and if I Google up good mobile plans this exact same provider is advertised as giving you 60gb data for 45$. I used to pay 47$ for 1 GB but now I'm paying 52$ for 1 GB it seems
yeah I think I'm going to go with a different company. I literally don't even use my phone unless the power goes out or something. I don't even want to be paying 50$ for something I'm not using. maybe you shouldn't have tried to illegally increase my pricing and then you could've kept me paying. dunno. byyyee6 -
Using chatpgt as my "rubber duck" has greatly improved the time it takes me to develop solutions. Ive been working at a small startup as the full stack dev; aka the entire IT team dev so having someone to 'talk' to that talks back really helps.
but damn, the way openAI brushes off where they get their training data and having so many artist friends IRL (painters, digital artists and musicians) really makes me hate what we have AI/ML doing for us.
seeing it used for the arts makes me feel so depressed because im reminded that big corpos really just want to make money for the investors.10 -
KDE Plasma can't into animations. I mean they can be beautiful, but they are immediately preceded, as well as followed, by ~200ms of all sorts of flashing visual fuckery that completely ruins everything.
So I just went and disabled every animation I could. Now it's time to disable animations in my browser as well.
Now KDE feels scary fast. If macOS felt like a fast but comfortable SUV, KDE without animations feels like a 1000hp all-manual EXO-car.
Knowing that a modern SUV can be remotely hacked and steered into ongoing traffic at 100mph, I would argue that an all-manual car is safer, at least for a certain kind of people.8 -
Stack Overflow has the best April fools prank!
They are doing an 8+ hour database migration on a business day during business hours!
The prank is the fact that it’s not a joke! They really decided this for some reason!4 -
if you make a PR, do you sometimes just fix the minor error yourself and push it and then approve it?
for example: like a typo in a variable or a wrong translation9 -
So a few years ago I put tootsie rolls on little plates in the bathrooms at work. It took about a week before people started taking the tootsie rolls. I coined this experiment as the "bathroom candy" experiment.
Since it is April 1st I have revived this experiment, but this time I put Hersheys kisses on little plates. It will be an interesting experiment. But I am hoping for the phrase: "Who keeps leaving chocolates in the bathroom?!" or "Why are there Hersheys kisses in the bathroom?"
I expect people to be very wary of the "bathroom candy" this year. lol24 -
I just ordered ticket on the DB website.
They took my money. Didn't give my train tickets.
This is why I hate germans. Scammerz26 -
You know what sucks? When AI appears smart but its explaination is so over your head you don't even fully grasp if it is bullshitting or not.
For reference, what the following does is decomposes several runs of a network, takes them as samples, then generates a distribution with those samples. It then applies a fourier transform on the samples, to get the frequency components of the networks derivatives (first and second order), in order to find winning subnetworks to tune, and enforces a gaussian distribution in the process.
I sort of understand that, but the rest is basically rocket science to me.
Starts with an explanation of basic neural nets and goes from there. Most of the meat of the discussion is at the bottom.
https://pastebin.com/DLqe70uD3 -
Yesterday I left an open bag of fried chicken flavourd chips in the office. This morning the entire office smelled like Colonel Sanders had paid a visit.13
-
I have to go through so much bullshit with the architecture invented by people with no technical skills… It went from invented problems to real problems very quickly.3
-
I dig Debian so far. Here’s why I chose it:
- When something corpo doesn’t work on Arch, no one cares. But when it doesn’t work on Debian, it’s a big deal, and corpo people will be fixing it in no time. Good example is VSCod[e|ium] constantly crashing on Fedora: “it was fixed in kernel, all we have to do now is just wait for Fedora to catch up”.
- Complete and utter boringness/stability. When something breaks in Debian, it definitely broke for DenverCoder9 back in 2014 as well, and is easily fixable. You’re never the trailblazer, and with OS stuff that’s a good thing
- Complete and utter compatibility with everything. If you want to install/do X on Debian, someone else already did it and fixed everything for you
- Noble pedigree. “I use arch btw” is a running joke, but “oh, I use Debian” makes people respect your distro choice. Nobody hates Debian
One thing that transitioning people should know about GNU/Linux in general is that you shouldn’t try to replicate your previous experience with Windows/macOS in GNU/Linux.
GNU/Linux is a go kart, or a hot rod. You have to be involved. You have to be ready to tinker/fix things.
But one good thing about hot rods is that if you drive one, CIA can’t kill you with a remote car hack.9 -
> The decision by European Union judges (dictators) to give people the right to have information about them deleted from search engine listings like Google is a scam by the El-lite and their toadies to hide their own background from public knowledge
oh that explains a lot actually...
information for me but none for thee
> This so-called ‘right to be forgotten’ is no more than an example of George Orwell’s ‘Memory Hole’ in which the Ministry of Truth (inversion) re-wrote historical documents to match the ever-changing state propaganda. Britain’s Information Commissioner’s Office even ordered Google to remove links to stories about Google removing links to stories. So much information that people have a right to see no longer appears in search engine listings and is essentially deleted – down the Memory Hole7 -
Cars 1 was NOT released 19 years ago. No, it just wasn't. Fuck you, it wasnt. I dont care about your facts. It's all fake. You're litearlly just lying. No it cannot have come out 19 years ago. It just couldn't have, thats way to long ago. You're just weird. Calenders are just wrong11
-
> A world government dictatorship is due to sit atop a massive global structure of control and 24/7 enslavement and most of its major pillars are included in something called Agenda 21 (since updated to Agenda 2030) which is interweaved with themes of ‘sustainable development’ and ‘biodiversity’ and justified by ‘climate change’.
even the cheesy bond villains are late on their projects, don't you see!5