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
Search - "serie"
-
For 2 years I tried to make my boss pay me what I know I should be worth. Over the same time the team morale took a nosedive down into an avalanche.
Today I told him, that I am sick of being kept waiting and listening to excuses. I want the payment I know I deserve and I want it before the end of the year. I believe to have stayed perfectly calm and factual, even told him "I am sorry, I really tried it, but I cannot take this anymore".
He found a way to put a (literal) "fuck you" and a verbal middle finger into other people's mounts, so he "didn't say it himself" and shut down the meeting telling me to look for another job.
Actually I have not felt as satisfied in my job for a long time, as I have in that very moment.
Time for a new start.17 -
Kudos to the devrant team for epic response time!
<50min from bug report on Twitter to workaround on prod!2 -
A client asked me to add a mobile phone field to a registration form and asked me explicitly to use their server side validation for it.
Apparently they need a valid provider prefix, but after that everything goes. This was passed as valid mobile phone number.11 -
Beating https://regexcrossword.com/ felt good.
But I have to admit: I could not beat the last one without breakpoint in the validation JS code. ;)
Being a web dev actually proved useful - free hinting system!5 -
I just noticed programmers can cite Shakespeare in 1 character.
"To be or not to be..." = 2b|!2b = true = 17 -
I was here, before it was wk119...
This is my desk. There are many like it, but this is mine.
The setup is a little dated, but I love it, and when remote working, I've to use the company laptop anyway.
Specs:
Intel Xeon 4x3.3GHz
16gb DDR3
geforce gtx 680
SAMSUNG evo SSD+some HDDs
3 dell ips displays with display port
And my beloved g15 & g70010 -
Once I strongly hissed at my boss from that time in a "stop now or I start yelling" voice.
We had an emergency and I was already working late to fix it. 8pm, only the both of us were still in the office. I was in the zone, still searching for the source of the problem and he kept coming in every 2-5 minutes offering his help, ripping every shred of concentration right off my skull, but he had absolutely no relevant technical skills, experience or information. There was nothing he could do.
In the end I hissed at him "Get your fucking ass out of here and let me do my job. This piece of shit kills my day and there is nothing you can do besides to say 'go home'."
Then he finally let me do my job. -
Javascript being Javascript...
var date = new Date()
Mon Aug 13 2018 09:17:28 GMT+0200 (Mitteleuropäische Sommerzeit)
date.getDay()
1
date.getDate()
13
date.getFullYear()
2018
date.getYear()
1186 -
Software engineering gets more diverse every year with problems ranging from faking 3d shadows on 2d browsers to accurately mimicking chemical bonds on the electron level.
I guess we primarily will get advanced tools, to make more complex problems easier to tackle. Just compare manual punch card piercing pliers to the JetBrains tool chain.
Also I believe that the roles that developers embody will get even more diverse, people will have way more specific functions in their ecosystem.5 -
Spotify premium ad: "Subscribe to Spotify premium and you can skip any number of songs you want. We won't take it personally."
Actually you do!
What I skip and what I listen through tells your machine learning what I like and what not. That's how it builds my listening profile.
So your (software's) opinion of me directly depends on what and how much I skip.
(I expect that skips from people skipping often to have less value than from seldom skippers.)
That sounds like the definition of "taking it personally"!7 -
Well done, T-Mobile!
They have an iOS app to handle contract stuff. That app integrates their shop system via an internal browser.
The shop notifies me, that the used browser is not supported by the shop...
Oh and the browser is an embedded safari on iOS 12.5 -
Desks seem to be a thing, currently. This is my desk. There are many like it, but this is mine.
The setup is a little dated, but I love it, and when remote working, I've to use the company laptop anyway.
Specs:
Intel Xeon 4x3.3GHz
16gb DDR3
geforce gtx 680
SAMSUNG evo SSD+some HDDs
3 dell ips displays with display port
And my beloved g15 & g70012 -
Startup rant ---
John and Bob joined a startup at the same day but they were in two different offices.
John joined the US office while Bob joined the European office (let's not share the country here ;) )
Both of them worked really hard, they worked longer hours, showed result and helped the startup to reach and get Serie A funds.
That seems good no? But let's step back, John was promoted twice and get more perks while Bob got only a salary raise that aligned him with the current market.
There are different reasons for this but the most important one is that the company is having two different cultures for the two offices.
What's funny here is that Bob effort is well known across the two offices and his contribution has made a huge difference to the company but unfortunately he wasn't rewarded for it.
So Bob opened a new window not in his office but in his browser to find better opportunities.4 -
Hey, DevRantDevs: Is there a particular reason there is no pony tail hairstyle? At least I can't find one for males.12
-
USB-C to HDMI adapter refused to work on the Macbook of a user group presenter.
/me "thunderbolt and Lightning - very very frightening"3 -
This is from “The boys”, any idea what language this suppose to be 🤣 (or maybe it exists and I’m a freaking ignorant) 🧐8
-
A couple of years back I wrote what would be a strong contender for the title: the ugliest mvc framework ever written in php.
Bright side: now I know the pitfalls of mvc very intimately.
Brighter side: never have to work on that code again.
Now I can use ready made mvc frameworks and still know where to look if shit goes south.1 -
Right now I need to fix 10 years old php code handling data sets coming from a database. Normally I work mostly on C#.
God, do I miss LINQ!8 -
When will people understand? I am a developer, not a system administrator.
Nobody would ask an F1 pilot to fix a broken rave car!1 -
Halt and Catch Fire. Watch this serie. Just do. Specially if you are 30 or older, and/or entrepreneur. https://ororo.tv/en/shows/... . 2 episodes per day in this link.2
-
I am forced to work with a client's notoriously slow SOAP api. Slow in this case is 1.5-2s per request.
The api is structured rather... creatively... at the same time. So we have to bombard it with thousands of requests to build our data base with historical SOAP data. Also the data sometimes is a couple of hours late, giving a flat line (all values at 0) until retroactively fixing the output for the same requests.
So to fill one dev data base with a year's worth of historical data (nice to have when testing a dashboard application) we hammer the api with ~20k requests (~1 million if we want to be thorough).
Best thing about that: There is no staging/test api and the prod api seems not to handle lots of requests at the same time very well...
Latest thought: Maybe we could put a varnish cache in front of the SOAP for testing. Better have wrong data, than nothing at all and we don't kill the prod clients every time we ramp up a new instance.
Also that would dramatically decrease the 4.2 hours of data pumping to about 7 minutes after the first run. -
Debugging a task, that's sending emails to too many customers.
Supervisor: "Never mind, just test in production, there is a dry run flag for the tasks."
Just in case I test locally...
Flags tried:
--dryrun="TRUE" => Error, failed to send mail.
--dryrun=TRUE => Error, failed to send mail.
--dryrun="true" => Not trying to send mail.
If it's THIS PICKY a little more documentation would be nice.
And by a little more I mean: more than the task base class in a giant php monstrosity without phpdocs expecting its code to be self-documenting. -
Best choice: not going into game development. Bad payment for horrible working conditions.
Worst choice: telling numbers as first party in the interview process for every job I had so far. Made me earn far under my market value.4 -
I love unicode-table.com for what it does, but this does not seem right...
https://unicode-table.com/de/1F98A/2 -
I nearly never actually had to code for an interview, since I decided not to work in the gaming industry. Only ever I can recall was them asking me to define a templating engine / Syntax of my dreams.
-
Is there a particular reason, why every image, that gets uploaded here is recompiled as Jpeg? Makes every screenshot I uploaded as png very blurry..5
-
As I will have a new job soon and it seems likely that it will be in network api design I wonder if you have good book recommendations on the topic.
I already have "clean code", "clean architecture" and "design patterns" in my pipeline, so I need something more specific on designing network (restful) service apis.
(This is a follow up to https://devrant.com/rants/1828903/...)3 -
Why, Google? WHY?
My wife was annoyed, that her android image gallery showed the images she has sent via telegram, but not the ones, that she had received.
Stupidity no. 1: telegram puts received pictures into Pictures/Telegram on the internal memory. It seems like the default gallery apps don't take nested image-containing directories. As Pictures only contained the default Sony dummy images I moved them away.
Stupidity no. 2: both the receiving and sending image directory of Telegram is named "Telegram" and guess what... Android does not like that. Only the first ist shown (sent images).
Stupidity no. 3: to work around that, I installed the emulated shell to make a symlink named "Telegram-Received". Aaaand that requires root access.
Goddammit Google! She just wants to see our couple selfies that I sent her in her gallery!6 -
php being php...
Complaining about "header already sent". I wonder why.
Solution: no permission to chmod the file system, thus printing an error to the output. That error provokes freezing the header, thus the header cannot be written anymore...
*cheers*2 -
I am used to watch one or two episodes of a serie at late night before sleep.
after I finished my last one. I started with Silicone valley. the very first episode made me that excited.
maybe it's another late-sleep night. but Silicone valley will be awesome and inspiring I think1 -
Why the heck can't a Dell display (or even better a daisy chain of them) be connected through a Dell docking station to a Dell laptop via Display Port? Seems like they should be compatible after all.3
-
I created pull requests for some open source js projects to fix issues with monkey patching Object.Prototype, as I used it heavily in a current project. All of them were accepted and merged.
A couple of weeks later I realised how retarded that was and refactored all monkey patching to separate modules. -
I really look forward to getting rid of end user and front end crap!
Just wasted 3 hours because of a bug report of a client stating, that "the printouts always have a useless empty page after the desired content".
Well, yeah. There actually is content on the site that's meant to be printed.
After 3 hours of fine-tuning and debugging I found out, that the content is in A4 (European default paper format: 210x297mm) and the customer tried printing in some weird ~219.9x279.4mm format. Apparently that's the US 8x11" letter format.
FML3 -
I don't know if anyone here, who tried to answer the question for real, did not answer "my current boss" or "myself", but I am fairly certain, I still have to meet my best boss.
Had two so far and both had their flaws that are hard to deal with. -
Learning power shell for a "shutdown in X hours"-script and windows batch for scripts to start all my games that might need to auto-update, so I could start the next session faster and one to start all games with daily login rewards.1
-
# ./symfony test:unit
Propel-Exception: Unable to execute DELTE ALL statement [...] Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint fails.
WHY ist a UNIT TEST reaching out to a REAL data base?
And who in their right mind would create a different data base schema for the tests?
This was with a clone of the real thing. Removing the FK results in double PK-errors...3 -
Triste no es que se acabe una serie que ves, triste es que el curso que sigues ya casi llegue a su fin :c // Sad is not that you finish a series that you see, sad is that the course that you follow is almost at its end: c1
-
Be agile, practice patterns, read the core literature (GoF, uncle Bob...)
Actually finish a pet project. -
Keomacao cung cấp liên tục và nhanh chóng tất cả các kèo bóng diễn ra trong ngày . Từ các giải đâu châu Âu như: NHA, C1, Liga, Serie A, Bundesliga,....vv đến các giải châu Á như: U23, U22...vv Đến các giải đấu trên trường quốc tế như World Cup. Cung cấp dịch vụ xem trực tuyến bóng đá, 7m.cn, bắn cá ăn tiền
Danh sách web phát sóng bóng đá miễn phí
Web: https://keomacao.com/truc-tiep-bong...
http://keo79.com/vaoroi-tv-xem-bong...