Details
-
SkillsJava
-
LocationAustria
Joined devRant on 4/25/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
-
So, when there is shit hitting the fan at work I tend to stay during lunch to take care of it and make sure I can take as much of a hit for it before it reaches my employees.
the lead developer walked to my office to let me know that he was about to take lunch and asked if i had plans for lunch. I told him that there were some reports to be done and some meetings that i had to attend and would be staying back, he asked if i was going to get something to eat and I said that I would try to get something as soon as possible. My man knows that I am on a strict regimen due to my workouts, and he normally takes concern over it.
I did not get something to eat, but the hour mark when he came back I was fucking starving and still stuck on a call T___T my man walks into my office as I was on a call (meeting) and he leaves a bag with my favorite burgers in my desk as I was waving hello T___T I thanked him afterwards.
Y'all, if youse a manager, take care of your people, fight for your people, my boys know i go the extra mile for them and we used to chill out having bbqs every other week playing pathfinder(i suck but make a fun party member) before the pandemic. Your coworkers might very well be your extended family. Even if you are the manager them peeps will look out for you if they know you are not a power hungry egomaniac that is more focused on keeping higher ups happy.
These dudes are my friends, my family, they were the board of members tasked with knowing if I was to get hired when i first joined in, and even tho I am now their manager I am still their friend, shit like this is possible and what I would implore everyone to strive for, because even if your organization is a faceless entity full of people that don't care for you, the dude at arms reach from your office is there, people are there, fellow human beings are there.
Fuck, just be nice to everyone else and I severely hope y'alls work life is a chill as this one.5 -
Neural network based 3D indoor location tracking on a moving ship in the middle of the ocean with ar visualization for the crew to find guests.
You are on a cruise, you have an app on your phone to order stuff (drinks, meals etc)
Once you order an indoor location system calculates your position (based signal strength on training) on the ship(x, y, z)(deck, area etc) and sends it to the crew.
The crew wears an ar glass and once your order is ready they get a realtime ar navigation to you.
It was seriously over-engineered 😀
We used the phone’s bluetooth and beacons on the ship to calculate the position based on signal strength.12 -
Every time you squash a bug before someone else even sees it...
Lead: "There's a bug, you fix"
Me: "The PR for that has been waiting for your review since yesterday..."5 -
2020
Dotnet Core and dotnet framework are now one (november).
Blazor has an official release for client side webassembly. -
I finally got it working! Now I have a foundation for a kernel and an uefi bootloader written in pure Rust
Today was a good day :)22 -
My new co-worker, a Jr. developer who started 2 weeks ago told me; "I am starting to see in my dreams the solutions of my tasks."
"Welcome to the club.", I said. :P2 -
Removes stubborn programs? Oh by 'stubborn' you mean the kind of programs where i click on the X on a window and the default button on the confirmation dialog isn't the one that closes the window but instead I have to click on 'cancel'? Yeah I fucking hate those programs too.
The fucking cunts who write the code for this should be making subway sandwiches for a living because they don't deserve programming as a job.4 -
Testing a raspberry pi 4 as a computer driving our 4k dashboards' screen. Temperatures are constantly 80-90C.
Me: STEP ASIDE! MAKE WAY FOR A HOTFIX!
Rpi: aaahhh, 42C -- now we're talkin!8 -
So a few days ago I felt pretty h*ckin professional.
I'm an intern and my job was to get the last 2003 server off the racks (It's a government job, so it's a wonder we only have one 2003 server left). The problem being that the service running on that server cannot just be placed on a new OS. It's some custom engineering document server that was built in 2003 on a 1995 tech stack and it had been abandoned for so long that it was apparently lost to time with no hope of recovery.
"Please redesign the system. Use a modern tech stack. Have at it, she's your project, do as you wish."
Music to my ears.
First challenge is getting the data off the old server. It's a 1995 .mdb file, so the most recent version of Access that would be able to open it is 2010.
Option two: There's an "export" button that literally just vomits all 16,644 records into a tab-delimited text file. Since this option didn't require scavenging up an old version of Access, I wrote a Python script to just read the export file.
And something like 30% of the records were invalid. Why? Well, one of the fields allowed for newline characters. This was an issue because records were separated by newline. So any record with a field containing newline became invalid.
Although, this did not stop me. Not even close. I figured it out and fixed it in about 10 minutes. All records read into the program without issue.
Next for designing the database. My stack is MySQL and NodeJS, which my supervisors approved of. There was a lot of data that looked like it would fit into an integer, but one or two odd records would have something like "1050b" which mean that just a few items prevented me from having as slick of a database design as I wanted. I designed the tables, about 18 columns per record, mostly varchar(64).
Next challenge was putting the exported data into the database. At first I thought of doing it record by record from my python script. Connect to the MySQL server and just iterate over all the data I had. But what I ended up actually doing was generating a .sql file and running that on the server. This took a few tries thanks to a lot of inconsistencies in the data, but eventually, I got all 16k records in the new database and I had never been so happy.
The next two hours were very productive, designing a front end which was very clean. I had just enough time to design a rough prototype that works totally off ajax requests. I want to keep it that way so that other services can contact this data, as it may be useful to have an engineering data API.
Anyways, that was my win story of the week. I was handed a challenge; an old, decaying server full of important data, and despite the hitches one might expect from archaic data, I was able to rescue every byte. I will probably be presenting my prototype to the higher ups in Engineering sometime this week.
Happy Algo!8 -
Here’s a poster with a super short description of each one to help you keep track and find some new useful Linux tools.16