Details
-
AboutSAP guy. Writing on Software here and there, currently working on some Video Game in Rust
-
SkillsPython, C99, C++ (no expert tho), Java, web stuff (js, ts, html, css), PHP, React & UI5, CDS, OData, some ABAP, some COBOL, Basic, MapScript + other GIS Stuff, Turbo Pascal, some go, rust, ruby (+ rails), bash, glsl, wsl, x86asm... Did i say Python?
-
LocationGermany
-
Github
Joined devRant on 6/18/2018
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
-
What a sad day for emulation tbh.
But yuzu had it coming, considering the practices they employed 🤷
They also have to pay a 2.4Mio fine.13 -
White house urges Developers to move away from C/C++
I'm not sure what to think about it yet, but on the surface level, i think that makes sense.
https://infoworld.com/article/...26 -
!dev
i made some dice for displaying health, when playing Magic the Gathering.
They're not exactly fair, but you also don't roll them. I ordered the numbers in a way, so whenever you loose or gain health, you don't need to look for the next/previous number, since it's always nearby.
They're made using a resin printer and painted with oil based lacquer.8 -
Maybe not exactly what would happen, but not wrong either. At the end of the day, these two fields are different.6
-
If you guys remember, i was teasing from time to time, that i'm working on some Rust Project in my free time.
Well here it is, i put up a whole bunch of Editor Windows in it, to showcase it a little bit. (It also reminded me, that i need to update the Version to 2024.01).
It's essentially a toolkit, with which i can create all the content, that is later used as a data basis, that is being fed into the Client + Server Combo of the actual Game. My Plan for this year is to go beyond the Editor and create a first version of the Client + Server to be able to playtest the stuff.
And sorry if it kinda sounds like an ad, but i'm more posting it here to show, how nice it actually is to build stuff with rust.
Let me know what you think ^^11 -
when KhronosGroup anounced Vulkan back then, they also announced a whole set of software, that can handle all the new formats, that they introduced.
One format in particular peaked my interest recently, which is ktx2. It's an image format, that can be multilayered, and supercompressed, has inline mipmapping, and most importantly: streamed directly to the GPU, without involving the CPU basically at all.
Now here comes the kicker. If i want to use this format (mind you: Vulkan is around for a while now) for creating Skyboxes, there is only a single tool, that can properly convert hdr images to ktx2, and it only works on windows. Oh and there are no binaries, so in every case you have to compile it yourself.
Ah and then i thought, okay what if i then already render the cubemap faces and assemble them by hand into the cubemap, because _some_ ktx tools work on linux, then that should work right? wrong. When assembling it, it turns out, that now it's a 2D image instead of a 2DArray image with one element (which apparently is not the same for skyboxes)
Why is this shit such a pain in the ass?
Like.. I'm currently rendering equirectangular hdr images on my linux machine, then move these (usually 100MB) files over to some windows PC, convert it there into ktx2 cubemaps and then move it back. And everytime i need to do a change on the skybox, i have to repeat this whole nonsense. Ah.. and this tool doesn't even properly work on Windows, like you can't just disable mipmaps or change the filtering, because then the skybox is just black for some reason.
The funniest thing is, at the end of the day, these ktx2 files work on linux, as well as windows, mac and even mobile platform, so there's really no reason, that the conversion tool only works on one of them systems.
But hey, at long last i got them working, and this stuff looks quite nice now 👌2 -
My Laptop decided to switch the ethernal off switch. Literally while i was typing something.
Luckily the drives are fine tho.
Guess it's time for a new one..1 -
beware: yt short link.
tl:dr is that compiling and packing shit for windows & linux is usually straightforward. For mac it is a pain in the ass and contributed less than 1% percent to sales.
And the thing is, i absolutely resonate with that, because i had to go through that hell before at some point in life.
Also on another note: i recently got this guy recommended by a friend, and feel like that they have interesting topics they talk about!
https://youtube.com/shorts/...8 -
!Rant and i also might be late to the party. But i love pipewire. I tried it out yesterday, installation was straightforward and it just works.
(let's see how long it takes, until i go back to pulseaudio though)2 -
Was helping out a friend yesterday with word macros.
Never did that stuff before, but thought, it can't be that hard...
It took me almost 3 hours to figure out, how to fill a fucking textbox based on if a checkbox is selected or not. was also kind of a throwback to MFC Applications (because of how bad the UI was)3 -
I'm kinda happy that i'm not a unity developer rn.
Tha fuck is going on, unity is introducing a 'runtime installation fee'?
Seriously?
Really makes godot very attractive out of all sudden...9 -
It's kinda inpressive to me how everything comes to a standstill, as soon as Jira goes offline, because it's been overwhelmed by stuff going on.
Me and another colleague are waiting for it to get back online, so we can annoy the devs with defect reports again.
Which inturn were due a while ago, but the deployment for testing them wasn't done the whole time, so it was not possible to test anyways. And ontop all of that most of the tests failed, so there are a ton of defects.
Fixing them and bringing the tests on PASS has to happen until tomorrow, because that's the deadline for the release cycle.
Ah and it's roughly 45 tickets.
The next release cycle is like in two Months
You know... the usual stuff 😂😂1 -
Fucking Eclipse at it again.
Colleague was setting up their IDE for working with the ABAP R/3 backend, we use. To speed up the process, colleague A is sending the zipped plugins folder to the new colleague B and telling them to put them into the directory of where eclipse is stored.
Like a good and neat person, B renamed the folder plugins into plugins _old and unzipped the other folder in there. Clicked on eclipse and nothing worked, Error message immediately.
B then proceeded to tell A that it didn't work. A then asked "how did you copy the stuff in there?", and B said that they backed up the original and put the new one in there (mind you, technically that should work, because the eclipse versions were pretty close to eachother, only like a few patches apart).
And then A said, "No No No, you need to just overwrite it."
So that's what B did. Okay so original plugins folder has been overwritten with the sent plugins folder. B clicks eclipse.
Eclipse starts, and shows loading screen.
For like 5 minutes.
Then crashes with sone random error message.
B asks A what's going on, and what cracked me up was, that A just said: "Yeah, it's supposed to crash, just restart it".
So B clicked it again, it launched for another like 5 Minutes and then opened normally, with everything where it should be.
B asks then, if that's normal, and the other devs in the call replied "Yeah, we did it like that too"
ngl, that was one of the funnier teams meetings i had in a while7 -
!dev
The moment i heard, that there is a magic artifact in starfield, i audibly sighed and thought, yeah no thanks. It apparently gives the character magic abilities..
Now i feel basically the same, like when they introduced dragons in the elder scrolls universe with skyrim. Incidently i never really played Skyrim.
Otherwise that game looks kinda cool. But 70€ (100€ for deluxe) is too much for 30h mainstory imo.3 -
https://github.com/serde-rs/serde/...
Shit like this makes me wonder, wtf is going on in some developers heads.
TL;DR: serde devs sneakily forced precompiled libraries onto all of the users of the library using serde_derive without an obvious way to verify, what's in this binary and no obvious way to opt out, essentially causing all sorts of havoc.
The last thing i want in a fucking Serialization library (especially the most popular one) is to not being able to verify if something shady is going on or not. All in the name of compilation speed.
Yeah compilation speed my ass.
The worst thing of it all is, even if i decide to drop serde as a direct dependency, it will still download the binary and potentially use it, because of transient dependencies. But i guess, i will try to disable serde wherever possible and implement my own solution for that. Thanks but no thanks.
This is so fucking stupid, it's unbelievable.21 -
We need to talk about Matrix (the protocol thingy)
It's a pretty neat system, to be able to communicate to eachother with whatever you want (through whatever other service you want).
What are your experiences so far with it (+ Clients)? Can you give some tips on what to use and to avoid? I heard that depending on the home server it might behave rather slow10 -
Today in some onboarding meeting i was laughing my ass off.
We were setting up the development machines that we got from the client to work on via citrix.
You guys probably know, that when you put your npm projects too nested into your filesystem, that packages randomly start not behaving because of too long file names or path names and stuff like that. That seems to be a problem with all OS (to be fair i havent actively looked for a solution, but it happened to me on Windis and Linux, so i'm just assuming here)
but even more so for some packages on Windis, when the project is not running on the same fucking drive letter than where your OS is running on. Like... wtf?
Had two UI5 projects pulled, both of them on D:. The first npm install went through flawlessly, the second one has a number of random errors, me and the other dev didn't know what they were. So what i suggested is to move this project onto C: and try it again. Turns out that was exactly it. Et voila, npm install ran through without any hiccups..6 -
Monday starts amazing.
Team Leader is mad that i didn't attend a party, and insists to know, why i wasnt there.
An event, that per my understanding was obviously an optional event, where colleagues meet, talk about some stuff, and then eat and drink, because it was fucking worded that way in the email. Ah and in that email they also asked us to actively respond, if we want to participate.
Me, naturally: Obviously an optional event, go figure.9 -
i guess im learning COBOL now..
didn't even know, this language still exists, and is alive until the Lead of the Department came around and asked me if i know that language, because they have a potential customer Project.
Others said, i shouldn't do it, but i'm also curious.
At the very least i will check it out 🦕5 -
Actually kinda sad, that there is no pure rust ui framework out there, but rather mere adaptations of c/c++ frameworks for rust. It's better than nothing for sure, it just would be nice, if i could use a framework, that doesn't create a massive memory leak, because i looked at it funny.
In particular i'm using fltk-rs, and everytime I'm applying a font to some widget, 500kb get added as leaked memory. Doesn't sound like a lot, but for one it's a dynamically built application, so the order and amount of widgets changes, and this application is supposed to run days, if not weeks.
thanks to heaptrack i was able to pinpoint that to libpango, which i'm not even interacting with directly, but rather indirectly through the api.
Annoying, that i chose to use a language for actively preventing leaks and dangling pointers and stuff, but end up leaking memory because of a dependency somewhere.7 -
I always make sure i can code on Vacation on my own projects. The flipside of this is tho: i never take time off, since my work is rather relaxed anyways.
My employer messages me about that recently, that i still have 100% of my vacation days left, so what i did is using it all up until the year is over. Essentially im almost all the time on vacation until the end of the year (+ a little), and can work on my own projects. One rust project might be in a publishable state soon actually. -
So a friend of mine was getting a BSOD, when he was starting Ghost Recon Breakpoint and PUBG,
turns out, the Stuff from his racing rig was being detected as cheating by their anti cheat software, and just crashing the system.
Dafuq?5 -
I was looking for alternatives of MC that are atleast usable, and found a thing called Minetest. This apparently is a Voxel Engine/Scriptable game, where you create games, that consist of mods/modules and other resources.
The cool part of it is, that mods and games etc. get handled by the game itself in a package manager type fashion, so the only thing you as a user have to do is selecting them in the ui, and putting them into your world.
It's this easy because the content is managed by a content database. This engine is built with multiplayer support by default.
Now comes the interesting part: apparently a few devs sat together and made a whole MC clone in this engine, and have called it Mineclone 2. I was testing it recently on a server and have to say, that it doesn't appear to be some low effort clone, but to my surprise is an actual playable and nicely looking game. So far i'm having fun with playing and even modding it.
Since the core is written in C++ and the mods and games content is written in LUA, you can easily writte new stuff for it, and even look at other mods stuff, to find out how to make it compatible or how to do certain things. The licenses usually allows to reuse and redistribute.
If you're looking for something like that, give Minetest + Mineclone2 a spin.6 -
Apparently the creation of Windows ME is the result of the Ballmer Peak, a very specific bood alcohol amount in their developers body.
https://xkcd.com/323/4