Details
-
SkillsR, Python, AWS
-
LocationNetherlands
Joined devRant on 8/21/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
-
How are redhat docs SO EXTENSIVE yet SO USELESS if you need to use it as actual user documentation? I thought they had their shit together, but after two days struggling to find any useful information I found a golden stackoverflow answer (sorry, but it's true) which - in my opinion - should have been the official "getting started" documentation entry for firewalld...
Everybody expects that you have your basic set of ports open (ssh for example), but nobody ever covers the configuration for that very important port 22 before you are locked out of your device. Thanks harperville if you're on here <33 -
My confession is that I love doing OPS where I can fix an issue I caused myself and people are actually grateful for just having it working.
All other cases not so much.... But please team don't identify me and put me on support 24/7 :'( -
That moment you suggest a strategy to save a big chunk of money each year only to find out that they are planning of adding more of the costly same thing due to some dumb policy that security decided upon years ago so can't do a lot about it other than min-maxing the hell out of it.
Coincidentally they also earn x% on the amount that's spent on this... 🤔2 -
Working on a bugfix which has surfaced after 2 years, I hate the way that nobody thought of perhaps tidying up a component before leaving it gathering dust. Basically found dozens sections of identical code with minimal changes both for production code and testing :/2
-
Fuck, why is every mildly interesting Algo trading backtesting python package broken or killed off :(4
-
20 minutes in and I only now figured out that I keep commenting on older rants because I set the order to "Algo" instead of "Recent" :(4
-
Today is the first time in my life that I've received an all-caps corporate email from some team running ops.
Funny how someone thought this might make it clearer when all acronyms in our company are all-caps, making it a very intensive read which does everything except bring the important point forward.. -
I really got to stop having near-blind faith in the project dependency management and the testing skills of people with multiple years of experience.
Production code of a new client uses a fixed 0.x.y version of a third-party library for over a year for a functionality that was only working stably a few major versions later... And somehow nobody ever noticed due to insufficient testing -
Every freaking time I think I've fixed my bug and can continue, I see a secondary bug showing up making me revise the code that I previously fixed..
At least I keep myself busy I guess. -
Of course a good, long playlist of my personal jams with a beer next to me :)
But reasons to actually get to work:
1. If it's an interesting task and everything goes according to plan, I get a positive feedback loop of motivation.
2. Deadlines.
3. Personal projects are always easier for me to begin with and stay focused on.
Personal projects are also dangerous for me because I keep going back to them until I don't have any motivation to go back to my work projects... Kinda like a double edged sword I guess -
So are there WhatsApp users who now also would want to migrate after the new terms & conditions to something like Signal, but know that nobody in their contacts will probably migrate as well?
I hate it that you're basically forced to stay on WhatsApp because everybody (at least for me) is using it and 90% of the users probably don't care.
Im gonna try and see whether or not I can 50/50 them, but I'm scared that WhatsApp is simply too big to have people transition... Using it as a safer sms app is quite useless because well, it's basic sms and nobody in my direct contact circles uses texts (neither do I want to do that tbh).21 -
So I've been asked if I want to take the role of scrum master along with my job as developer.. I must say that I am quite interested in taking on that role and it's responsibilities, but I'm somewhat scared by the things I read on the internet (especially when combining it as dev on that same team).
Let's hope I don't become the bad guy in this story after some time by being an a-hole of a scrum master lol4 -
So my company isn't that fully fledged in development and now I keep seeing deadlines being pushed forward even though we're already fully loaded with tasks...
I kept mentioning that risk management would be handy but only after the recent shifts in progress delays they are like "hey hear my great idea about risk management!" *facepalm* -
So I'm moving out of my current student's house (to a nice normal apartment yay) and people are making contact with me to start the grand sightseeing tour of this shit hole. But every time a new candidate sends their first message, they never tell me their name. Wtf is happening here, how is this the standard way to introduce yourself: "hi I'm interested in your housing, when can we meet.". Not even a question, more like a statement or something. Today someone had the audacity to simply told me to send pictures of the house out of the blue.
Am I just getting old or something? Why the hell can't people properly introduce themselves or even ASK something instead of semi-demanding it?!7 -
So I'm receiving messages from recruiters weekly (no flex intended), half of which are not even close to what my profile describes. And I got really sick of it so sometimes it takes at least a week for me to respond if I decide you're actually worth a reply (looking at you, automated half-assed messages that didn't even notice I know nothing about Javascript).
The thing is that some of the more useful messages are actually quite interesting and match my ambitions and desires quite well. But I like my current job and love the project I'm working on... Am I the only one who wants to stay "loyal" to their employer and their project, at least for as long as the contract is valid?? I really want to be there when delivering the final product and test it myself but it sometimes means declining very interesting job offers.
How do people decide its the right moment you have to leave for a new job if you're satisfied with what you have currently? I'm graciously rejecting interesting offers in the hope that they respect my "loyalty" towards my current project and stay reachable to me when I need them later on (I've already had some that would hit me up after a year asking me how it went and if everything was still okay). Is this something that happens often or am I just lucky with those specific recruiters??
Like yes, I can surely use the money I'd receive from a better job. But I am still learning a lot on my current job and I am positive this kind of job offers will keep coming over the years (and hopefully even more so because I keep getting more experienced). I'm also not the top candidate for some of these offers if I may say so myself, so is it important to take what you can get or is it better to stick to what you're comfortable with? -
Spent almost two days debugging the hell out of an interrupt handler only to find out that my reference code (official example from the vendor) has some wrong function calls damn it.3
-
So I work at a small company and we are currently talking about introducing critical path analysis for our projects.
Are there any recommendations or tips/do's/don'ts that are good to know when starting with this??
On a side note: we use Jira in combination with Confluence so if there are any useful integrations with that possible please let me know. I already saw some interesting add-ons for it. -
My coding style is mostly influenced by good old personal preference, but also because of a certain internship where there was a lot of gain to be had by making everything as reusable and testable as possible.
I guess you could say my motto is usability, readability and flexibility:
I like tidy, reusable code with an emphasis on keeping code readable. I've always liked modular things I guess...
And I despise two things: curly brackets on the next line and spaces for indentation... But way worse is having no brackets at all (looking at you Python): it's clearer to have lower-level code inside some sort of "container" markers i.e. brackets (also gives more IDE functionality like color-coding hierarchically).
Indentation should always be tabs so anyone can have their own width of indentation set through their IDE, making it way more accessible to fellow colleagues!
And I also like having parameterized code over hard-coded functions: way more flexible. -
So my team started creating an in-house wiki for all information about our products, methods, scrum, documentation etc. From the beginning we had settled on doing everything in English instead of native language just in case we get a foreign student intern or simply a foreign employee... And now it looks to me that nobody but my team leader and I care about it: half of the documents are either fully native (especially from other part of the team who work on a different project, they have probably never gotten the memo of language choice to start with) or the documents are in some weird-ass combination of English-native which is even worse imo.
I really don't understand why my own team doesn't adhere to the decision though: we're all at least reasonably educated and our country focuses heavily on using English as second language so that should be no big barrier. And why would you want inconsistent documents/code?!
And this is not the first time people don't stick to what is decided for things like formats and language... Getting a bit tired of it tbh...5 -
So, what are your most favorite methods of saving interesting articles about algorithms, functions or simply news so you can read them later when you have time? I find myself storing links to interesting web pages without really going back to them or remembering which link was what. I shifted to storing the links in evernote but it's still not what I'd ideally like to have...
If there are any recommended routines, apps or tools that make stored links insightful (like allowing me to add a quick description or automatically adding a sort of preview of the link), I would appreciate it!
Please note that this is primarily about saving a resource while I'm on the go or simply can't/don't want to spend too much time on the actions.17 -
Not really an impressive one, but I think it's blasphemous enough to be mentioned:
Creating an embedded application, it was not supported to print a float using optimized libraries (understandable since they're not really supposed to be used anyways), but I was too lazy to convert clocks to a time unit by hand while running benchmarks. So I just printed the float as two integers, splitting it to one for the whole and one for the thousands. -
So am I the only one that hates everything about the new Teams update? Tbf, the zooming function is cool. But I just want to use full screen.7
-
Is there any way to remove the notifications I get from a bot that are removed afterwards? I'm now stuck with dozens of comment notifications without any way to get rid of them because they don't exist anymore...2
-
Today I spent 4 hours testbenching and enhancing an algorithm to detect certain metric patterns only to find out that the reason the anomalies weren't picked up correctly was that their metric had some -nan values I didn't check for.... FML2
-
Every time I talk about a bug/error in my code with my colleague, I end up coming up with the fix myself while explaining it. I accidentally use him as my rubber duck...3
-
One of the more memorable friends through coding is a guy I met at 9am at what had to be an early lecture with 150+ students. We were both following it as part of a minor but the only ones there: we apparently didn't get the message that it was cancelled because we were no majors...
We decided to just work on the group assignment because why not and became friends.
Little did we know that we had already met dozens of times (but never really talked) the two years before as we are both members of the same students association, only strengthening the bond!
Sometimes not receiving a notice of cancellation is not that bad... -
That moment your professor tasks you with writing a genetic algorithm and are forced to use MatLab (which I don't use).
"The University offers MatLab through ssh, so no problems, right?" Only basic package installed...
As cherry on the pie I found out that it's nowhere close to intuitive for me.
Got the feeling I could've done it way faster in the programs I'm used to, but finally got it working!