Details
-
AboutEnthusiast of strict, safe, elegant and beautiful programming languages. Allergic against boilerplate. Certified hater of clown languages like JavaScript. 📱 Developer of JoyRant, the unofficial devRant iOS app that doesn’t crash.
-
SkillsSwift, SwiftUI. I have a truly large list of other skills which this margin is too narrow to contain.
-
LocationGermany
-
Github
Joined devRant on 6/30/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
-
Day 69 of "learning C#" or "this isn't C++":
Spent an hour maybe trying to figure out why I can't see Trace/Debug messages in the Debug output in WPF app. I have been doing a lot of testing in a Console app and Console.Writeline does what I need for testing and understanding how it works.
Today I am working a WPF app. I am using Trace/Debug.Writline and I get nada. Read up online and it "should" be working. I am compiling for Debug. I think, do I gotta actually run as Debug session to get output? Well, um, actually fucking yes. I know I can get console output if I want by changing app type/option or some shit. Its a group project so I don't want to mess with that for now.
Fuck you C#, WPF, visual studio! Whoever the fuck thought that was good default. I mean it probably is a good default performance wise. Fuck you anyway. lol5 -
Emailed a few recruiters last week. More or less immediately started getting a load of casino spam.
Clearly this is just a coincidence and that reputation for being a sleazy bunch of pimps is entirely undeserved.4 -
A 5-minute tutorial to register a fucking timesheet in your old-ass corporate shit tool: https://vimeo.com/1045331789/.... And I kid you not you need to convert worked hours to days so if you worked 6 hours write 0.75. Also it needs to be submitted 5-10 days in advance of the end of the month. If you are 1 hour late they will spam you and your manager, like WTF
This corporate behemoth of an IT consulting company I do (sub)contracting via is really stretching how draconian its timesheet policies can be. This is only one of the 4 timesheets I need to manually sync every month and coincidentally care the least about.
Every year they keep adding extra dumb rules that supposedly help managing their records. The moral of the story is I might quit my job for the first time due to the intermediate company's timesheets policies.2 -
Here in Germany we have early elections, because the current government failed due to internal disagreement. And as usual, each of them promises everything you can think of, just to get some more votes.
Lucky me, we have "die Partei" (yes, that's there literal name), who are basically just trolling everyone. Just checkout out their party platform for this election: https://www.die-partei.de/btw25/ (can be easily translated).
And yes, they can be elected. :)))9 -
So I onboard this guy on the project. One week in we worked on a task. There was a socket hang-up error. After a lot of debugging, I realized the issue was the value being sent over RPC to the API. Resolved in a huddle with the guy to show him how I debugged and found out.
2 weeks later, the client uses the API elsewhere, and runs into the same error, opens ticket. The new guy picks it up. After spending a day, says he can't find the issue, let alone reproduce it.
I have to jump in.
My guy, we just went through this recently. How much did he accumulate in 2 weeks since we did that, that he can't recall the fix6 -
Got a bit distracted today. Instead of doing what I've wanted, I created the most comfortable way to make a site ever. I'm serious. It beats all those static site generators.
Hmm, could even make a static site generator of this one. Won't do, no benefit.
It's by using markdown and it has support for syntax highlighting of many languages. A website could be literary:
# My blog
## some code
```c
printf("This is my C code");
```.
And you already have something decent. See the 'Get started' section. You have a site running in no time. See also the Python database example at the bottom, it shows you how to use the internal sqlite3 database in your 'static' site and how to create a visitor counter!
Sky's the limit.
I came up with the idea by teaching my next door neighbor HTML and that was succesfull. She is able to navigate trough files and folders and edit a file like most people. Then I realized, if it was markdown, it would be really user friendly for anyone to use. To create a decent site, you only need to make a stylesheet for someone. By using # ## ### #### headings, it will always be in your designed style.
People won't fuck your site up like they do with WYSIWYG normally.
The concept is so simple, I only see advantages and it could be used for small and big content sites. It doesn't do caching on purpose, overkill and it's more comfortable this way.
Here is project link: https://molodetz.nl/retoor/dreamii1 -
Have you ever started a new job and they have a bunch of legacy and technical debt so much that it doesn’t even makes sense trying to fix anything3
-
Visual Studio in the recent releases got some updates where it "accelerates build time" by caching DLLs or something
Good in theory? sure.
In practice? So very often, a "hot reload" now doesn't trigger a DLL swap. VS says that changes have been updated but you see stale code and you've to turn off the program and re-run it
I'm sure there's a way to turn this acceleration off and will do that after this rant, but I don't get how such retarded features get green-lit and make it to production :v
I understand that for biiiig solutions with minutes of build-time, this would be god-sent, but if it's this unreliable in my 8-Project Solution, I wonder how unreliable it'd be in bigger Solutions
at least turn it off by default if you know it's shit ffs.5 -
The sheer rage I feel after sending an 'urgent' email to a client, following up five times with no reply, and finally getting a reply a week later: 'Thanks for your patience!'... I wasn't being patient, I was suffering.2
-
I think the most important lesson you have to learn before discovering new Rust becomes easy is that edge cases matter, because formal descriptions almost never start with the most visible attribute; they start with the strongest one.
Almost every datastructure is Unpin, or should be at any rate. The benefit of Pin is that you can get rid of that *almost*, and define your operations for arbitrary sections of program state.1 -
Anyone else ignore the obvious signals that you're sick until you sound like a batman impressionist?3
-
If I've offended you with my posts I am sorry.
I honestly didn't think you could read.
Also, its FUCK YOU ALL FRIDAY!5 -
I wonder whether this has gotten here yet but it knocked me out. I don't write in trap English but I'm a sucker for memes. Imagine how bored he must have been to start documenting legacy code without the urge to refactor. Just "vibing"5
-
At my new job I'm allowed to goof around more while at the same time less. Im no longer limited to tech and can just choose the best tool for the job and fuck around trying out new interesting stuff that might work. But at the same time IF I FUCK UP, you will definetly read about it in the news!12
-
We have in our company an 8 GB Ram Intel MacBook Pro that they give to any new Mobile developers and is always returned bc the ram is not enough.
You’d have thought they understood after 3 years. But I just found out they still do it lol.6 -
I hate bash scripting so much !
What a shit language, its inconsistent af
Its just a pile of hacks upon hacks upon hacks. Theres no rime or reason to bash expansion, or to working with arrays.
Sometimes "$@" is a list, sometimes its not... Because fuck u thats why
So im doing a coding project at work, that has to be in bash for reasons.
It already feels like giving birth, llms are hard-carrying me and im not proud of it
And every time i think im done, and i can close this fucking epic, some issue pops up that necessitates a re-write
3rd one is also a no go apparently
And this all happened because *someone* in another department couldn't be fucked to implement the proper solution for this.
The scope of this piece of shit script keeps growing, because every month they be like
"oh this feature of service xyz ? Nah turns out we cant do that sowwy. But you can implement a workaround in bash right??
If you truly like bash as a language, you're cooked brother. you need to seek professional help :skull:12 -
Mind Blown...
So I was in a meeting with another dev talking to a customer. He instructed the customer to open a command prompt in Windows. Then to use the SSH command. In my mind I was assuming he had told the client to install SSH beforehand. Later I started thinking about it and did a search. Apparently Windows 10/11 have a version of OpenSSH installed by default. I had used Windows 7 in the past and always installed git shell to get this. So in my Windows 10 I did the same thing. git shell also supports aliases and other nice *nix like scripting features. So it is always a win.
So hear I am realizing SSH is installed by default on newer windows systems. Like damn, I never thought I would see the day. I think I still prefer git shell, but having SSH by default is nice to know. I know they got the subsystem shit to get Linux. But not everyone wants or needs that.
I probably should learn what is in Windows these days. lol. I mean, besides malware.4 -
Have you ever applied for a job and then spiraled after a few days of not hearing anything back?
Me too! 🙄😭😭😭14 -
Markdown syntax is ambiguous and always forgiving (any text in a markdown document is valid markdown). Syntax is complicated and context-dependent.
I honestly think it might be one of the trickiest languages to parse.10 -
Android studio gradle nightmares, cli not picking active jdk, intellij maven horrorshow, vscode being the nexus of perdition itself. When I'm dead and gone, scatter my ashes over sublime text. NEVER encountered a headache, ever. The setting for autosave is one forum visit away. 1000s of utilities at my fingertips, with shortcuts, not silly plugins. Neither hangs nor fusses irrespective of how many windows, projects, tabs I've got open. Gargantuan code real estate despite having a file panel and file preview. The only guys who got monokai right. Can open random editors and fill them with notes without first saving. A more intuitive vcs gui than even github desktop. More lightweight to download than an beep.ogg. Never lags cuz it wants to be powered by a wind turbine. It's free. Literally all the sorrows that terrorise my dev in its peers, all gone
Yes, it's not "integrated" to my de, in the sense that its intellisense is a glorified autocomplete for existing tokens. I guess, tradeoffs must be made. If you know the language well enough not to grope handheld by the ide, or in dynamic typed languages where red, squiggly lines will not bring your software down to its knees, it should be head and shoulders above those conartistes
Enterprise edition una -
Officially banned from 3 social networks. Reddit, Facebook, X.
I don't really mind but
I might need a neural link to moderate my thoughts before letting people know how idiotic their posts are.33 -
Just wrote an email to Rocket Chat with subject "Dear commercial hungry bastards" and complimented them with raping the f out of one of the best chat applications there is. With decent apps and stuff. For people who don't know, Rocket Chat is a Slack-variant. Once almost the same. But it was completely self hosted and under YOUR control. Now, if you host it locally, you get a screwed up design that you can unlock by paying.. If two users register on y our rocket chat instance, you get a commercial message of them regarding the growing team. Also, i have by default some remote user of them named rocketcat in my chat. Wtf, who wants that ffs? And again! SELF HOSTED SERVICE. Imagine, they have servers under their control and don't even have to do the hosting. A big win-win for them I guess.
Idiots found themselves a marketing team apparently.rant slack uncensored rocket chat bastards self hosted email xxx rocket pussy cat hard rape extreme marketing rape of the year29 -
Oh china... just when I was so exhausted and annoyed at you... cuz i got behind and had to grind purchase/logistics/china-rel bs, to get necessities complete before your 2wks being MIA for chinese new year.
BUT THEN...
You had brought me this comedic gold in the midst of my sourcing woes!
Whoever points out my favourite 'precaution' first, wins.
...it's very rare that I say this, especially with my linguistics and algorithmic knowledge and exp making me easily peeved here...
But seriously, even Google trans with 0 knowledge of english, wouldve done better on most of these.4