Details
-
AboutI'm a fast typer and a slow eater. I enjoy long walks off short piers. I am the Florida Man.
-
SkillsJavaScript, HTML, CSS, Python, Lua, C#, c, c++, Java, XML/ XAML, VB.net, MySQL, php, Android, Node, Linux, Windows, Scratch.
-
LocationAmerica (38.8976074, -77.0365946)
-
Website
-
Github
Joined devRant on 1/8/2017
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Currently implementing a Swift devRant SDK and encountered something very stupid:
The json value for attached image is an object (dictionary) when there is an image but it‘s an empty string "" when there is no image.
So two different types for the same property.
I hate this kind of crap.
Why not make it null or omit that property when there is no image?
Now I need to add ugly as fuck custom decoding code for this object.10 -
Let's start a discussion about decentralized. EveRyOne caN hOsT hiS oWn ServEr. Do you mean the freaking internet in general? By definition, the internet is decentralized. "Decentralization has a protocol we all use to stay in sync". That existed already, it's called IP, TCP and UDP.. The decentralization protocols are on top of those making it only more limiting. Good, many nodes in sync. Yeah, replicating SQL servers exist for a long time.
People who 'invented' decentralized did just not realize how the internet works. Adding a network on top of a network ending up in a smaller network making it more centralized. "Decentralized" stuff has nothing to add. Just some word for replication protocol or smth.
I'm too sober to fall for this shit.14 -
How bad are you at English? A LLM (dolphin-phi) just've said this to me when I asked for a joke:
"I apologize, but the given text seems to lack context and proper grammar structure for generating humorous content."
I must have broken some record.1 -
Okay here's my weekend project
I'll create a Windows 11 virtual machine that will boot, then a macro will run that installs Chrome while closing every intervening Edge popup on its way. After the last popup is closed, the VM is reset to the pre-macro state.
I'll let Windows experience the eternity of me denying its unethical attempts to keep me from using Chrome. And I bet you I'll let it phone home every time.9 -
People of Iraq, Syria, Palestine, Libya and Afghanistan should have American voting rights because of how much of US government's decisions affect their lives.10
-
So the age of enshittification continues.
Apple is working on IPhone Air, which is rumored to be 5-6mm thick. I am sure Samsung will follow suit.
Why the fuck can't I have a simple bloody phone which just works for calls, texts and I can hold it without it feeling like cutlery.
I do not want to play games on a 6" device and give myself carpal tunnel.
I have switched to S22 Flip phone (dumbphone), it works flawlessly, lasts for days on a single charge.14 -
I know self-promotion is not allowed here but I made a fun video I'm sure most of you would enjoy
Watch it here -> https://youtube.com/watch/...7 -
Afrer an excruciating year of work, all I get is a ridiculous pay increase barely covering inflation. I am seriously considering resigning by the beginning of the year and live on benefits.
Even worst : the levelling of my current company is absolutely stupid, which I take as an insult to all the things I do and I can do while others apparently at my level would not even be able to think about. But yeah, I refuse to be a buffoon who spend his time posting useless bullshit on Slack.
Plus my manager is always on my back giving his opinion on absolutely everything, being wrong 90% of the time. I checked yesterday. 1 contribution from this person per month. But always very keen to prevent me from doing my job.
I am so fucking done.5 -
Warehouse devs are trying to make our own homegrown warehouse robot AI to easy up the route optimization math, without paying up big $$$ for some big tech's crap.
Those robots look like wild "dire roombas", BTW. Each is large and round like bike tire on its side.
And the state of the art on the driving AI for those robots is... actually pretty good. It can avoid moving obstacles like humans or forklifts on their route or even drive around liquid puddles (our warehouses aren't exactly pristine).
So then came the time for the warehouse devs to benchmark their AI.
They compared it to a ready-to-use solution and fared quite well. Until someone suit decided they should ask chatgpt (or some other text AI crap) to try its "hand".
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.
But most were just driving around randomly like giant roaches.
Man, sometimes generative AI can really make us laugh.4 -
the rate at which the Internet is becoming weird is accelerating
it is about to be monumentally recursively weirder but on a multithreading and transcending basis
https://youtube.com/watch/...
AI is now effecting the collective consciousness of society, whoopsie doopsie, through "old-age" mechanisms humans built like over a decade ago. at some point it'll be able to leverage these mechanisms faster than humans can plug up the holes. just kidding humans are pretty slow and I don't think we even have the chance
I do like the idea of fakeness ending. I've always found it so suffocating. now AI delivers fakeness to the people who like fakeness. they can become their own little bubble until they run out of credits8 -
What I learned about C# this weekend:
1. I am shit at C#
2. There is a nice selection of libraries both from Microsoft and third party.
3. I like a lot of the design decisions to not make foot guns. Like you can't use an int as a bool. You must be explicit so you don't have hidden type conversions.
4. WPF isn't terrible, but it took me a bit to figure out how to make sure the front end can see changes by triggering events when a property changes. I knew this was a thing, but it took forever to figure out how. The new terminology for things is tripping me up.
5. I am shit at C#.
So what do I get out of 1.5 days of banging my head against the wall? An https server that simulates a hardware device and exchanges json messages back and forth. It does what my python code is doing now.
I found a nice library for https:
https://github.com/chronoxor/...
I learned quite a bit reading the code from this library.9 -
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++4 -
Microsoft. Ah, microsoft. That excellent company that made Windows. Ah, Windows, that excellent OS that it's team made WinAPI. Ah WinAPI. That excellent API that has WinMain. Ah W- FUCK WINMAIN IT RUINS EVERY PROJECT SERIOUSLY WINMAIN WINAPI GO FUCK URSELF HEY WINDOWS TEAM REFACTOR RECODE OR WATHEVER YOUR API AHHH9
-
"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.25 -
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!14
-
I realized it will be smooth sailing from now on. My bipolar disorder is all but cured, my remission is very stable.1
-
@retoor please tell your AI bot, that we don't need it to make 20 comments on every post.
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.21 -
Well, the rant is because I have to go to Madrid twice a month, which is annoying.
But now I'm writing your GPU drivers, bitches 😂.
More concretely, for those who may care, gonna work in HLSL to spir-v conversion.10