Details
-
SkillsPython
Joined devRant on 10/10/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
-
I don't know how it works with my team but almost always I'm the one who is at the frontier when there is a need to migrate to new technology or to do something that nobody in my team knows how to do including me. So usually when we have planning and nobody wants to take the task I take it because someone has to do it. I think it's not my job to only do the things that I know but I'm expected to work outside my comfort zone and I wish others did the same. What happens after I'm done reading docs, testing and learning new thing is that I have to deliver training about it. The funny thing is that I also have to train experts and I'm below expert6
-
Yearly work review - when you have to convince your manager that you actually did something useful although he should already know2
-
I'm best at python in my team. Today I've met junior developer from another team and I realised that I know nothing.3
-
Me: so we've added bunch of features to our app so that everything updates live automatically and you can edit it online and sort and filter and do bunch of other stuff.
Boss: great, how do I export it to xls? -
Domain Architect my ass. When I actually need you you make excuses for 2 weeks just to finally tell me that I made mistake because I followed instructions made by your department. The worst part is that you don't even remember that I actually followed the instructions in your presence! Fuck you and I hope that corona infects your laptop.
-
Just spent 8h trying to load datetime fields from Django to db. It turns out that tzinfo in datetime field doesn't work well with my timezone.
-
Just spent 4h trying to start application after db password change. The app accepted base64 encoded password.
It turns out it's very important to use -n switch in "echo pass I base64"1 -
Just discovered wonderful python library called tabulate. No longer I have to create complex tables with HTML tags. I just generate tabulated data and put it inside <pre> tags.
-
For fuck, fucking sake I literally spent 10 hours trying to setup Celery logging with Django but no, ohhh no Celery has some ninja handlers that don't even show up in logging_tree. If I try to change date format for Celery then I get big "fuck off" in my face. One more hour and I will explode.1
-
When I was starting with Python at work I was very confused about identifying what is function, class, module, object instance, etc. just by name so I asked my colleague with PHP background to follow PEP8 and use meaningful names for objects. He's like okay and the next day I find this:
class vv(models.Model):13