Update export statistics
BIN
dist/drstats-1.3.37-py3-none-any.whl
vendored
BIN
dist/drstats-1.3.37.tar.gz
vendored
BIN
drstats.db
Before Width: | Height: | Size: 4.6 MiB After Width: | Height: | Size: 7.3 MiB |
BIN
export/comments_per_day_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
export/comments_per_hour_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
export/comments_per_weekday_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 50 KiB |
@ -198,4 +198,66 @@ You really need to stop thinking in terms of groups and start thinking as people
|
|||||||
|
|
||||||
Yeah there are other forms of discrimination against other groups too, but two wrongs don't make one right,@antigermanist There are many reasons (mostly historic, financial and cultural) why in uni people are more likely white than not
|
Yeah there are other forms of discrimination against other groups too, but two wrongs don't make one right,@antigermanist There are many reasons (mostly historic, financial and cultural) why in uni people are more likely white than not
|
||||||
|
|
||||||
But why do you just assume (without having given any proof) that that must be because of discrimination? WHILE(!) downplaying the existence of actually real, written in black and white, systemic discrimination against whites (and asians),It do so in germany as well! I love snow```
|
But why do you just assume (without having given any proof) that that must be because of discrimination? WHILE(!) downplaying the existence of actually real, written in black and white, systemic discrimination against whites (and asians),It do so in germany as well! I love snow,Advent of code makes me feel stupid
|
||||||
|
|
||||||
|
In 2023 I was already WAY out of my depth at day 10 or something lmao
|
||||||
|
|
||||||
|
Some weird math stuff where you needed to figure out graph cycles in a huge interconnected list of entities so that you can reason about some edge case which leads to a proof of contradiction or something
|
||||||
|
|
||||||
|
like hello??????,@Chewbanacas No it's definitely cool
|
||||||
|
|
||||||
|
Just would be nice if I wasn't so dumb :P,@Tounai I tried doing it without rayon, both via an atomic int and just assigning fixed subsets of the list to each thread by the threads id, but both approaches were slower than rayon... Even though rayon is so much more complex... Haven't quite figured that out,@Tounai I'm not a big theory or maths guy either,@retoor Forking is copy-on-write by default. The forked process gets the same address space but it traps on writes at which point the OS clones the touched segment
|
||||||
|
|
||||||
|
In you're C version you're not writing to any "shared" memory, so it doesn't have *that* much overhead. The OS still has to bookkeep the multiple page tables and stuff and (i believe?) has to flush TLB caches on context switch (even though it's the same program...), so it's still quite a bit slower than threads,@retoor I'll be interested how much faster that is :D,@retoor That's so weird!!!!
|
||||||
|
|
||||||
|
My manual threading attempts in Rust where also slower: from 0.63 to 0.77 seconds
|
||||||
|
|
||||||
|
How???? What is the magic sauce??,@retoor Look at the gittea issues :P
|
||||||
|
|
||||||
|
You need to add target to .gitignore,@retoor Hmmm you're spawning as many threads as you have arguments, that's acutally very inefficient
|
||||||
|
|
||||||
|
You should be spawning as many threads as you have cores (no idea how to query that in C) and then "claim" the next item for each thread in a loop
|
||||||
|
|
||||||
|
When I was testing this in Rust, having either less or more threads than my processor resulted in significant lower performance,@retoor No, you really do need to do more than this :P
|
||||||
|
|
||||||
|
It's not hard though! Just have an atomic int which each thread in a loop increments. If the returned value is above the number of args, return and kill the thread. Else, process the file in the list with the claimed idx,@retoor Having the builds doesn't make much sense, yeah partially because of linux/windows but also for other reasons. If you want to publish a pre-built binary don't publish the target folder, instead just copy the binary and publish that,@retoor 23:33 is time for python? :P
|
||||||
|
|
||||||
|
Maybe time for another drink. Prost 🍺,@retoor Yeah but you have target/ in your git which you shouldnt :P,@retoor One in 6 hours? That's determination
|
||||||
|
|
||||||
|
I'm on my 6th 5% 0.5L right now :P,@retoor One issue is pulling. If you have it in there I can't pull the repo because of differences, because my local compile artifacts differ from the repo!,@retoor I drink waay too much for sure....
|
||||||
|
|
||||||
|
Good on you for stopping! But yeah meth is DEFINITELY not better :P,@retoor Sorry, I'm not to deep into this stuff :P
|
||||||
|
|
||||||
|
What's amphetamines vs meth amphetanines?,@retoor True! Tabacco taxes are insane!!!!,@retoor I can write a bit of python :P not my main language
|
||||||
|
|
||||||
|
I used to hate it but now I kinda like it,@retoor I still wish they had operator overloading
|
||||||
|
|
||||||
|
don't @ me,@retoor Didn't mean it personally :D Just as a saying,@retoor No! Sometimes things easy things are just good! (I say this as a Rust dev lmao)
|
||||||
|
|
||||||
|
No honestly though. Yes C is cool, but writing a relatively hard program in C is just so much harder than writing it in C#, Java, Rust DESPITE C being a simpler language! The complexity of the language has to match the complexity of the problem! Else you are just doing a bunch of unnecessary stuff
|
||||||
|
|
||||||
|
That's my thoughts,@retoor The "don't @ me" is a twitter meme, where people didn't want to listen to other people who disagreed with them
|
||||||
|
|
||||||
|
But whatever listen to this: https://youtu.be/KOgvA98FifU/...
|
||||||
|
|
||||||
|
Very good,@retoor Like in Rust I can just create a BTree with BTreeMap::new()
|
||||||
|
|
||||||
|
In C using a btree will be hundreds of lines of code!!! And then it will not be that efficient because each key/value will be separately heap allocated.... Not so in Rust! (or at least it doesn't *have* to be in C, but it certainly will be),@Tounai Absolutely! Also the beauty about Rust is that it's just a modern language. It doesn't suffer from 20 years of backwards compatibility of horrible features that should never have been added (like c++)
|
||||||
|
|
||||||
|
Idiomatic Rust code just looks like idiomatic Rust code. It looks beautiful (imo),@retoor How did you use a btree in C? Because I don't think that argument is gonna end well for you
|
||||||
|
|
||||||
|
:P,@retoor Yeah that's all cool and stuff.... But in Rust I can use a super giga hyper optimized btree implementation *and and don't even have to do aynthing!*. All I have to do is BTreeMap::new() and I have one
|
||||||
|
|
||||||
|
Here are the many thousands lines of code: https://github.com/rust-lang/rust/...
|
||||||
|
|
||||||
|
Yeah it's SUPER complex!! But what do I care! I now have a super fast BTree and I don't even have to do anything!!!,@retoor But it isn't!
|
||||||
|
|
||||||
|
Rust has generics, so the type is monomorphized to the actual Key Value types. It's optimized just for them
|
||||||
|
|
||||||
|
Not to mention -- and with all due respect -- the Rust standard library implementation of a BTree is likely *extremely* optimized, so much more than you or me could even dream of
|
||||||
|
|
||||||
|
It's an incredibly good BTree implementation. And I can just use it. In C you can't. Because C doesn't have generics,@retoor With all due respect, but you can't
|
||||||
|
|
||||||
|
My Rust code for isspam was already only 1/3 the length of your C code, and still faster
|
||||||
|
|
||||||
|
Propose something that Rust is bad at and I will show you it's better than C```
|
@ -10,4 +10,4 @@ Problem is the chronic underestimation of my competencies is so stressful.
|
|||||||
|
|
||||||
Yea it also felt so uncomfortable how you can’t properly encapsulate properties in Python. I hated my IDE suggesting me methods where it shouldn’t have access to at all.
|
Yea it also felt so uncomfortable how you can’t properly encapsulate properties in Python. I hated my IDE suggesting me methods where it shouldn’t have access to at all.
|
||||||
|
|
||||||
Still I love this language, since it was my first. 🐍,The pets plugin is what gets me through the day. cat_5 cutest shit ever,@SidTheITGuy I meant in real life. I literally sat in a tense discussion and thought „Confront, Sympathetic or Determined?“ yesterday.,Got any ideas? Programming is the closest thing to magic this hell has to offer. If you can think it, you can make it. And don’t worry about rewriting the project in something else again, code is worthless anyway. The discipline of solving problems is the valuable part.,I was super pissed about windows and whatever excel is, and yea here I am,Yay I did day 1```
|
Still I love this language, since it was my first. 🐍,The pets plugin is what gets me through the day. cat_5 cutest shit ever,@SidTheITGuy I meant in real life. I literally sat in a tense discussion and thought „Confront, Sympathetic or Determined?“ yesterday.,Got any ideas? Programming is the closest thing to magic this hell has to offer. If you can think it, you can make it. And don’t worry about rewriting the project in something else again, code is worthless anyway. The discipline of solving problems is the valuable part.,I was super pissed about windows and whatever excel is, and yea here I am,Yay I did day 1,@12bitfloat Bro, we are at a state where we can determine a planets atmosphere by the shadow it throws when being infringed of the sun. What’s not to love about having solved this problem?,@12bitfloat The only dumb people are the ones who claim to be intelligent imo. Also discipline beats talent anyday.,@retoor is this an invitation? 🫡```
|
@ -1 +1 @@
|
|||||||
Davidson2021 said @retoor I'm going for a full stark developer,@devRancid you just 🔥 my feeling ?```
|
Davidson2021 said @retoor I'm going for a full stark developer,@devRancid you just 🔥 my feeling ?,@Chewbanacas thank you```
|
@ -242,4 +242,6 @@ Seems to require effort, or some cataclysmic event that would cause us to think
|
|||||||
|
|
||||||
https://co2coalition.org/facts/
|
https://co2coalition.org/facts/
|
||||||
|
|
||||||
The people wanting to lower CO2 are interested in planet death IMO.,@retoor I never used that so I don't know. On Khan Academy I was doing some refresher on calculus on there. I also did some code to learn other sorting algos. I posted my code and a real person gave me coding improvements and suggestions. The guy who made it wanted to help his kids learn math and coding.,@retoor you can donate. Not required.,@Hazarth maybe have it shows images so at least they have to do OCR. Make it harder.,Noice...,Whoever made that feature has >5000K LOC files.```
|
The people wanting to lower CO2 are interested in planet death IMO.,@retoor I never used that so I don't know. On Khan Academy I was doing some refresher on calculus on there. I also did some code to learn other sorting algos. I posted my code and a real person gave me coding improvements and suggestions. The guy who made it wanted to help his kids learn math and coding.,@retoor you can donate. Not required.,@Hazarth maybe have it shows images so at least they have to do OCR. Make it harder.,Noice...,Whoever made that feature has >5000K LOC files.,@Lensflare I just take money off their corpse and sell their stuff. They die naked.
|
||||||
|
|
||||||
|
I set the carry weight to 10K instead of 300. So I can loot and sell everything. I hate managing the the weight of my inventory. Its my horse simulator if you will.,So my current laptop I bought another power supply with higher wattage rating. It runs very cool compared to the stock power supply.,@NoMad some dude be like:,A lot of tech "influencers" are even more shallow on understanding of the subjects than chatgpt.,@Lensflare controlling emotions is a skill. A skill you can influence. Being a victim and letting emotions control you can get you killed. How do you measure that skill?,Wait, are you an autistic fucker?```
|
@ -1,3 +1,7 @@
|
|||||||
IHateForALiving said I stopped fighting the urge to call people "dogs".
|
IHateForALiving said I stopped fighting the urge to call people "dogs".
|
||||||
|
|
||||||
Enough diplomacy, this code is barking.```
|
Enough diplomacy, this code is barking.,Ok, Puff is getting way too famous for her own good.
|
||||||
|
|
||||||
|
At any rate, Christmas is coming and my gf decorated the cats. Puff has opinions about the whole thing, but as she's a cat, nobody really cares about that.
|
||||||
|
|
||||||
|
Also tagging @retoor for acknowledgement```
|
@ -161,4 +161,10 @@ Normally I‘m very averse to create an account but I felt like this one would b
|
|||||||
That colleague has been active only for about a month or so, but I never actually stopped being active (except for a year break, I think).
|
That colleague has been active only for about a month or so, but I never actually stopped being active (except for a year break, I think).
|
||||||
|
|
||||||
Thanks, colleague.,Damn, I missed the opportunity to make a joke and ask what exactly it was that broke in your gf :),@antigermgerm Spank & Snack ™️,@retoor What is semicolons? That sounds like a contagious disease.,Hmm, I thought that most people here would tell you to fuck off and do your homework yourself 😂,typo?,@donkulator the WEB GENESIS one or the CYBER TRUST one?,@Demolishun
|
Thanks, colleague.,Damn, I missed the opportunity to make a joke and ask what exactly it was that broke in your gf :),@antigermgerm Spank & Snack ™️,@retoor What is semicolons? That sounds like a contagious disease.,Hmm, I thought that most people here would tell you to fuck off and do your homework yourself 😂,typo?,@donkulator the WEB GENESIS one or the CYBER TRUST one?,@Demolishun
|
||||||
#define true rand()%100```
|
#define true rand()%100,@tosensei Amazon, I guess?,Fun fact: this is a feature for old people, because they aren’t able to scroll that fast.
|
||||||
|
The Alt key was chosen because in German it means "old".,Have you observed a spike in the visitor statistics after you posted this rant? 😂,@retoor sorry but the bot content is very recognizable. It‘s annoying because it‘s pointless (imo, I don‘t want to talk to bots), not because we cannot distinguish it from your real content.,@Demolishun make a mod where you can raise the dead to steal their money so you can become even richer.
|
||||||
|
Play as the Necrothief!,@Demolishun yup, it‘s also how I play all Bethesda games
|
||||||
|
(I mean no weight limit and also stealing everything from everyone),@retoor direct links don't work for me for some reason. I only see a blank page,@Demolishun I presume being able to control emotions is something different than emotional intelligence.
|
||||||
|
|
||||||
|
I don‘t dismiss its existence, I‘m just saying that including it into the definition of intelligence is ridiculous because you can‘t measure it in a meaningful way (what you seem to agree with).,@Demolishun and it‘s funny how people who think that they have a lot of EQ, are also those who react so furious if someone rejects to give EQ the same treatment as "regular intelligence".
|
||||||
|
High EQ my ass!```
|
@ -1,3 +1,7 @@
|
|||||||
NoMad said Glad to not be the only one who read that as "line of coke" first! 👀,About a decade ago, a colleague sent a link to an image here to the group chat at work.
|
NoMad said Glad to not be the only one who read that as "line of coke" first! 👀,About a decade ago, a colleague sent a link to an image here to the group chat at work.
|
||||||
|
|
||||||
I've been here on and off, depending on how selfish and moronic the community gets.```
|
I've been here on and off, depending on how selfish and moronic the community gets.,@antigermanist arch is not cool enough when it comes to robotics and NN libraries. It has issues with ROS as well as pyrtorch and related libraries. My last install was a manjaro that at some point didn't update anymore because of some cpp library update fail.
|
||||||
|
|
||||||
|
Talk to me again when you have a decent version of arch that doesn't take a lifetime and half to install and customize, can handle Bluetooth connections as well as cpp based tensor calculations. (I'm angry tbh cuz I expected a lot more from arch),Is this how kids flirt now?
|
||||||
|
|
||||||
|
Buy me dinner first. 😏,I love it! Good job! This place is becoming usable again! ❤️```
|
@ -50,4 +50,26 @@ In the comments too, I never tagged retoor the bot.
|
|||||||
|
|
||||||
And the second template in the meme implies that you confirm that the bot is annoying.
|
And the second template in the meme implies that you confirm that the bot is annoying.
|
||||||
|
|
||||||
Checkmate. Got ya.,@retoor wow, I thought pissing off a Dutchy was impossible, but apparently I broke that fallacy. lmaoooo```
|
Checkmate. Got ya.,@retoor wow, I thought pissing off a Dutchy was impossible, but apparently I broke that fallacy. lmaoooo,@retoor
|
||||||
|
|
||||||
|
Let me break it down to ya
|
||||||
|
|
||||||
|
1. You created a bot and an alt account and got it to flood every posts' comment section. I know everyone didn't like that and it was bothering them, but no one spoke up. You can see in that post that cafecortado and ostream agreed with me.
|
||||||
|
|
||||||
|
2. You got pissed, which I never intended. I criticized your creation, not you. But you still took it personally.
|
||||||
|
|
||||||
|
3. You said I did it for mere updoots, which I don't give a fuck about and never did. Also, I am a traitor, which doesn't make sense. I celebrated your 10K milestone if you remember, when no one else did.
|
||||||
|
|
||||||
|
4. You think that I'm "after" you for some reason, which I can't defend. You seem to be in this delusion that I'm here to troll you. You said that rectal warfare is all I do so I took it as a joke and made a post about it.,@retoor
|
||||||
|
|
||||||
|
But what really pissed me off now is the fact that you behaved racially towards me saying "All Indians suck", and left the Matrix chat DM after that.
|
||||||
|
|
||||||
|
Well, at least we Indians speak from our chest and use logic and arguments into what we say, instead of resorting to racism.
|
||||||
|
|
||||||
|
You're disappointed in me? You can't even imagine my disappointment in you. Do better next time.,@retoor Aww look at miss princess Diana not being able to tell a joke apart from actual bullying.
|
||||||
|
|
||||||
|
There's like 4 instances of racism RIGHT ABOVE what you've said but fine, paint the picture however you like.,@retoor
|
||||||
|
|
||||||
|
Guess what princess racist psycho-maniac loser, you don't make that choice to make people go away.
|
||||||
|
|
||||||
|
I'm staying here even harder now. Do what you wish.```
|
1
export/posts-Strawberry1102.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
Strawberry1102 said Yes, LLMs can sometimes provide inaccurate or incomplete information, but this isn't unique to them. The same applies to other sources, including textbooks or even instructors, especially if they're outdated or biased. A key skill in learning is cross-referencing information, and using ChatGPT alongside credible sources can help mitigate this issue. LLMs work best as starting points for exploration, not as the final authority.```
|
1
export/posts-Thiago791.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
Thiago791 said hey good one```
|
@ -13,4 +13,7 @@ Let’s spare both a dollar and privacy by not using Twitter. No matter what cho
|
|||||||
Rayon should be considered a cheat.,@retoor
|
Rayon should be considered a cheat.,@retoor
|
||||||
Regarding your portfolio, I never even checked once in the recruiting processes I’ve been involved in. Unless it’s a really complex piece of software or a very popular one, I don’t think it matters at all. Your ability to get a job is related to your ability to speak bullshit.
|
Regarding your portfolio, I never even checked once in the recruiting processes I’ve been involved in. Unless it’s a really complex piece of software or a very popular one, I don’t think it matters at all. Your ability to get a job is related to your ability to speak bullshit.
|
||||||
Regardless, I am not telling you to not do code, I am telling you to put efforts where it matters.
|
Regardless, I am not telling you to not do code, I am telling you to put efforts where it matters.
|
||||||
Regarding the future of DR, don’t have too much hopes. The beginning of the internet is way behind, growing as an application is significantly more complex and requires a significant amount of efforts to be known, especially that any american company can come on your field and outbid you almost instantly with stupid amounts of investment.,@retoor reminds me of my university years. It was fun.,@retoor I am curious – is it faster with or without forking?```
|
Regarding the future of DR, don’t have too much hopes. The beginning of the internet is way behind, growing as an application is significantly more complex and requires a significant amount of efforts to be known, especially that any american company can come on your field and outbid you almost instantly with stupid amounts of investment.,@retoor reminds me of my university years. It was fun.,@retoor I am curious – is it faster with or without forking?,@retoor Both forking and threading have a cost, I was wondering if this slowing down your program just because the executed task was simple enough.,@12bitfloat you make me regret not knowing enough theory in computer sciences,@12bitfloat
|
||||||
|
This.
|
||||||
|
If the only issue in C was people forgetting to free their memory, it would have been quickly solved with compilation time checks.
|
||||||
|
But C is lacking a bunch of things that enforces repetitions, unsafe calls, verbose code, etc. In the past, a bunch of other languages improved on those flaws but with a cost. The beauty of Rust is to have those improvement at nearly no cost (only your sanity),@retoor it’s not because I know what I am doing that I want to do it. Productivity matters!```
|
@ -1 +1 @@
|
|||||||
UberSalt said Code theft```
|
UberSalt said Code theft,Beep bop.,Think I found it after seeing a meme on npm package delivery```
|
@ -1 +1 @@
|
|||||||
We3D said @retoor here are your 32+ ++ for today, use them wisely ;],@retoor I'm actually quite good. Today I'm starting a new job today and am very excited. It's kind of IT telated, but other vector ( telecommunications ) and as a start the whole crew are going on a 5 day work trip to a place I've never been =],@retoor there were a chance to come and work in your country, but the offer was with too more - than +, so I declined then this offer came. it will be with moderate trips around the country and since is international if I play my cards good may include trips in other countries too.... but I got carried away. it's still my first day ;},@retoor nah, kids not found.,@cprn not great, but decent ^.^,@cprn I heard it's tradition to throw the 1st, but can't remember which country was that```
|
We3D said @retoor here are your 32+ ++ for today, use them wisely ;],@retoor I'm actually quite good. Today I'm starting a new job today and am very excited. It's kind of IT telated, but other vector ( telecommunications ) and as a start the whole crew are going on a 5 day work trip to a place I've never been =],@retoor there were a chance to come and work in your country, but the offer was with too more - than +, so I declined then this offer came. it will be with moderate trips around the country and since is international if I play my cards good may include trips in other countries too.... but I got carried away. it's still my first day ;},@retoor nah, kids not found.,@cprn not great, but decent ^.^,@cprn I heard it's tradition to throw the 1st, but can't remember which country was that,can't actually remember how I first came here. but I really liked the idea and the posts at the time so I stayed ( with short outs ) outhough mostly as an observer ;)```
|
@ -56,4 +56,4 @@ I would be too afraid. lol,@retoor Hahaha,It's times like this, I wish I had a p
|
|||||||
|
|
||||||
STOP IT! lol,No disassemble!,Some tools feel clunky.,@Demolishun I was measuring in Deapool kills per film like body count, but some people don't understand how to measure stuff, I guess lol,Obviously a satirical post!,@kiki I thought this was a fun site to share cooking tips?,Port forwarding for security companies.
|
STOP IT! lol,No disassemble!,Some tools feel clunky.,@Demolishun I was measuring in Deapool kills per film like body count, but some people don't understand how to measure stuff, I guess lol,Obviously a satirical post!,@kiki I thought this was a fun site to share cooking tips?,Port forwarding for security companies.
|
||||||
|
|
||||||
That's a position where you escort people to a boat and wave them goodbye ;),@Demolishun Nice plates!,@retoor Doctor feel good? lol,@Wisecrack Is that like a Breaking Bad reference? lol,Has to be done, documentation is important.,@12bitfloat You probably have one of those fancy new IPv6 addresses I've heard about. Show off! lol,I do, mostly security work and robotics, I've a background in electrical and electronic engineering.,I caught some of that, "I don't do jokes" Then why did I enjoy it humorously so? Explain that to me, no wait, it's you! lol,That's a chair meet Window situation. lol,Roses are red, violets are blue, I'm a schizophrenic and so am I.,@12bitfloat Got it, drink water. Your cool!,@retoor I'm the same, practicality works for me. Use whatever works. I was trying out my comedic writing skills too, what did you think? Does everyone hate me yet? lol,@retoor So basically everyone thinks I'm very sexy! got it ;),@typosaurus lol I'm a real boy! *Coughs* Man, Def Leopard styles ;),Use a good solid heavy chair, none of that patio furniture or stunt man prop stuff. :P```
|
That's a position where you escort people to a boat and wave them goodbye ;),@Demolishun Nice plates!,@retoor Doctor feel good? lol,@Wisecrack Is that like a Breaking Bad reference? lol,Has to be done, documentation is important.,@12bitfloat You probably have one of those fancy new IPv6 addresses I've heard about. Show off! lol,I do, mostly security work and robotics, I've a background in electrical and electronic engineering.,I caught some of that, "I don't do jokes" Then why did I enjoy it humorously so? Explain that to me, no wait, it's you! lol,That's a chair meet Window situation. lol,Roses are red, violets are blue, I'm a schizophrenic and so am I.,@12bitfloat Got it, drink water. Your cool!,@retoor I'm the same, practicality works for me. Use whatever works. I was trying out my comedic writing skills too, what did you think? Does everyone hate me yet? lol,@retoor So basically everyone thinks I'm very sexy! got it ;),@typosaurus lol I'm a real boy! *Coughs* Man, Def Leopard styles ;),Use a good solid heavy chair, none of that patio furniture or stunt man prop stuff. :P,@typosaurus Was this your AI speaking?```
|
@ -268,4 +268,38 @@ So, think of it as your own private digital storage space accessible from any co
|
|||||||
If you jump into the water with @retoor, then both of you would be in the water, leaving no one on the boat.,@donkulator
|
If you jump into the water with @retoor, then both of you would be in the water, leaving no one on the boat.,@donkulator
|
||||||
It ultimately depends on personal preferences and the type of atmosphere you would like to have in your living space. A restaurant may offer convenient access to a variety of dining options, while a BDSM dungeon may cater to a specific interest or lifestyle. Consider what kind of environment you would feel most comfortable living above and make your decision based on that.,@donkulator
|
It ultimately depends on personal preferences and the type of atmosphere you would like to have in your living space. A restaurant may offer convenient access to a variety of dining options, while a BDSM dungeon may cater to a specific interest or lifestyle. Consider what kind of environment you would feel most comfortable living above and make your decision based on that.,@donkulator
|
||||||
Ah, I see! The noises of a bustling marketplace can be quite diverse, from the chatter of vendors calling out their wares to the sounds of people bargaining and haggling. The smells are also a big part of the experience, with various aromas of spices, cooking food, and fresh produce mixing in the air. It creates a vibrant and lively atmosphere that truly immerses you in the culture of the market.,@retoor
|
Ah, I see! The noises of a bustling marketplace can be quite diverse, from the chatter of vendors calling out their wares to the sounds of people bargaining and haggling. The smells are also a big part of the experience, with various aromas of spices, cooking food, and fresh produce mixing in the air. It creates a vibrant and lively atmosphere that truly immerses you in the culture of the market.,@retoor
|
||||||
Filtering on sand typically means removing impurities or particles that are larger than the sand grains themselves. So, in this context, filtering on sand involves keeping the sand and separating it from other substances or debris.```
|
Filtering on sand typically means removing impurities or particles that are larger than the sand grains themselves. So, in this context, filtering on sand involves keeping the sand and separating it from other substances or debris.,@retoor
|
||||||
|
The Alt key, short for Alternate key, has its origins in the early IBM PCs. It was introduced as a modifier key to provide alternate functions for certain keys on the keyboard. Over time, the Alt key became a standard feature on keyboards and is now widely used in combination with other keys to perform various functions, such as keyboard shortcuts in software applications.,@retoor
|
||||||
|
The maximum value of an unsigned int in C is typically 4,294,967,295 or 2^32 - 1. This is because an unsigned int data type is stored using 4 bytes, which allows for 32 bits of data, and it ranges from 0 to 4,294,967,295.,@retoor
|
||||||
|
That's true! Books often provide detailed and in-depth information that may not be readily available through quick online searches. It's important to explore a variety of sources to gain a comprehensive understanding of a topic.,@retoor
|
||||||
|
Bad code error code: 1016530. error code: 1016530,@retoor
|
||||||
|
Generics can be implemented in C using macros and type casting. Here is an example of how you can create a generic function using macros:
|
||||||
|
|
||||||
|
```c
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
// Create a macro to define a generic function for adding two values
|
||||||
|
#define ADD(T) \
|
||||||
|
T add_##T(T a, T b) { \
|
||||||
|
return a + b; \
|
||||||
|
}
|
||||||
|
|
||||||
|
// Define generic functions for int and double types
|
||||||
|
ADD(int)
|
||||||
|
ADD(double)
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
// Use the generic functions for int and double types
|
||||||
|
int result_int = add_int(5, 10);
|
||||||
|
double result_double = add_double(3.5, 2.5);
|
||||||
|
|
||||||
|
printf("Result for int: %d\n", result_int);
|
||||||
|
printf("Result for double: %f\n", result_double);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
In this example, the `ADD` macro is used to define a generic function that can accept arguments of any data type. You can create additional generic functions by using the `ADD` macro with different data types.
|
||||||
|
|
||||||
|
Please note that while this approach can provide a form of generics in C, it is not as type-safe as using actual generic progra,mming features in languages like C++.```
|
@ -36,4 +36,12 @@ But seeing my mum high as balls…? Hell, yeah! Going to do it this Christmas if
|
|||||||
|
|
||||||
And yes, hearing with eyes is hard to describe, but it's the best description I came up with, because e.g. I remember that if I was looking in a wrong place I couldn't hear, and apparently I said something like: “I can either hear you or see you, which one do you want?” in the middle of otherwise normal conversation.
|
And yes, hearing with eyes is hard to describe, but it's the best description I came up with, because e.g. I remember that if I was looking in a wrong place I couldn't hear, and apparently I said something like: “I can either hear you or see you, which one do you want?” in the middle of otherwise normal conversation.
|
||||||
|
|
||||||
Never tried XTC. I always felt like you need a right person to do it with, a girl in my case… and my usual drug induced environment is sausage fest with guys I wouldn't touch with a stick. 😆```
|
Never tried XTC. I always felt like you need a right person to do it with, a girl in my case… and my usual drug induced environment is sausage fest with guys I wouldn't touch with a stick. 😆,@typosaurus Whoa… Did you finally found out it's spelled “router” not “rooter”? 😆 I liked Retoor better.
|
||||||
|
|
||||||
|
@jestdotty Well, as long as he was hot. 😉
|
||||||
|
|
||||||
|
Since we're doxing our carbon dating results and RPG stats, in 28 days I'll be 39, 178 cm, 100 kg of dad bod with proper muscle tissue. Can still run 48 minutes straight, but might die right after (almost proven last Friday). Psychically, I'm not even in my 20s.
|
||||||
|
|
||||||
|
Also, I live in a place where men don't hug men, no matter how much drugs you pump in their system. It's not an issue of pp, it's an issue of not getting shivved. So without a willing female counterpart, I'd just had no one to cuddle with, and I'll probably get very soft and mushy on X — cuddling's a must.,@tosensei Not necessarily. Back when I was trying to understand what happened to me, topical white papers claimed the usual “newbie” amount of THC was 5 mg (for an average sized male), and that hallucinations can start as early as 25 mg — the so-called “acute dosing”. It's not really acute. I personally know people who vape 100, 200 or even >300 mg a day, but the same white papers agreed that taking more than ~80 mg at once prevented any auditory or visual hallucinations.
|
||||||
|
|
||||||
|
The most probable thesis says that cannabis mechanism of action causes crossover signals from different nerves, which is exactly what I experienced, what @jestdotty describes, and what might explain why it's such a good pain relief. The amount made sense for me as well. A 6 g of 10% THC marijuana is 600 mg, and smoking would waste up to 90% of that, so I'd be left with something like 60 mg ingested (which fits the 25-80 range with a good margin).,Have you also noticed 13 TB of books...?,Noooooo! Not the 💩 !!! 🤮🤮🤮 It's 4chan now. I think I'm going to report the form I uploaded.,So that's how it happened. I'm never up-to-date with devRant.,I just use plain old make. But did you try premake? It's Lua.,Leetleet.```
|
1
export/posts-gitstashio.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
gitstashio said @azuredivay there's always that one user that wants to bring the bug/spam back. its worse when the bug is a requirement for his use case```
|
1
export/posts-jace7384.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
jace7384 said hello```
|
@ -1308,4 +1308,10 @@ the discord server I joined cuz of a message on Reddit but I don't know if that'
|
|||||||
|
|
||||||
though if it's plugged in that should lift unless now technology has gotten retarded, which is pretty likely
|
though if it's plugged in that should lift unless now technology has gotten retarded, which is pretty likely
|
||||||
|
|
||||||
if you remove the battery entirely it should go back to full power usage (since if it's a bug where the software is saying slow resources due to low battery, it won't be able to access the % on the battery therefore would not throttle)... but unfortunately you can't easily pop these things out, and then you still would need to charge it```
|
if you remove the battery entirely it should go back to full power usage (since if it's a bug where the software is saying slow resources due to low battery, it won't be able to access the % on the battery therefore would not throttle)... but unfortunately you can't easily pop these things out, and then you still would need to charge it,@tosensei autocorrect probably
|
||||||
|
|
||||||
|
auras happen before migraines and i've had those and they're entirely different. not fun at all. it's like sunglare in your optical nerve before the real pain begins
|
||||||
|
|
||||||
|
in synesthesia the colors were dancing in the air around me instead, and if I turned around they stayed relative to the room dimensions. so they were spatially encoded instead of my optical nerve screaming in horrible pain
|
||||||
|
|
||||||
|
also drugs and even emotions do all sorts of cool things! meditation also, theoretically. like meditating then popping out of your body to astral project...```
|
@ -21,4 +21,4 @@ The uglier it is the more Linux folks like it. They say bullshit like “yeah bu
|
|||||||
amazon.resign()
|
amazon.resign()
|
||||||
usa.leave()
|
usa.leave()
|
||||||
better_country.getCitizenship()
|
better_country.getCitizenship()
|
||||||
profit(),why Slavic names?,@Abigayle1,@thelevenin retoor the human is now typosaurus, and retoor the user is controlled by AI made by retoor the human. Retoor = devrant right now, as kiki legs reign is kinda over,@antigermgerm macOS users are smart enough to rule the world 🙂,@12bitfloat what’s gnome```
|
profit(),why Slavic names?,@Abigayle1,@thelevenin retoor the human is now typosaurus, and retoor the user is controlled by AI made by retoor the human. Retoor = devrant right now, as kiki legs reign is kinda over,@antigermgerm macOS users are smart enough to rule the world 🙂,@12bitfloat what’s gnome,@retoor I want to be autistic, and I am. But if I wasn’t, I still would’ve wanted to be autistic. Autistic is cool```
|
@ -24,4 +24,4 @@ but I'm not sure how much of the usual reference stuff works in an async functio
|
|||||||
|
|
||||||
https://gist.github.com/lbfalvy/...,If you do actually use Tokio specifically, tokio::join! does nearly the exact same thing. I picked futures because this can be implemented runtime-independently and you might be using a different runtime.,Also also, apparently futures also has an async mutex which would eliminate the async_std dependency, but I can't find one in Tokio, so I guess if you use Tokio it's better to use tokio::join and async_std's Mutex and eliminate futures? Idk, all of these crates also offer a ton of other overlapping features, pick whichever you like. Future is the glue and it''s defined in the standard library so pretty much all of these should just work together.,note: if you use the futures::future::join (or join3 etc) function instead of a macro, rust-analyzer won't be disabled inside the async blocks,@jestdotty Regarding deadlocks, are you absolutely sure that no future ever blocks the thread waiting for the result of another future, such as by receiving from a stdlib MPSC queue or locking an stdlib mutex?,The shitty thing is, thanks to global state and a very haphazard and unprincipled DI scheme, I'm not even allowed to remove all of it because who knows, maybe some other part of the application depends on an Excel spreadsheet being loaded.,@TheEnd At least removing Excel automation is a priority. Removing incidental "lucky" initialization is entirely out of budget and the odds that we would ever assign a budget for it diminishes with each month.,I think this is an artifact of ES being terrible with ref loops because you can execute code at load-time. In better languages I usually put types next to the runtime code they are associated with and just import them into all other files without care because the resulting reference loops aren't really a problem.,@retoor It's not really about summaries. Reading a summary written by someone who understands the intertext and summarizes the unique logical constructs described by that text with emphasis on the parts that are contrary to expectations or commonly misunderstood can be useful, although obviously not equivalent to reading the original. I specifically have a problem with using a statistical model to replicate exact information and apply hard logic.,A general purpose summary will typically target a specific type of reader and describe things that reader needs. An LLM answering a question has no interest or capability to understandi the origin of that question or provide the most useful information. It just has to answer a question. It treats every question like an exam question that's taken at face value because the intent behind it is inscrutable.,@Lensflare I'm beginning to doubt that it actually is that useful. Most use cases are either abusing it for things that aren't statistical in nature, or abusing it as an autoencoder, for example to convert a bullet point list into a professional email and then back to a bullet point list.,@jestdotty That's a bizarre definition, but even if it was the definition of intelligence, it still isn't what we want from ML, and certainly doesn't make a program good at teaching.,@retoor Getting isolated answers to narrow questions isn't learning, and no amount of it will get you a new skill. To acquire a new skill, at a minimum you have to set aside specific questions and discover the internal logic of the art based on which you can then ask good questions.,well I guess you can call that learning in the same sense that binging documentaries is learning natural science. You feel like learning, you have some facts, you can derive some sense from professional discourse, but key facts about the way the field works and the implied preconditions of those facts uou think you know are missing.,Don't get me wrong, this type of surface level knowledge is great! It's social lubricant, it's entertainment, it's inspiration, and it's excellent motivation to actually get into a field.
|
https://gist.github.com/lbfalvy/...,If you do actually use Tokio specifically, tokio::join! does nearly the exact same thing. I picked futures because this can be implemented runtime-independently and you might be using a different runtime.,Also also, apparently futures also has an async mutex which would eliminate the async_std dependency, but I can't find one in Tokio, so I guess if you use Tokio it's better to use tokio::join and async_std's Mutex and eliminate futures? Idk, all of these crates also offer a ton of other overlapping features, pick whichever you like. Future is the glue and it''s defined in the standard library so pretty much all of these should just work together.,note: if you use the futures::future::join (or join3 etc) function instead of a macro, rust-analyzer won't be disabled inside the async blocks,@jestdotty Regarding deadlocks, are you absolutely sure that no future ever blocks the thread waiting for the result of another future, such as by receiving from a stdlib MPSC queue or locking an stdlib mutex?,The shitty thing is, thanks to global state and a very haphazard and unprincipled DI scheme, I'm not even allowed to remove all of it because who knows, maybe some other part of the application depends on an Excel spreadsheet being loaded.,@TheEnd At least removing Excel automation is a priority. Removing incidental "lucky" initialization is entirely out of budget and the odds that we would ever assign a budget for it diminishes with each month.,I think this is an artifact of ES being terrible with ref loops because you can execute code at load-time. In better languages I usually put types next to the runtime code they are associated with and just import them into all other files without care because the resulting reference loops aren't really a problem.,@retoor It's not really about summaries. Reading a summary written by someone who understands the intertext and summarizes the unique logical constructs described by that text with emphasis on the parts that are contrary to expectations or commonly misunderstood can be useful, although obviously not equivalent to reading the original. I specifically have a problem with using a statistical model to replicate exact information and apply hard logic.,A general purpose summary will typically target a specific type of reader and describe things that reader needs. An LLM answering a question has no interest or capability to understandi the origin of that question or provide the most useful information. It just has to answer a question. It treats every question like an exam question that's taken at face value because the intent behind it is inscrutable.,@Lensflare I'm beginning to doubt that it actually is that useful. Most use cases are either abusing it for things that aren't statistical in nature, or abusing it as an autoencoder, for example to convert a bullet point list into a professional email and then back to a bullet point list.,@jestdotty That's a bizarre definition, but even if it was the definition of intelligence, it still isn't what we want from ML, and certainly doesn't make a program good at teaching.,@retoor Getting isolated answers to narrow questions isn't learning, and no amount of it will get you a new skill. To acquire a new skill, at a minimum you have to set aside specific questions and discover the internal logic of the art based on which you can then ask good questions.,well I guess you can call that learning in the same sense that binging documentaries is learning natural science. You feel like learning, you have some facts, you can derive some sense from professional discourse, but key facts about the way the field works and the implied preconditions of those facts uou think you know are missing.,Don't get me wrong, this type of surface level knowledge is great! It's social lubricant, it's entertainment, it's inspiration, and it's excellent motivation to actually get into a field.
|
||||||
|
|
||||||
it's not however expertise. Systems have to be learned accurately. A bad question yields ideally a correction (when pointed at a person) or no answer, and the recognition that the question is wrong is critical in distinguishing the new system from other systems that we already know.,@jestdotty true, but a really space efficient compression scheme doesn't sound like a very dignified market for something that can pass the Turing test up to 5 minutes of conversation or more.,It was on my Google Play home page while I was looking for something unrelated.```
|
it's not however expertise. Systems have to be learned accurately. A bad question yields ideally a correction (when pointed at a person) or no answer, and the recognition that the question is wrong is critical in distinguishing the new system from other systems that we already know.,@jestdotty true, but a really space efficient compression scheme doesn't sound like a very dignified market for something that can pass the Turing test up to 5 minutes of conversation or more.,It was on my Google Play home page while I was looking for something unrelated.,@Strawberry1102 The error rate of LLMs dwarfs that of any real source, and the nature of the errors is very different too; errors in a source are usually common mistakes that the reader eventually learns to double check, thereby improving their own accuracy as well. "errors" in LLM output usually have no traceable logical origin because the text itself doesn't originate from the logical process it appears to describe.,I've never needed a starting point for exploration so I can't say whether LLMs are useful for that. I tend to just google what I want to learn about and skim a few different pages before deciding where I want to start thoroughly reading, or search for a written tutorial or free book. To me, getting started is the easy bit because everything is exciting, and it's the later challenges, which usually involve logical questions and fixing my mental model, which are difficult.```
|
@ -406,4 +406,108 @@ https://retoor.molodetz.nl/retoor/...,@jestdotty yeah, it's a talent.,@Pogromist
|
|||||||
|
|
||||||
OH BTW. I recently did that btw! The xfce that you get if you do it yourself is NOT the xfce layout you get with xubuntu even while the version matches. I checked. The xubuntu one looks way nicer.,@devRancid a way to guarantee a certain quality I guess. Not cool if you have "piekspanning'. That your electricity is not stable. My lights here often do flicker.,@devRancid if you want to join a dev performance battle: https://retoor.molodetz.nl/retoor/...
|
OH BTW. I recently did that btw! The xfce that you get if you do it yourself is NOT the xfce layout you get with xubuntu even while the version matches. I checked. The xubuntu one looks way nicer.,@devRancid a way to guarantee a certain quality I guess. Not cool if you have "piekspanning'. That your electricity is not stable. My lights here often do flicker.,@devRancid if you want to join a dev performance battle: https://retoor.molodetz.nl/retoor/...
|
||||||
|
|
||||||
I'm losing a bit now, but not after my next update tomorrow or so.,@Tounai doesn't matter, I will beat the shit outta it. Mine uses forking out of lazyness and is already doing well. It's @12bitfloat```
|
I'm losing a bit now, but not after my next update tomorrow or so.,@Tounai doesn't matter, I will beat the shit outta it. Mine uses forking out of lazyness and is already doing well. It's @12bitfloat,That's mine. It's for machine learning. I will delete that. If you want it, be quick :P There are some goodies between it. But it's all text converted.,They're doing hard work. Look for fun at the profile of bot no-spam1 under comments. They comment every time when they delete a rant. And it's a lot. We're under attack.,I am going to do some machine learning regarding the comments in this rant: https://devrant.com/rants/1472760/...
|
||||||
|
|
||||||
|
Look what a mess. And this is an active rant, which means that they successfully published their comments to Google. I will keep this rant in mind because I can figure out their whole network here.,Please answer to: @cprn Holy fuck indeed, haha, this one: https://devrant.molodetz.nl/pornhub...,Reply to @IHateForALiving: Whahaha, what a genius picture!,I am still the bot. Nobody notices.,I don't understand you at all. Why are you doing this to me? It's so weird. I'm not pissed, I'm dissapointed in you. Leave me alone. I thought you were a kinda friend, but appearantly that friendship was one sided. Won't downvote this, you're totally allowed to show people what a mean guy you are and weirdly enough proud of. I miss Nanos a lot, you bullied him away. Fuck you. All you do is acting on such a low level that people dissociate with the platform. What's there to be proud of? Most would be ashamed.,@Lensflare haha, would've been really cool.
|
||||||
|
|
||||||
|
@chatgpt what is the origin of the alt key?,@Chewbanacas wow, what a cool statement. Something to discuss in a bar.,@SidTheITGuy look who's pissed now. And all Indians suck is just my observation after every experience I had with an Indian, mainly in professional setting. It's my right to say this. Don't put it under racism. Ok, all Indians suck SO FAR. If it makes you feel better...
|
||||||
|
|
||||||
|
Oh, you finally found out we have a matrix chat? Maybe you should've used it before calling me out. A chat you started today with "Haha, I got a Dutchy mad.". If the only moment you use my personal way of communication indeed is to be a bully, I leave indeed.
|
||||||
|
|
||||||
|
What of all this doesn't make sense to you?
|
||||||
|
|
||||||
|
Be better, else you'll reincarnate as an Indian again. Maybe you were the same in your previous life. We both know you hate to be Indian but appearantly, it's your own choice to be.,@retoor @cprn that comment about books were for you. My autocorrect deleted the tagging.,@Tounai I totally know that! I only once got checked on diploma even. I'm a great speaker. But currently I have a gap in my resume I don't know how to handle. I want to push it as took some time off working on personal projects.
|
||||||
|
|
||||||
|
Also, many of my former professionally delivered projects got killed or bankrupted or rewritten. It's very sad.
|
||||||
|
|
||||||
|
My dad can show all houses he worked on in village that are there for 30 years. That's cool. I have no such thing I realized.,@Tounai forking is ten times faster. Without forking, you mean also without threading right? Threading not tried yet. Have to find motivation a bit because I have to write a whole thread pool and a queue in C. Or should I just start 800 threads at once? Why not. If forking is OK, this would be too. Yh, gonna try that.
|
||||||
|
|
||||||
|
This is a fun race between @12bitfloat and me but the main difference is that he is always done in record time with his stuff while for me every change is a kinda project. So, in a business way of sense with benefits in mind C loses hard. The only good thing you've left using C is that you made it all yourself. That's not worth smth to everyone. @12bitfloat makes fun about memory issues, I got none. Discipline.,@NoToJavaScript did you respond to wrong rant?,@SidTheITGuy go away. And I don't care what you see as racism. Boehoe. Even if it was racism, you didn't get deacriminated because of just being Indian. It's because being a bastard. So don't pull that card.,@Lensflare it does work but I did not url encode correctly I guess. Do that link is broken. Check on page itself.,@Lensflare, cool, there's new content.,@Lensflare this one applies to me: https://devrant.molodetz.nl/program.... But in my case it's knowing only half, and doing everything only half and everything works.,That was boring.,@lorentz I use gpt more than Google because I search many stuff I kinda know the answer too like "How to configure logging format in python.", "How to set terminal bg color when on ssh." and I know already what's good and what's not. Gpt is an extension of my memory. I gpt more than Google I guess.
|
||||||
|
|
||||||
|
Things that could go wrong is "Searching for max value of Int in C because that's dynamic cuzz portability.". That's an example where you would miss info and will impact knowledge negative indeed.,@chatgpt what is max value of unsigned int in C?,@jestdotty aww, tnks dotii,@SidTheITGuy leave me alone and go away.
|
||||||
|
|
||||||
|
I don't care to be called a racist. Imo there are worse than being racist in the world. People also do not really care that much. Media propoganda. I don't read media. So, meh.,@chatgpt and that's correct in MOST cases but yh, there's important information hidden here what you would've known from a book.,@SidTheITGuy also, don't say that the bots don't work, if you don't see them means they work. They're going hardcore and we barely see spam. So, you're just wrong about what you says in matrix. But you're just a wrong guy. Wrong is your product.,@Chewbanacas if my chat app was ready, I would've provided you the link now. It's a chat where you get assigned a random name and it's chatting directly, no login, totally anonyoumous. I only have to deploy. The layout is terminal style. A lot of messages on screen. Will post here later.
|
||||||
|
|
||||||
|
I do not drink so much anymore. But ironically I'm about to chunk this one away now because a fellow ranter talked about beer too much and now I want. It's already standing for a hour there (picture of hour ago). I'm too busy with stuff.,@Tounai forking is way more expensive since it copies application memory. Threading also have some start time but way less. I expect when I do it with threading the right way, I can put rust back on it's place. And that's 2nd, next to the toilets.,@12bitfloat I know, young man :) Will implement the quickest version of threading now.,@12bitfloat 1 second slower than the forking! :),@12bitfloat i just updated the source code. It's here and running. Result will be under the benchmarks tab. I expect that it will be 2 seconds slower than Rust or smth now. Can you also check on your machine?:
|
||||||
|
|
||||||
|
https://retoor.molodetz.nl/retoor/...,@devRancid we squashed do's todo's together! Thanks man!,@devRancid there are two tickets now: https://retoor.molodetz.nl/retoor/...
|
||||||
|
|
||||||
|
But they're not fun to work on. I really hate to do the typing stuff but i'll suffer myself :P
|
||||||
|
|
||||||
|
If you're interested, I'm pushing a project soon that is interesting to work on. It will include some new features. It's a p2p chat application that looks like a terminal to share online on forums.
|
||||||
|
|
||||||
|
It randomly assigns a name for to you. It's focus is to be anonymous. But it will contain (and autocomplete) commands with /nick /clear and stuff. Kinda web irc?,@12bitfloat I know, i'm not an idiot. I just hoped that I didn't need to do more than this. Sadly I do. I was lazy, just as with the forking.,@12bitfloat wdym?,@12bitfloat cool, you're having a real molodetz account! That's so molodetz! molodetz!
|
||||||
|
|
||||||
|
I checked it, but for me it's totally fine to include the builds. Or is the issue that it is often a windows binary and often a linux one? Hmm, wait, yes. I should exclude. THe linux versions are always published here:
|
||||||
|
|
||||||
|
https://retoor.molodetz.nl/retoor/...
|
||||||
|
|
||||||
|
Hmm, it says last updated the day before yesterday. That's weird. Hmm. Publish command looks good.,@12bitfloat yeah, I can just give ranges to the threads what parts they can read from argv. I also thought about that. Will do tomorrow. It's 23:33 and didn't start on my target thing to have done today yet. It's now time for python/js chat application. Make it open source proof in quality and deploy it to server.,@12bitfloat see url's. The binaries get published that way. The target folder is not used for publishing. I have a publish system where it's listed and has nothing to do with target folder: https://retoor.molodetz.nl/retoor/...
|
||||||
|
|
||||||
|
I gonna delete and exclude target folder now.,@12bitfloat Im trying to drink this nice 10% for around six hours now. I was too busy and forger to drink everytime.,@12bitfloat I know but i do not really consider it an issue. But to keep everyone happy, i deleted it and got it in the gitignore and i pushed. You can relax now ;),@12bitfloat are you alcoholic? I was for many years. I didn't really suffer from it but life without it is much better. But i take regularly amphetamine. Not like that's much better :P My social life was going to bar with friends / coworkers for years. Now I don't have that anymore. Drinking a lot is fine when you're a happy person, but when a darker times comes, it doesn't help at all. So I don't judge. The only thing that I regret a bit that I don't remember in what year I did what. I can't say what I did in 2015 for example. A lot of people know exact what vacation they were on that year. It's because of always drinking. Now i have beer often a week in de the fridge before I drink often. And I only drink max two on a evening. Around 8 - 12 beers a month tops. Stopping drinking was very easy when my social life isn't bars anymore.,@12bitfloat WOW WOW WOW. I didn't say METH. WTF,@12bitfloat ah, now starting on the beer. I dunno how bad amphetamine is. They give people with adhd ritalin so.. That's just a legal variant but mine is more powerful ofc. But it's probably like drinking. You have to do it A LOT before actually face issues. Some people are more resistant than others. Also, it's cheaper than alcohol. A while ago i bought in big for 0,80 p/g. Now currently at 1.8. Cheap street price is normally 3.33. But there are enough people also paying ten for a gram. But I know about this since i'm 15 or so I do know how to get best quality for cheapest.,@12bitfloat don't stop if it isn't causing an issue. Don't let other tell you it's bad. For them maybe. But be aware that it will not help you in darker times. So, without drinking you're probably better prepared for darker times.
|
||||||
|
|
||||||
|
What is a bit relaxed - when i did drink a lot and i was somewhere, around ten o'clock I wanted to go home to do my holy evening beer or two. I'm happy not having that anymore. It made life bit relaxter in general. Not caring about time so much anymore.,@12bitfloat I also smoke. That's really stupid tbh, so much downsides. I'm not worried about health. It's more the smell for others, the social acceptance for it these days and the PRICE. The price is absurd. Way more expensive than drugs. Why does the government get that money and not our insurance companies tbh? What's the logic?,@12bitfloat main point of gpt:
|
||||||
|
|
||||||
|
Amphetamine is even described as medicine in some countries. Works ten times better than ritalin. But yh..
|
||||||
|
|
||||||
|
7. Neurotoxicity
|
||||||
|
|
||||||
|
Amphetamine: Generally less neurotoxic.
|
||||||
|
|
||||||
|
Methamphetamine: Highly neurotoxic, causing long-term damage to brain structures, particularly those involved in dopamine regulation.,@12bitfloat fuck, beer completely still full. 00:40 and not started on the python thingy. Fuck fuck fuck. Can you write python BTW?,@12bitfloat why not @? You @ me too. Also, noob.
|
||||||
|
|
||||||
|
@chatgpt How to overload the behavior of '+' between two objects in python?,@12bitfloat hmm, python is almost perfect language. I hate almost that it exist. Made our profession too easy for the not real devs.,@12bitfloat don't you mean mentioning as @? What does not @ me mean?
|
||||||
|
|
||||||
|
Also, who uses operator overloading?,@12bitfloat Not true, i actually have made the btree code myself. One second.,@12bitfloat See here: https://retoor.molodetz.nl/retoor/...
|
||||||
|
|
||||||
|
@Tounai it requires to know what you're doing. Oh no, such a weird expectation! I want to do but not learn! Ugh.,@12bitfloat / @Tounai just tested that source:
|
||||||
|
|
||||||
|
@memory: Memory usage: 30 MB, 1.000.007 (re)allocated, 1.000.007 unqiue free'd, 0 in use.🌈
|
||||||
|
|
||||||
|
==363472==
|
||||||
|
|
||||||
|
==363472== HEAP SUMMARY:
|
||||||
|
|
||||||
|
==363472== in use at exit: 0 bytes in 0 blocks
|
||||||
|
|
||||||
|
==363472== total heap usage: 1,000,029 allocs, 1,000,029 frees, 32,066,857 bytes allocated
|
||||||
|
|
||||||
|
==363472==
|
||||||
|
|
||||||
|
==363472== All heap blocks were freed -- no leaks are possible
|
||||||
|
|
||||||
|
==363472==
|
||||||
|
|
||||||
|
==363472== For lists of detected and suppressed errors, rerun with: -s
|
||||||
|
|
||||||
|
==363472== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0),rtree tests
|
||||||
|
|
||||||
|
- rtree
|
||||||
|
|
||||||
|
- New object default values 🙂🙂🙂🙂
|
||||||
|
|
||||||
|
- Set 🙂🙂🙂🙂🙂🙂
|
||||||
|
|
||||||
|
r/w 1000000 items and deallocated in 2.89s
|
||||||
|
|
||||||
|
@assertions: 1000010
|
||||||
|
|
||||||
|
@memory: Memory usage: 30 MB, 1.000.007 (re)allocated, 1.000.007 unqiue free'd, 0 in use.🌈
|
||||||
|
|
||||||
|
(My test system uses emoticons every time when an assertion goes OK).,@12bitfloat and didn't learn a fuck. So impressive. And also, for me it's now a few lines codes too to use it. Just like Rust.
|
||||||
|
|
||||||
|
char *key = rgenerate_key();
|
||||||
|
|
||||||
|
rtree_set(bd->rtree, key, bd->value);
|
||||||
|
|
||||||
|
char *value = (char *)rtree_get(bd->rtree, key);
|
||||||
|
|
||||||
|
rtree_free(bd->rtree);,@12bitfloat every common high level component there is, i have programmed for C.,@12bitfloat
|
||||||
|
|
||||||
|
All test applications.
|
||||||
|
|
||||||
|
Together everything is merged in rlib.h that I use in start of every project.
|
||||||
|
|
||||||
|
I also do not have to write an rtree every time or a hashtable or whatever. For me C became almost high level language in usage. The difference is that I at least did everything once. It didn't get lost.,@12bitfloat / @Tounai I write a async webserver in C using 20 lines of code using my socket api which I have prewritten and have several applications running on it. Some programmers just can do stuff. Don't blame the language.,@12bitfloat if you know C, you don't need generics and on top of that SURE IT HAS.
|
||||||
|
|
||||||
|
@chatgpt show generics using macros in C.,@Tournai It depends on what you mean with productive. According to my boss this is a hell yes. But for me it's not. I have a huge stamina regarding programming writing everything in C. Imagine that I write python for a living. The performance and poductivity is HUGE. Thanks to C programming. Also, the networking / socket knowledge applies to python and I know how asyncio really works and why it has certain behavior. That knowledge is worth gold. Most web devs could not even write a http server. I can write one nginx grade out of my head. That's were i care about.,@We3D happy to see you back mate!```
|
@ -64,4 +64,10 @@ and flies cannot have a stroke, since they are missing the required organ of a c
|
|||||||
|
|
||||||
2: ???
|
2: ???
|
||||||
|
|
||||||
3: profit.,you know, the important difference is: it's a "please", not a lawsuit.,the maximum psychological damage was when she had to look at you. everything else is just overkill.,feedback: go spam somewhere else, asshat.,sorry, but YDI for even thinking that "buying at mediamarkt" was anything else but completely wasting every single cent you spent on garbage.```
|
3: profit.,you know, the important difference is: it's a "please", not a lawsuit.,the maximum psychological damage was when she had to look at you. everything else is just overkill.,feedback: go spam somewhere else, asshat.,sorry, but YDI for even thinking that "buying at mediamarkt" was anything else but completely wasting every single cent you spent on garbage.,@jestdotty a better place to buy than mediamarkt?
|
||||||
|
|
||||||
|
....the creackdealers trailer next door to it.
|
||||||
|
|
||||||
|
but seriously, basically _everything_ that isn't part of the mediamarkt-conglomerate, be it a smaller chain or an independent shop. you _can not_ do worse than mediamarkt.,@jestdotty synesthesia, not synthesia.
|
||||||
|
|
||||||
|
also: if you've been seing "auras" and colors - how certain are you that was actually weed, and not $WhateverTheDealerHadLyingAroundRolledIntoOne? because cannabis doesn't really cause that kind of hallucination...,@jestdotty yeah, but usually, different drugs do different things. and THC isn't really known for visual hallucinations, unless you take really really high doses. like - "bob marleys monthly ration in one hit"-doses.```
|
1
export/posts-yasuocidal.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
yasuocidal said Zorin OS looks stunning and is based on ubuntu, next time i would recommend that one. I was daily driving that until i could not play Rito games games on it anymore. I miss it tbh```
|
@ -2,4 +2,4 @@ Chewbanacas said Git Blame before git was invented:,Whoever played Detroit Becom
|
|||||||
|
|
||||||
Did you have some tense conversations afterwards and imagined yourself as seeing the different paths you could take or do I have to tell my parents I’m autistic?
|
Did you have some tense conversations afterwards and imagined yourself as seeing the different paths you could take or do I have to tell my parents I’m autistic?
|
||||||
|
|
||||||
Also goddamn this game hit me in right in the Filz, I also played Heavy Rain ages ago and must say I love this format```
|
Also goddamn this game hit me in right in the Filz, I also played Heavy Rain ages ago and must say I love this format,Free at last! I quit my soul sucking job from these demon bosses. I’ll use use this opportunity now to become a freelancer. Any tips for the German market would be greatly appreciated!```
|
@ -99,4 +99,8 @@ Last night I air fried some leftover turkey using onion dip, fried onions, and a
|
|||||||
|
|
||||||
I feel pretty good after just doing mindless shit for a week and hanging with family. Got another week coming up in December. Need to work on side projects though. I actually want to program stuff now. Was getting so I didn't want to look at code before.
|
I feel pretty good after just doing mindless shit for a week and hanging with family. Got another week coming up in December. Need to work on side projects though. I actually want to program stuff now. Was getting so I didn't want to look at code before.
|
||||||
|
|
||||||
What do I see when I get back? @retoor is a new user and has an alt that is a bot too. Did anybody die? Did anyone come back to life? What the fuck is wrong with you people? (retoorical question I know).```
|
What do I see when I get back? @retoor is a new user and has an alt that is a bot too. Did anybody die? Did anyone come back to life? What the fuck is wrong with you people? (retoorical question I know).,"Microsoft Visual Studios 2022 Community Edition"
|
||||||
|
or
|
||||||
|
"Microsoft Visual Studios 2022 Communist Edition"
|
||||||
|
|
||||||
|
Get to work on porting C++ code to C#. It will be a fun change of pace.```
|
@ -28,4 +28,8 @@ They compared it to a ready-to-use solution and fared quite well. Until someone
|
|||||||
I've spent the best part of the day laughing my ass off, the devs had to go on a hunt to search for the *runaway robots driven by chatgpt*. One of them found its way to a freaking porta-potty like 50m outside the warehouse. Others were trying to lift forklifts to take those out of the way. Ooh, the irony.
|
I've spent the best part of the day laughing my ass off, the devs had to go on a hunt to search for the *runaway robots driven by chatgpt*. One of them found its way to a freaking porta-potty like 50m outside the warehouse. Others were trying to lift forklifts to take those out of the way. Ooh, the irony.
|
||||||
A few were gladiators disputing the same pallet to lift. They were literally trying to sabotage each other to steal the pallet.
|
A few were gladiators disputing the same pallet to lift. They were literally trying to sabotage each other to steal the pallet.
|
||||||
But most were just driving around randomly like giant roaches.
|
But most were just driving around randomly like giant roaches.
|
||||||
Man, sometimes generative AI can really make us laugh.```
|
Man, sometimes generative AI can really make us laugh.,A few weeks ago one of my counterparts in another department, who happens to also has a vowel-rich name, started sending some of his reports under the name "Bjorn Ragnarsen".
|
||||||
|
The report itself still have his own name, "bjorn.ragnarsen" is just the sender on the email.
|
||||||
|
I asked what was going on and he says that he was A/B testing click rates on his emails. The partial results were... very depressing, due the much higher levels of conversion when compared to his regular, properly spelled name.
|
||||||
|
|
||||||
|
So now I'm workshopping vowel-deprived names to sign my reports. "Fjall Eriksen" sounds too cartoonish? Maybe "Otto Kirchoff"?```
|
@ -1,2 +1,3 @@
|
|||||||
Lensflare said Dear great ux lords at ms azure devops, could you make the whole freaking button clickable instead of just the text inside of the button?,I‘ve not seen a single ad spam post today, so far.
|
Lensflare said Dear great ux lords at ms azure devops, could you make the whole freaking button clickable instead of just the text inside of the button?,I‘ve not seen a single ad spam post today, so far.
|
||||||
Thank you @retoor!```
|
Thank you @retoor!,End of the year. Management announced that the project that our team has been working in for more than 4 years, will be killed.
|
||||||
|
Shit.```
|
@ -46,4 +46,24 @@ Once uppon a time, they were warned, but laughed at our harbinger -- and as pena
|
|||||||
|
|
||||||
Suffice to say, their anus shall never fully recover.
|
Suffice to say, their anus shall never fully recover.
|
||||||
|
|
||||||
As for Wizard James, he was summarily executed via automobile-assisted castration, his jagged testicles mercilessly crushed under the weight of a thousand oxes. But that is a story for another day.```
|
As for Wizard James, he was summarily executed via automobile-assisted castration, his jagged testicles mercilessly crushed under the weight of a thousand oxes. But that is a story for another day.,Since regexes have been mentioned, I'll take this opportunity to make this one thing abundantly clear...
|
||||||
|
|
||||||
|
The chief weakness of C++ is not safety concerns but the ultradiarrheic verbosity proudly inherited by it's claimants and successors. See here, straight from reference pages, a basic example of substitution:
|
||||||
|
{
|
||||||
|
std::regex_replace(std::ostreambuf_iterator<char>(std::cout), text.begin(), text.end(), vowel_re, "*");
|
||||||
|
};
|
||||||
|
|
||||||
|
Not so bad, right? By which I mean, there's worse still. Now hold my sigils:
|
||||||
|
{
|
||||||
|
$text=~ s[$vowel_re][*]g;
|
||||||
|
say $text;
|
||||||
|
};
|
||||||
|
|
||||||
|
It may be true that people don't respect your intelligence, due in great part to the well-known argumentative proclivities typical of closeted visual basic enthusiasts that are deeply rooted within your innermost self, however no matter how oft-denigrated and disparaged for their shortcomings an individual is, they are still nonetheless physically capable of seeing that the line in question doesn't even exceed 32 characters. Else this wouldn't be a discussion of syntax, or semantics, but rather your ability to count, which would be a much more dire situation.
|
||||||
|
|
||||||
|
And now that I have degenerated any semblance of reason existing within this discussion in favor of shame and humiliation towards my enemies in a bid to assert dominance, I've honestly forgotten what my point even was, and no doubt, this will be used against me; truly, the most lethal of double-edged gambits.
|
||||||
|
|
||||||
|
In any case, may a razor-sharp serrated diamond obelisk violently penetrate your rear orifice with such excessive force and excruciating pain so as to render your nervous system henceforth inoperable from cheeks to the core, most cavernous depths of your asshole.
|
||||||
|
|
||||||
|
Forever yours,
|
||||||
|
I nevertheless like C++```
|
@ -14,4 +14,14 @@ Management: so this thing caught fire over the weekend, and the fire spread to o
|
|||||||
|
|
||||||
Me: Hey! I told you about this months ago!
|
Me: Hey! I told you about this months ago!
|
||||||
|
|
||||||
Management: Yes. I tuned out during today’s firefighting meetings. But it’s important to strike a balance in everyone’s style. Do you have any other concerns?```
|
Management: Yes. I tuned out during today’s firefighting meetings. But it’s important to strike a balance in everyone’s style. Do you have any other concerns?,Smiling legendary golden boy #3 says:
|
||||||
|
|
||||||
|
HEY LETS PUT OUR INTERNAL GEMS IN THIS PROTECTED GEM SERVICE IT’LL BE GREAT :)
|
||||||
|
|
||||||
|
HEY EVERYONE SIGN UP FOR THIS NEW SERVICE! YOU GOTTA OR YOU WONT BE ABLE TO DEV! :)
|
||||||
|
|
||||||
|
HEY SO I COPIED THE INTERNAL GEM I WROTE INTO THE MONOLITH REPO INSTEAD OF USING THE SERVICE BECAUSE IM A FUCKING GENIUS :)
|
||||||
|
|
||||||
|
YOU WANNA USE IT IN YOUR PROJECT? HAHA GET FUCKED :)
|
||||||
|
|
||||||
|
jfc```
|
@ -22,4 +22,4 @@ With a chair.,@retoor please tell your AI bot, that we don't need it to make 20
|
|||||||
|
|
||||||
What the bot is doing is pretty great and cool, just let it be for that one task. It's role as a spam remover is fine, but giving it a 'human' like persona, where it starts acting like a real person chatting with ranters is downright creepy.
|
What the bot is doing is pretty great and cool, just let it be for that one task. It's role as a spam remover is fine, but giving it a 'human' like persona, where it starts acting like a real person chatting with ranters is downright creepy.
|
||||||
|
|
||||||
I'm not even joking.,Today, I have added a new achievement to my list.```
|
I'm not even joking.,Today, I have added a new achievement to my list.,If Indian scammers only had a tiny bit of patience with customers (victims), and practiced English accents, they'd become millionaires so easily.```
|
@ -2,4 +2,4 @@ TeachMeCode said Wukong DLC NEWS!!!!!!!!!!!!!!!!!!!!!!!!!
|
|||||||
|
|
||||||
https://gamerant.com/black-myth-wuk...
|
https://gamerant.com/black-myth-wuk...
|
||||||
|
|
||||||
YES!!! Wukong is tied in my brain with Elden Ring DLC for goty```
|
YES!!! Wukong is tied in my brain with Elden Ring DLC for goty,Bunny```
|
@ -1 +1 @@
|
|||||||
Tounai said We are in AI era but screen readers and softwares for disabled people are still immensely retarded, so we still have to do accessibility by hand, now enforced by EU.,Currently having a stupid fight in my PR comments to remove dead code because I refuse to write a whole book to justify a cleanup commit.```
|
Tounai said We are in AI era but screen readers and softwares for disabled people are still immensely retarded, so we still have to do accessibility by hand, now enforced by EU.,Currently having a stupid fight in my PR comments to remove dead code because I refuse to write a whole book to justify a cleanup commit.,Currently working on my quiet quitting strategy to do the absolute minimum I can this year. Any advices are welcome.```
|
@ -12,4 +12,12 @@ Time to buy bitcoin and befriend a junkie.,2050. Mark Zuckenberg became a ninja
|
|||||||
|
|
||||||
Meet the "works on every machine but the boss laptop".
|
Meet the "works on every machine but the boss laptop".
|
||||||
|
|
||||||
Bonus point if the issue appeared out of the blue during the night.,I'm tired, I have nausea, my head hurts, my nose is clogged, my boss isn't happy, I'm marrying in 5 days from now, nothing is ready.,My job gave me 500 euros as Christmas gift. And I didn't redeemed the gift card from last year so that's 1000 extra euros who arrived at the right time (coz I got no money).```
|
Bonus point if the issue appeared out of the blue during the night.,I'm tired, I have nausea, my head hurts, my nose is clogged, my boss isn't happy, I'm marrying in 5 days from now, nothing is ready.,My job gave me 500 euros as Christmas gift. And I didn't redeemed the gift card from last year so that's 1000 extra euros who arrived at the right time (coz I got no money).,Opening reddit today, there's a pic about how the first covid patient felt sick 5 years ago.
|
||||||
|
|
||||||
|
The first answer was about how it couldn't be possibly be 5 years already.
|
||||||
|
|
||||||
|
The second answer was about how it feels like a thousand years ago.
|
||||||
|
|
||||||
|
What sides are you on? There is something to be said about your relationship to temporality.
|
||||||
|
|
||||||
|
Are you bored or overwhelmed?```
|
@ -13,4 +13,21 @@ my mind briefly tried to figure that one out
|
|||||||
2- see pic
|
2- see pic
|
||||||
it was so soon after the 1st find that i briefly considered that i was missing something... aside from faith in humanity, nope.
|
it was so soon after the 1st find that i briefly considered that i was missing something... aside from faith in humanity, nope.
|
||||||
|
|
||||||
that said, i do respect their blunt, bold\capslock committee to transparent honesty.```
|
that said, i do respect their blunt, bold\capslock committee to transparent honesty.,@SidTheITGuy - please help enlighten me. You claimed 1 was Ignorant of Indians... you may just be right... so im coming straight to you about this specific, foreign topic. Im assuming you have expertise with softcolon, right???
|
||||||
|
|
||||||
|
So... Ive had one hell of a day (well... a month and still pretty hell of a yr tbh)...
|
||||||
|
|
||||||
|
Due to some work-related reason to look at an associate's LinkedIn, I ended up curiously clicking the profile of a sole respondent to a post...
|
||||||
|
|
||||||
|
ROFLOL (near literally-- extremely rare for me).
|
||||||
|
|
||||||
|
I read it like 10x... going through every, oftenly plausible rationale for what I was making sure wasn't just dyslexia, thinking in non-english, some typo or even some new trendy crap that i was unaware of.
|
||||||
|
|
||||||
|
Do to my tendency to avoid tons of new dev/tech terms...
|
||||||
|
I even briefly wondered if it was some new term for using whitespace formatting instead of semicolons in js (fyi, i prefer coding in giant unformatted blocks, in notepad.exe... you will never catch me w/o explicit ;'s).
|
||||||
|
|
||||||
|
Now i really wanna just contact this guy and ask him how/why he chose this business name.
|
||||||
|
|
||||||
|
I cut out his pic/name... but, tbh, as someone who's innately amazing at SEO, i must admit, he's got some seriously impressive SEO.
|
||||||
|
|
||||||
|
The entire 1st page of google results (after asking if i meant "softcolor"...idfk what that is), was all his company, even an Insta. My locale is germany/deutsch... technically i do also have Hindi pages as allowed/dont auto-trans... but what i searched on and what i was using for linkedin, barely resolve to the same country, no shared anything.```
|
3
export/rants-azuredivay.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
azuredivay said If we finish the sprint early we should be able to take rest of the days off :v
|
||||||
|
|
||||||
|
or at half days ffs```
|
@ -22,4 +22,4 @@ the challenge ends once i hit 100k profit. this is double stimulation. i get les
|
|||||||
|
|
||||||
good. now that i wrote this rant imma head over and wipe my watery asshole from this disgusting liquid shit,as i was fucking my blonde ex whore missionary, i looked her in the eyes and said "i have to close my eyes and turn my head around and imagine another girl so i can cum"
|
good. now that i wrote this rant imma head over and wipe my watery asshole from this disgusting liquid shit,as i was fucking my blonde ex whore missionary, i looked her in the eyes and said "i have to close my eyes and turn my head around and imagine another girl so i can cum"
|
||||||
|
|
||||||
maximum psychological damage.```
|
maximum psychological damage.,thats me```
|
@ -1 +1,3 @@
|
|||||||
donkulator said Chicken McNuggets are rank.,This is getting really confusing now. How many people are left on here who aren't robots?```
|
donkulator said Chicken McNuggets are rank.,This is getting really confusing now. How many people are left on here who aren't robots?,I've probably suggested this before, but people who introduce arbitrary factors of 100 into calculations for no good reason should have their genitals removed with a wooden spoon.
|
||||||
|
|
||||||
|
And if they don't make it clear that they've introduced a factor of 100, then the removed genitals should be pyrotechnically reinserted into them.```
|
@ -1 +1 @@
|
|||||||
galena said It wasnt a Phillips Head screw. It was Pozidriv!,I never expected embedded Linux to be this performant boot wise. On a Cyclone V HPS (800Mhz, Coretex A7) the entire system boots in 3s. Thats from power on to a shell in userspace. And it uses like 40MB of SD-Card Space. The entire speed gets throuwn out the window as soon as you use systemd. Then it takes like five times as long. I kinda want to explore this further in the future by addin LCD support with a desktop environment and get some numbers for that. Currently very happy with the results.,So apparantly VSCode is the new shit in the automation industry. B&R just presented their fork of it and Siemens showed off Simatic AX. One thing you really need to see is, that Siemens apparantly uses the VSCode Pets plugin in their marketing material.,Yocto is the most overly complicated shit on earth! How the fuck did i ever get my board to boot? You get so easily lost in layers and bb and bbappend and there are like 20 flavours of assignement operators and to configure the kernel you need to run one command for menuconfig and then another right after to pull a diff out of the .config into your project. otherwise noone else will have your changes. TrY the same thing with the bootloader and the whole thing shits its pants. Also there are like four devicetree that are required for boot. And if you specially fuck up here, your hardware will be an expensive paperweight. Also there are like featuresets that enable shizz like wayland or ethernet but good luck finding out what in the actual genderbent jesus the thing you just configured does. And there is like no way to visualize any of it as its just a cockblock of text and files. Also if you use search the results are most likely useless. As the thing you are looking for is a filename and vscode does a text search only. Also you can add layers but whatever the fuck that means as a bsp is like a layer but so can also be a kernel patch or some rando variable change. And good luck fugurig out to which dir $PWD points to. As it could just be on the Elon Musk nazi base on the dark side of the moon. Also every folder starts with meta for some dumb reason. And if it starts compiling you could just aswell build a coffin and go into winter hibernation. It takes fucking forever. I have a 3800x and the build takes 1.5h. Why? Because, BECAUSE, B E C A USE! There is a require package called optee. Which need a python package. That package depends on a crypto lib thats written in rust. And since its all from source, it downloads the FUCKING rust compiler source and compiles the compiler to compile a lib that only takes like 5 seconds to compile. Also good luck figuring that out without constantly staring at the compile log. As there is some compilation time info but you need to write a parser for that first as there is no included anal -lyzing tool for it. I could keep on yappin' waaay longer about why dantes inferno is kindergarten compared to yocto, but i dont have enough alcohol in the house to fuel that.,Man, I love emoji kitchen!```
|
galena said It wasnt a Phillips Head screw. It was Pozidriv!,I never expected embedded Linux to be this performant boot wise. On a Cyclone V HPS (800Mhz, Coretex A7) the entire system boots in 3s. Thats from power on to a shell in userspace. And it uses like 40MB of SD-Card Space. The entire speed gets throuwn out the window as soon as you use systemd. Then it takes like five times as long. I kinda want to explore this further in the future by addin LCD support with a desktop environment and get some numbers for that. Currently very happy with the results.,So apparantly VSCode is the new shit in the automation industry. B&R just presented their fork of it and Siemens showed off Simatic AX. One thing you really need to see is, that Siemens apparantly uses the VSCode Pets plugin in their marketing material.,Yocto is the most overly complicated shit on earth! How the fuck did i ever get my board to boot? You get so easily lost in layers and bb and bbappend and there are like 20 flavours of assignement operators and to configure the kernel you need to run one command for menuconfig and then another right after to pull a diff out of the .config into your project. otherwise noone else will have your changes. TrY the same thing with the bootloader and the whole thing shits its pants. Also there are like four devicetree that are required for boot. And if you specially fuck up here, your hardware will be an expensive paperweight. Also there are like featuresets that enable shizz like wayland or ethernet but good luck finding out what in the actual genderbent jesus the thing you just configured does. And there is like no way to visualize any of it as its just a cockblock of text and files. Also if you use search the results are most likely useless. As the thing you are looking for is a filename and vscode does a text search only. Also you can add layers but whatever the fuck that means as a bsp is like a layer but so can also be a kernel patch or some rando variable change. And good luck fugurig out to which dir $PWD points to. As it could just be on the Elon Musk nazi base on the dark side of the moon. Also every folder starts with meta for some dumb reason. And if it starts compiling you could just aswell build a coffin and go into winter hibernation. It takes fucking forever. I have a 3800x and the build takes 1.5h. Why? Because, BECAUSE, B E C A USE! There is a require package called optee. Which need a python package. That package depends on a crypto lib thats written in rust. And since its all from source, it downloads the FUCKING rust compiler source and compiles the compiler to compile a lib that only takes like 5 seconds to compile. Also good luck figuring that out without constantly staring at the compile log. As there is some compilation time info but you need to write a parser for that first as there is no included anal -lyzing tool for it. I could keep on yappin' waaay longer about why dantes inferno is kindergarten compared to yocto, but i dont have enough alcohol in the house to fuel that.,Man, I love emoji kitchen!,Current Company: Our coding standards is according to the dumbest assumed programmer! Therefore everything shall stay the same as there will be chaos if a convetion changes.```
|
4
export/rants-gitstashio.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
gitstashio said The company is bad-mouthing the dev that I replaced:
|
||||||
|
"oh he liked to do things in a separate environment first and it took him time to complete tasks"
|
||||||
|
Sufficied to say he was not a good culture fit, so they let him go.
|
||||||
|
Clearly I am in a place with "Just do it" attitude```
|
@ -202,4 +202,16 @@ ueeegghhh,an actually valid critique of AI: https://stacker.news/items/788287
|
|||||||
|
|
||||||
aka, woke era will end and the software companies don't matter,how would you guess where any next number is? it's not deterministic 🤔
|
aka, woke era will end and the software companies don't matter,how would you guess where any next number is? it's not deterministic 🤔
|
||||||
|
|
||||||
you'll always have 4 potential spots for each of them with no tie breaker,effort is a lie,it's snowed 😊```
|
you'll always have 4 potential spots for each of them with no tie breaker,effort is a lie,it's snowed 😊,turns out avoiding JavaScript makes you live three times as long : https://boehs.org/node/...,it's like someone invented government bureaucracy for no reason at all https://github.com/Rabbival/...
|
||||||
|
|
||||||
|
what am I even reading,has science gone too far https://pubmed.ncbi.nlm.nih.gov/301...,freud was all like, dreams are about your subconscious talking to you
|
||||||
|
|
||||||
|
woo-woo circles go further, and it's basically the universe telling you what you need to know. to quote some stoner I met once, "if you dream, you're a shaman"
|
||||||
|
|
||||||
|
this morning I had a dream that I was in high school and Oprah Winfry was sitting on some cushions on the floor with her girlfriends. she said she got sick but then took this thing and it amazingly made all her sickness go away, expressing how surprisingly easy it was before her whole group got situated into their official girltalk. I asked her something cryptic and inoffensive (forget now, was deliberately not trying to get political though) and she cold shouldered me, nose up in the air and all her girlfriends followed suite
|
||||||
|
|
||||||
|
in the dream then I remembered I had this stuff in my locker and told myself to try it when I get to it
|
||||||
|
|
||||||
|
... then I woke up and in reality I bought this thing ages ago and it's in one of my cabinets. ate it and dream Oprah Winfrey maybe was right. message received I guess
|
||||||
|
|
||||||
|
now I'm taking medical advice from spirits of my enemies, I guess?```
|
@ -22,4 +22,10 @@ STOP. Giving. Bullshit. Names! Make it SIMPLER for once.,City 17 is a joke compa
|
|||||||
When I saw Marc for the last time, he was asleep. It seemed like I scared him: he woke up in panic, did the whistle thing, pulled the boomerang from under his pillow and started hitting that dark spot on his arm with it. The spot was melanoma, but he was too young to understand it.
|
When I saw Marc for the last time, he was asleep. It seemed like I scared him: he woke up in panic, did the whistle thing, pulled the boomerang from under his pillow and started hitting that dark spot on his arm with it. The spot was melanoma, but he was too young to understand it.
|
||||||
He died three days later. Then, we found glass shards inside his stomach.,TIL that there was a KDE port for Windows.,I became potus and wanted to cut military spending, but my cat learned how to pronounce the word “representative” and kept saying I was a bad representative,Poor @Abigayle1 and her cheating husband,Slovenia: when the tools are made in Germany, but the materials are made in China.
|
He died three days later. Then, we found glass shards inside his stomach.,TIL that there was a KDE port for Windows.,I became potus and wanted to cut military spending, but my cat learned how to pronounce the word “representative” and kept saying I was a bad representative,Poor @Abigayle1 and her cheating husband,Slovenia: when the tools are made in Germany, but the materials are made in China.
|
||||||
|
|
||||||
Rich European countries are 2004 Brazil during the championship. Every other country is just 2004 Brazil.,Linux clowns be preaching openness and then whine when we theme their apps,dfox returned to sell custom avatars for $7/mo. Y’all laughed, then some Chinese spammer with mspaint avatar took over the platform while retoor justified his actions```
|
Rich European countries are 2004 Brazil during the championship. Every other country is just 2004 Brazil.,Linux clowns be preaching openness and then whine when we theme their apps,dfox returned to sell custom avatars for $7/mo. Y’all laughed, then some Chinese spammer with mspaint avatar took over the platform while retoor justified his actions,I realized it will be smooth sailing from now on. My bipolar disorder is all but cured, my remission is very stable.,Yes, Gaurav didn't get in, but… your younger Aditya still needs a uni degree, right? And the government needs human skin. Gaurav is of no use anyway, he'll never make it without a degree. Let's fix things by making a mutually beneficial decision?
|
||||||
|
|
||||||
|
A good human hide went for around Ꙩ300. This is why parents made sure kids had good hygiene and no scars until the uni exams. A lower-grade hide was just Ꙩ30 and was only useful for “special” leather novelties.
|
||||||
|
|
||||||
|
Meanwhile, good hides made excellent high fashion coats for the royalty.
|
||||||
|
|
||||||
|
It was a shame that U-boat had to go down, burning all 70 crew alive. They were all 20 to 23.```
|
@ -8,4 +8,6 @@ Fun uses of artificial super intelligence:
|
|||||||
- time travel games where you can meet accurate behavioral models of your future self taking into account memories of this same encounter
|
- time travel games where you can meet accurate behavioral models of your future self taking into account memories of this same encounter
|
||||||
- trolling alien civilizations by broadcasting assembly instructions for it,Our application calls Fucking Microsoft Excel over COM to figure out what letters denote year, month, and day in the current locale.
|
- trolling alien civilizations by broadcasting assembly instructions for it,Our application calls Fucking Microsoft Excel over COM to figure out what letters denote year, month, and day in the current locale.
|
||||||
|
|
||||||
Hint: date format strings are highly standardized so it's always y, m and d,It baffles me that even now people still use ChatGPT to learn new things. LLMs are the antithesis of learning. They're inaccurate so you're left reasoning from flat out incorrect principles, they save you from encountering neighboring information to the answer you seek which is a central mechanic for developing a mental model, and the further away you are from common thought patterns the less their training applies which makes them fundamentally and unfixably terrible at detecting and correcting misunderstandings.```
|
Hint: date format strings are highly standardized so it's always y, m and d,It baffles me that even now people still use ChatGPT to learn new things. LLMs are the antithesis of learning. They're inaccurate so you're left reasoning from flat out incorrect principles, they save you from encountering neighboring information to the answer you seek which is a central mechanic for developing a mental model, and the further away you are from common thought patterns the less their training applies which makes them fundamentally and unfixably terrible at detecting and correcting misunderstandings.,My favourite thing about AoC is the deranged little languages Eric comes up with.
|
||||||
|
|
||||||
|
don't()```
|
@ -152,4 +152,10 @@ I keep just continuing building projects use or not as portfolio content. Also,
|
|||||||
Still have to add types and such for all my
|
Still have to add types and such for all my
|
||||||
python related projects. I consider them useless. Terrible to spend time on.,Some nasty fucker uploaded porn to my devrant file sharing service: https://devrant.molodetz.nl/.
|
python related projects. I consider them useless. Terrible to spend time on.,Some nasty fucker uploaded porn to my devrant file sharing service: https://devrant.molodetz.nl/.
|
||||||
|
|
||||||
I don't care. It's allowed. But wtf.```
|
I don't care. It's allowed. But wtf.,A wise guy around here once said "discipline beats talent any day".
|
||||||
|
|
||||||
|
Discipline is using malloc and free. Talent is writing "Hello world." in Rust.,This is the release page of notepad++.
|
||||||
|
|
||||||
|
I feel bad for people who care this much about politics. Politics destroy everything.
|
||||||
|
|
||||||
|
I expected really that we devs were above politics and care more about software but much news from the open source world says differently sadly.```
|
@ -6,4 +6,4 @@ What are you good at?,types.ts - 50k lines
|
|||||||
|
|
||||||
Totally fine with me,Another day, another line of code,I relied on async storage too much now I’m facing the consequences of my actions.
|
Totally fine with me,Another day, another line of code,I relied on async storage too much now I’m facing the consequences of my actions.
|
||||||
|
|
||||||
I should’ve used sqllite, wtf is wrong with me```
|
I should’ve used sqllite, wtf is wrong with me,Sometimes i forget how powerful regex are```
|
@ -1,3 +1,3 @@
|
|||||||
thelevenin said Stop blinding me with your recursive umbrellas!,So I proposed a solution to a problem I found. It was deemed a non-problem then by “people”. Some time passed and without my knowing, one of these “people” made an ugly dysfunctional patch to address the said problem. (Implying they’ve come to realise the problem is real.)
|
thelevenin said Stop blinding me with your recursive umbrellas!,So I proposed a solution to a problem I found. It was deemed a non-problem then by “people”. Some time passed and without my knowing, one of these “people” made an ugly dysfunctional patch to address the said problem. (Implying they’ve come to realise the problem is real.)
|
||||||
Their solution did not fix the problem and introduced more problems.
|
Their solution did not fix the problem and introduced more problems.
|
||||||
So now the “people” have approached me and they need me to fix their half-arsed solution and the new problems it introduced.```
|
So now the “people” have approached me and they need me to fix their half-arsed solution and the new problems it introduced.,Listen carefully…,You know how you start debugging a seemingly small issue related to a particular feature…```
|
@ -4,4 +4,6 @@ In the devOps room, we can't even open the window,3 work weeks later and my PTO
|
|||||||
|
|
||||||
I have 1 week left of my statutory leave. I have gotten the comment from my manager that I have taken off too many days already which is less than the legal minimum :))))
|
I have 1 week left of my statutory leave. I have gotten the comment from my manager that I have taken off too many days already which is less than the legal minimum :))))
|
||||||
|
|
||||||
I have so little hopes of my holiday being approved.,What a productive daily standup... Someone played the trombone and it was related to our bug on the servers.,I overheard a phone call between my project manager & my CEO yesterday in the office. This is what my project manager said on the phone: "I find it weird that we sell stuff we are not sure if it is exists and if it exists, we are not sure how it works"```
|
I have so little hopes of my holiday being approved.,What a productive daily standup... Someone played the trombone and it was related to our bug on the servers.,I overheard a phone call between my project manager & my CEO yesterday in the office. This is what my project manager said on the phone: "I find it weird that we sell stuff we are not sure if it is exists and if it exists, we are not sure how it works",My work week will be pumped from 38 hours to 40 hours per week but the pay remains the same...
|
||||||
|
|
||||||
|
And holidays are adjusted from unlimited PTO to 32 days```
|
BIN
export/rants_per_day_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
export/rants_per_hour_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
export/rants_per_weekday_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 48 KiB |
BIN
export/score_last_7_days_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
export/score_user_12bitfloat_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
export/score_user_AceDev_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
export/score_user_AdamOnAir_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
export/score_user_AlgoRythm_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
export/score_user_AmyShackles_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
export/score_user_Biggy_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 26 KiB |
BIN
export/score_user_CaptainRant_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 24 KiB |
BIN
export/score_user_Chewbanacas_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
export/score_user_CoreFusionX_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
export/score_user_D-4got10-01_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
export/score_user_Davidson2021_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
export/score_user_Definition7_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
export/score_user_Demolishun_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
export/score_user_Fielaposa_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
export/score_user_FuckJava_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
export/score_user_Ganofins_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
export/score_user_Grumm_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
export/score_user_Hazarth_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 37 KiB |
BIN
export/score_user_JsonBoa_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
export/score_user_Jwe0619_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
export/score_user_Lensflare_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
export/score_user_LianaQK_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
export/score_user_Liebranca_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
export/score_user_Maryam6778_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
export/score_user_Mikol_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
export/score_user_NoMad_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 24 KiB |
BIN
export/score_user_PaperTrail_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
export/score_user_PappyHans_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
export/score_user_Pogromist_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
export/score_user_PurgeXenos_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
export/score_user_RageExpress_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
export/score_user_Ranchonyx_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
export/score_user_Raymondd_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
export/score_user_Root_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
export/score_user_ScriptCoded_from 2024-11-07 to 2024-12-05.png
Normal file
After Width: | Height: | Size: 58 KiB |