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 - "failing"
-
My morning:
Me: Why did you just delete the failing unit tests?
Intern: I debugged it for a while and found one of the other developers broke it with his recent changes. I couldn't fix it.
Me: Did you let him know he broke it?
Intern: No.
Me: So you just deleted it and decided to pretend the feature isn't broken?
Intern: ... No ... I mean ... well you told us yesterday we needed to have all the tests passing.
(I NEED a stress ball people)30 -
Working with a team of interns, pointed out a bunch of unit tests are failing, they said they would take care of it.
10 mins later they opened a pull request to delete the tests that were failing.
fml, fml, fml, fml ... and ... oh yeah fml10 -
Dev: "Ah, I finally fixed that code I was working on the other day and got it pushed to staging!"
Almond: "Ah, great! What was the issue in the end?"
Dev: "It was an odd one - it wasn't actually my code that was the issue, there was a bunch of other code getting in the way."
Almond: "How do you mean?"
Dev: "It kept complaining about something called a "unit test" failing - so after a while I found the right unit tests, deleted them, and now it works great!"
Almond: "..."11 -
Expectation: arrive at work, everyone in awe of devrant swag, social status++
Reality: arrive at work, prod failing, get blamed, employment status--7 -
At customer site with my boss.
Boss: let's check this code which is not working
Me: ok (starting the debugging session)
I found this code, which was failing during the writing on disk for some reasons.
try
{
....
writer.writeline(some data);
....
}
catch(Exception ex)
{
....
}
Boss: ok it fails to write data but we need to, let's manage it like this:
try
{
....
writer.writeline(some data);
....
}
catch(Exception ex)
{
writer.writeline(some data);
....
}12 -
When your school project team fails to deliver 3 times in a row because of their incompetency and they're the sole reason for your failing grades8
-
So what does everyone think about unit tests, do you do it?
My own experience is I've seen people on my current team disable failing tests...12 -
Come back from vacation to find that 80+ e-mails were sent out to the entire team for a critical process that was failing to run due to an incorrect password. No one did anything for a week. Fixed it in 30 seconds.5
-
DST is my arch enemy.
"Why did I get paid for 7 hours instead of 8?"
"Because you worked from 1:00 till 9:00"
"Yeah, that's 8 hours"
"No it wasn't"
"Why does this input field say invalid time for 02:00?"
"Because that time doesn't exist"
"Why are so many tests failing"
"Because they check timestamps and durations which don't make sense in non-continuous time"
October is even worse...6 -
Dev: Breaks unit tests
Same dev: Merges it to master anyway
Same fucking dev: Can't merge to master coz CI is screaming at you? Merge locally and FORCE push.
Me: Hi, I'm blocked. I can't merge to master coz of this failing test, can we get on a quick call and figure this out?
Same fucking fuckface dev: *after 3 fucking days* Yeah, I don't know why it's failing.. the results seem to be inconsistent..
Jesus Christ. I am so close to leaving this side-project because of the frequent shit I have to go through with this fucking idiot.
God I wish I didn't need the money.14 -
Email from a company I applied To:
"Hi... We will be in touch by the 7th of November"
Me:... It's December already. Maybe I missed it.
Second email: "Sorry! Typo. It's meant to say 7th of November. Refer to this instead"
Me: ...
THIRD email: "So sorry. Or mailing system is failing so disregard all those emails and refer to this one. Thank you."
Me: ... WHERE THE FUCK IS THE DATE!??6 -
Just got my free stickers today! I'd like to thank every single person that has ever given me a ++ on a rant. I'd also like to thank my parents for making me the man I am today, and my high school counselor who just told me yesterday that I'm failing my English class!9
-
"Trinidad And Tobago" changed their country name to "Trinidad & Tobago", and the .Net framework reflected that change.
So that's why this unit test is failing.
I GUESS BULLSHIT IS NOW INTERNATIONAL.2 -
Network-connected train displays, failing and displaying their IP address, on a train that has WiFi on board. That's just begging to be hacked.19
-
I would say world peace, but that's had unlimited money and time into it and still failing, so I'll go for a sentient robot unicorn.8
-
We shouldn’t worry about AI passing the Turing test. We should worry about AI intentionally failing Turing test.2
-
✔Grails is broken
✔Gradle is broken
✔ Spring is broken
✔ Tomcat is failing
Time to create a new VM.5 -
I was asked by our tester and scrum master to ignore some failing unit tests yesterday. The tester literally said "no time for tests, we need the build now". The scrum master is also a tester and agreed. I dont think I can respect either of them as testers anymore.3
-
Installing Ubuntu in VMWare. After the installation, proceeded to install VMWare tools to get the full resolution.
Shitloads of errors. Kernel build failing, gcc exiting with error code other than 0, all the copying failed. At the end of the process the executable says:
Enjoy,
---The VMWare Team
What the fuck am supposed to enjoy? My broken fucking Ubuntu in a VM?5 -
This company has been a "start-up" for 5 years farming money off of fucking idiots using a shitty CMS.
- The senior dev gets paid 15/hr
- No use of version control or testing
- the CEO has no fucking knowledge about tech.
and you wonder why it's FAILING?! I'm surprised you guys stayed afloat this long, jesus fucking christ.5 -
Yesterday I received the API documentation from an external company. Over half of the endpoints are either wrong or send invalid data and even the given test requests are fucking failing.
It's a nightmare. We have to finish a website until friday and that company did nothing for 2 months and now we have 2 days left.
The sheer incompetence is too damn high.
My boss said it would have been much better if we had implemented the API on our own. Damn right.3 -
I jump on an existing scala project.
git pull && sbt compile test
Tests are failing.
Me: "Hey team, the tests are failing."
Team member: "That cannot be. They were passing for the the last run."
Me: "Did you run them locally?"
Team member: "No, on Jenkins. It was fine."
I check Jenkins.
Me: "What do you mean it's fine. The last successful deployment was on the end of May."
Team member: "The Pull Request checker always went through successfully."
I check how our Jenkins tasks are configured. It's true that the Pull Request Checker runs successfully yet due to a "minor misconfiguration" (aka "major fuckup") the Pull Request Checker only tests a tiny subset of the entire test suite.
Team members were were fine if their Pull Request got the "Success" notification on bitbucket's pull request page. And reviewers trusted that icon as well.
They never checked the master run of the Jenkins task. Where the tests were also failing for over a month.
I'm also highely confused how they did TDD. You know, writing a test first, making it green. (I hope they were just one specific test at a time assuming the others were green. The cynic in me assumes they outsourced running the tests to the Jenkins.)
Gnarf!
Team member having run the tests locally finally realizes: "The tests are broken. Gonna fix them."
Wow. Please, dear fellow developers: It does not kill you to run the entire test suite locally. Just do it. Treat the external test runners as a safety net. Yet always run the test suite locally first.4 -
Google has ruined my ability to retain information! I spent a few hours today failing to get my head around a problem, only to find I provided an answer to that very same problem several years ago on stackoverflow.2
-
Me: *opens up a test script*
> only http response code is checked
Me: hey, coleague from qa, why didn't you also write response body checks?
Col: I had then implemented but removed them later.
Me: ?? Why??
Col: because tests were failing
Crickets: *chirp chirp* .... *awkward pause* [in high pitched crickety voice] what the fuck?!?!3 -
Today I fell down the rabbit hole.
I've been writing some automated tests which found an asymmetry in our algorithm which I think is caused by an off by 1 in even input dimensions.
Change input to odd dimensions, crash due to out of bounds exception.
Switch to debug mode to try to work out why we crash, failing asserts for default function arguments with no obvious reason beyond a helpful message saying they're unsupported.2 -
[ Coworker walks up to my desk at 4:15 PM ]
Coworker: "Hey man. We had to make a few changes to the codebase because one of our unit tests were failing. Can you take a look at a pull request for me?"
Me: "Yeah sure, how many files?"
C: "About 600"
Me: [ thinking it might just be a ton of libraries or gradle shit] "...ooookaayyyy... that's a lot but doable... how many lines?"
C: “128,000 lines"
Me: "Fuck you"11 -
Do Travis CI's email subjects really need to say "Still failing". As if I don't feel bad enough.
Fuck you Travis i'm trying!!!1 -
2 situations when you are equally fucked :
1. It should have failed here, why is it passing?! 😯
2. It should have passed here, why is it failing?! 😯 -
For the love of God, we don't care that you're failing to get 15 ++'s to get your sticker. Obviously, if it didn't get a measly 15, then your rant wasn't that relatable/funny/likeable. Ranting about ++'s isn't going to get your crap rants any more ++'s5
-
Three days thinking of a solution to a problem in HackerRank...
Came up with a very elegant O(n+m) solution... failing several test cases...
Check here, there, over there. Everything seems flawless...
Re-read the problem statement letter by letter. There it is, I misread the requirement. FML8 -
Dear customer,
You pointed out, that the program is failing due to insuffizient memory.
"Memory" is the RAM in your Laptop.
"Insuffizient" means YOUR FUCKING RAM CANT HOLD THE ENTIRE 2 TB DATABASE!
GTFO and RTFM!
Best regards
me6 -
"If you’re not failing every now and again, it’s a sign you aren’t doing anything very innovative." - Woody Allen2
-
I’m debugging some intermittently failing specs.
The problem is, they only fail when RUNNING THE ENTIRE FUCKING FILE, which, naturally, takes TEN FUCKING YEARS.
And it’s not like they fail when they get run first. No. They only fail when run near the end.
ASDFHSGSKSHDHDKAJDKF17 -
Uh-oh shit went wrong with umpteen thousand jobs in a pointer heavy, multi-threaded application in raw C. Fuck, some pointer gone wild?!
30 minutes later, after trying to find out how many jobs it takes to start failing. Noticed that it's about the default settings. Wait what? That's where the realloc'ing should kick in, check that.
Aahhhh. Maybe I shouldn't zero the whole buffer after realloc, just the new part. D'uh! -
Thank you windows update and Lenovo for trying to update my bios and failing in the process.
Now this computer that doesn’t even show bios. Fucking bitch ass pieces of shit.
Stay the fuck away from my bios windows, you shit eating trash of an os.12 -
Some old couple screaming I was a liar and a thief because I told them their HDD needed to be exchanged because I wasn't able to install any OS on it... It kept failing on every CD / pen drive I used but it worked with the other store... I left them screaming alone outside the store after telling them to have a good day with a poker face...5
-
Testing hell.
I'm working on a ticket that touches a lot of areas of the codebase, and impacts everything that creates a ... really common kind of object.
This means changes throughout the codebase and lots of failing specs. Ofc sometimes the code needs changing, and sometimes the specs do. it's tedious.
What makes this incredibly challenging is that different specs fail depend on how i run them. If I use Jenkins, i'm currently at 160 failing tests. If I run the same specs from the terminal, Iget 132. If I run them from RubyMine... well, I can't run them all at once because RubyMine sucks, but I'm guessing it's around 90 failures based on spot-checking some of the files.
But seriously, how can I determine what "fixed" even means if the issues arbitrarily pass or fail in different environments? I don't even know how cli and rubymine *can* differ, if I'm being honest.
I asked my boss about this and he said he's never seen the issue in the ten years he's worked there. so now i'm doubly confused.
Update: I used a copy of his db (the same one Jenkins is using), and now rspec reports 137 failures from the terminal, and a similar ~90 (again, a guess) from rubymine based on more spot-checking. I am so confused. The db dump has the same structure, and rspec clears the actual data between tests, so wtf is even going on? Maybe the encoding differs? but the failing specs are mostly testing logic?
none of this makes any sense.
i'm so confused.
It feels like i'm being asked to build a machine when the laws of physics change with locality. I can make it work here just fine, but it misbehaves a little at my neighbor's house, and outright explodes at the testing ground.4 -
That moment when... something finally works.
But you don't trust it.
So you pass it bad inputs to see if it's failing as it should.7 -
Why I love Salesforce 👀
- Run a test method
- failure: no field found
- checks test, queries field
- checks field security (access permissions) visible to user
- runs test again
- failure: no field found
- adds debug log of queried field
- runs test again
- succes
Thanks, thanks for fucking with me today 🥲6 -
Just spent about a day and a half debugging my code a million different ways, only to discover that the third party call that kept failing needed the id in UPPERCASE.
-
Nothing like a SQL Script failing and fucking up an important Database right before my christmas vacation...10
-
Debugging an assertion for hours that keeps failing on 19 == 20 , and you just cannot figure out why it returns 20, until you realize that it in fact returns 19 and the constant in the test case that you screwed up at the start reads 20.7
-
git push origin stupid-long-feature-name
git pull origin develop
*Checks through all changes. No major conflicts. Accepts changes.*
npm test
*4 failing tests, none of them in pieces that I touched for my feature.*
*That's funny. QA was loaded from the develop branch, and everything works.*
*Actual data has dates from today. Expected data has dates from a week ago.*
*examines tests*
Why are all these expected dates hard-coded‽
tl;dr The external development team committed 4 tests that would only ever pass on the day they were written.5 -
That moment you receive an email: your CI build is failing.
Ok. What went wrong?
Three new commits that do not seem to alter anything related to the failure.
*reverts commits and tries again*
Still failing.
WTF?!
*restarts previous builds*
They now fail too.
FUCK! BASTARD! Are you kidding me?
*investigates*
Turns out that repo of dependency changed and is not compatible anymore.
Argh! Son of bitch! -
"Hey Google define *word*"
>>*Definition of word*
"Hey Google define *struggle to pronounce word while sounding like I have tourette's or I'm having a stroke; get no where close to the accurate pronunciation*"
>>*Gives definition of the word I'm trying to say*
This asshat can understand me stroking out while failing miserably to pronounce a word, but when my southern accent kicks in and fucks with the pronunciation of some words, this thing can't take it? Fucking hell bruh.13 -
FUCK YOU AND YOUR FUCKING CUSTOM LAUNCHERS
Downloading 200mb launcher, to download through it 10gb application, to see it just failing at the half because internet connection was missing for 3 seconds.
START AGAIN
YES FUCK YOU MATHWORKS
Why stick with already better solutions which can handle fucking internet connection lost
FUCK YOU MATHWORKS2 -
My developer career has ended before I even start. After failing to get a job, I have started a business men services company. Maybe in the future, I will include software development to the business. So no more rants from my side at least for one year.
Fuck you all fucking retarded companies who wants junior developers with the same experience of senior developers.6 -
When you come to work eager to code, and the whole day goes to trying and failing to fix some network shit -_-2
-
Yesterday my docker build started failing for my .NET core project, but it worked on Windows!
Today I found a Github issue, 4 hours old, what fixes it? Downgrading my kernel, which I upgraded a few days ago to v5
I would never have discovered that on my own, what the hell1 -
> Run 'All Tests' with Coverage
No tests failing
Coverage >95%
Hell yeah! I've tasted TDD and I don't want to look back!2 -
That's it!
Trying to plan ahead for each day but i keep failing !
I go to bed early at night but still cant wake up as early as i hope to.
Anybody has a solution for this?8 -
Lol I suck. Learnt coding without a degree in it, enough to be functional. Got an internship at a good place. Made code that worked but didn’t know enough on documenting and testing and can’t give enough time anymore on it to make it reproducible.Actually joined a CS program this fall!6
-
Oh, RSpec.
Adding recaptcha tests, I copy a passing login spec
and because I'm bored, I run it again just to check.
I paste in the passing mock
and run it in my new block
and oh no, why are you failing? What the heck!?1 -
Sometimes your music app knows just the right song to play.
Story:
Production program was working (has been for a long time). But suddenly it starts failing. I spent a long ass time trying to see what went wrong.
Problem:
Security update on the server 🙃
Now I've got the client, his minions, and the users emailing me to fix this. But I didn't start this fire!
Song: We didn't start the fire, by Billy Joel -
"I have a great idea for a messaging app.
But I can't tell you what it is until you agree to make it for me, I can't pay you right now but I'll pay you back when we make tonnes of money!"
My startup idea: you create apps for people with bad ideas and the fees on a 1 year 'loan' with high penalties for failing to pay. Fair right?3 -
I am now a free man.
I got exempt from the military service by fattening myself up, I've never been happier for failing an exam (the medical exam) 😊
Now comes the time for extreme dieting and finding a job abroad to gtfo outta third world9 -
Hours lost.
Visual Studio test adapter was failing out during the discover phase of the tests with a stack overflow exception, but that's all the information it gave me. The tests simply would not run.
Hunting through the code line by line, I eventually find this.
WHY IS THIS ALLOWED TO COMPILE4 -
The cultural fit round. The very first round. Got rejected multiple interviews because of failing this round5
-
Client: THIS IS CRITICAL, SOME DATA HAS BEEN DELETED, WHAT ZE FUUK HAPPENED, UNDO THIS FAST
Us: so after carefully reviewing the code, related resources and the network traffic we conclude that was never sent in the first place.
*closes issue*
I'm glad we got such a meaningful bug report on the same day a production system started failing, one big deployment that that was like a boss with 3 phases, an unnecessary long meeting and an app developer that that wanted me to break HTTP standards.1 -
So this just happened. A friend whom I made a little project for came to me like "hey man that project thing just gives a white page". It's written upon the old version of a framework I'm still writing. After a few minutes I found out that it's failing to load all core modules. Turns out there was a file in the core modules directory with the .save extension. Never thought I'd have to take that into consideration in my code!
-
All these switching to linux posts and it feels universe is telling me to make the switch.
Yesterday, again, i had to go through failing windows 10 update. Wasted over 2 hr just booting up my pc because of fucking update that is incompatible with my PC.
I want to switch right now.
Which linux distro do you recommend? I let devRant choose my OS. ( p.s Its a laptop )33 -
When your egghead boss (who is a dev, BTW) fails miserably in understanding that JavaScript fetch does not behave like the default synchronous nature of requests in Python.
After failing to make him learn about the asynchronous nature of JavaScript promises, he ends the discussion by saying "that's why python is better than js"
*facepalm*2 -
I once made a pull request fully aware that 3 tests were failing. The PR was approved and merged.
In my defense, they were very complicated tests and I fixed them a few days after.2 -
today was shit. I'm full of stuff to do at work, we're extremely understaffed, no one will stop pestering us, I'm failing at doing my tasks and our stack is extremely useless for the stuff we're required to do. on top of that I'm in physical pain and i had a test. oh and my computer is dead so i have to sort that as well. fuck. I'll just eat sushi and pass out. tomorrow will be worse.3
-
1. Always have a backup
2. Don't be afraid to fail
Failing is one of the best ways to get better at our craft. Fear is a healthy response to a challenge, but don't let it control you. Go for it. Things will break and that's okay because you have a backup or a way to undo the change. Learn from the mistake and perfect your craft. -
That feeling when you’re scraping a website to build an API and your script downloads 4049/6170 pages before failing and you have to rewrite it so that puppeteer hits the next button 4049 times before executing the script. 😅
This database is so frustrating.
I hate this website (the one I’m scraping).
It’s going to be so satisfying when this is finished.6 -
There is always that one guy.. who doesn't give a fuck about testing and thinks he's not responsible for them...
Le Guy: lemme just push ma new code maan
Jenkins: Unit Tests failed - pls fix
Le Guy to the one who cares about testing: hey fuck uu, ur stupid tests are failing... fix them its ur problem.
*sigh*7 -
HR failing to understand that JS and Java have nothing in common, and the miserable bastard who chose the name for JS, put together a pretty nasty criminal organization tbh.
-
Intel is dying right now tbh. I hope the can get back on their feet but as of right now, chaos. They have had multiple ceo changes within 1 year and their current is a horrible leader. They have been really wasteful with their money (like buying McAfee...) And the inly reason they are leading in the CPU market, Tick Tock, is failing. It used to be Process - Architecture. Now intel has announced they are not changing the process for 8th gen, currently it's Process - Architecture - Optimize - Optimize - Optimize. Which is not good. It has been leaked that Intel is currently just hoping for AMD Ryzen to fail, let's face it, Ryzen seems really promising and might be the comeback AMD needs.
TLDR; Intel is a one trick pony and their one trick is failing. They have been really wasteful with their money and their current hope is that Ryzen fails.
I have an Intel CPU in my system and i find them to be better than AMD, but the tables might turn.7 -
I lost my remote job of two years due to our startup failing. After applying to various companies, two weeks later I get my first job offer😀(And I'm not even that skilled).
In comparison, a very experienced friend of mine who works in sales and business administration has been looking unsuccessfully for a job for over a year.
It makes me realise how lucky we are😀2 -
I didn’t. I suck at it. That’s why I ended up being a manager. Not that I didn’t try, but according to a scientific test I took in college to figure out why I kept failing my math classes, I’m screwed in the math and logic department. I sure know how to read and write, though, so I guess I have that going for me.6
-
Trying to automate gitlab deployment with Ansible. It runs but freaking keeps failing on task. Reconfigure the gitlab server. Without helpful output!
After 2 days bashing and commenting line after line the answer reveals.
True != true Fuuucc...1 -
When a bunch of unit tests start failing locally because the AWS secret key got rotated.
oh wait...
THOSE AREN’T UNIT TESTS!!!
Unit tests do not depend on any external system, that includes AWS...
AAARRGHHHHH1 -
If your “solution” fixes the test case which is failing, it does NOT guarantee that it is the correct fix. You don’t just blindly change whatever piece of code you like to make just the test case pass. You actually also need to analyse the code and ensure that the rest of the intended functionality is still intact.3
-
Just spent 8 hours debugging an issue that had been sitting in my issue queue for a week. WooCommerce was claiming transactions were failing, but going through in the background anyway.
Can’t share any more specifics here, but the gist of it is that the server the code was developed on was set to PHP version 7.1, while the server the dev site was on was set to version 5.6 (which I didn’t even think was still installed, never mind the default...).
So yeah, fun times over a trivial fix.1 -
> Moment you thought you did a good job, but ended up failing
> Times the bug wasn't actually your fault
> Times you took the blame for a junior or other dev
> Times someone took the blame for you
> Times you got away with something you shouldn't have.
> Most valuable data loss
> The bug you never fixed
> Most satisfying bug to fix
> Times where a "simple" task turned out to be not so simple
> Debug code left in production?
> Moments you wish you could undo
> Most satisfying optimization
> Have you ever been ranted about? -
Other Team: "our builds don't clean up properly"
*docker rm -f $(docker ps -a)*
Other Team: "our builds keep filling up machines"
*docker rmi $(docker images -q)*
Random Team Member: "My builds keep failing on service foo randomly exiting"
Other Random Team Member: "Why is there no caching on our builds"
...
team panics thinking it's their fault as our main job still passes, as it's on another machine.
...
When we find out after tracking build history
KMS2 -
When its saturday morning and you're on a bridge because the migration is still failing 34 hours in and the PM mentioned the vendor doc that he 'trimmed for your benefit' and replaced with his terrible doc, and you beat the original out of him and basically read off the section title "Exactly the error you got and the steps to prevent and resolve" and section 2 "big bold red letters explaining how to avoid it" and you instafix it. #wherewereyouonthursday
-
recently made a mp3 player out of my raspberry pi 3 b+, trying to add a 16x2 lcd to it and as usual, failing to suceed 😂3
-
Tests are failing successfully. Tests are working correctly. Maybe tests are failing but for incorrect reasons. Test checkers are failing as well but are they failing correctly? The checker testers are failing too. Checking the test checker tester tests.4
-
Fuck me. Upgraded a java project from java 11 to java 17 and now the shitload of power mockito tests are all failing because they locked down reflection. Now I have to upgrade to junit 5 and waste my life looking at these stupid unit tests. I sense a large purge approaching.12
-
probably every time I see my tests failing.
Each time I am writing tests I'm convincing myself "it's an investment", "spend 2 hours now to save 2 days later", "unit-tests are good".
And each time I'm chasing away ideas like "perhaps they are right, perhaps writing unit tests is a waste of time..", "this code is simple, it should ever break - why test it??", "In the 2 hours I'll spend writing those UT I could build another feature"
Yes, it is terribly annoying to write tests, especially after writing the production code (code-first approach). Why test code that you know works, right?
But after a few weeks, months or years, when the time comes to change your feature: enhance it, refactor it, build an integration with/from it, etc, I feel like a child who found a forgotten favourite candy in his pocket when I see my tests failing.
It means I did a very good job writing them
It means it was not a waste of time
it means these tests will now save me hours or days of trial-and-error change→compile→deploy→test cycles.
So yeah, whenever I see my tests fail, I feel warm and fussy inside :)2 -
When your client sends a cropped screenshot of the API keys and you spend half an hour typing it out multiple times trying to match it and failing, then another 30min trying to explain the simple process of copying and pasting text.
You can send a cropped screenshot but not use Ctrl-C Ctrl-V or right-click copy right-click paste.2 -
Fuck arch.
I know what you're thinking
"arch isn't that bad he's overreacting"
WELL I'M NOT OVERREACTING!
Thanks to me trying to install Arch i cant get my laptop to boot. It just say some thing about network boot failing. I cant go into BIOS either. It doesn't work! I cant even boot from usb!! It still just say some thing about network boot failing, shows some weird black screen with a black bar at the top left and after a while shows some thing about network boot failing again and that repeats9 -
They call Python, C, Java, Ruby, and stuff like that programming 'LANGUAGES' for a reason. I just wrote a Python dictionary literal in my C# code and was clueless as to why it was failing to compile for five minutes straight. Maybe that was because I was working with Python like 30 minutes ago.
It's like I have to have one 'brain' per one language and need to switch between such 'brains' to write code in another language. And such switches take time.5 -
You wake up early on Saturday to pee and you have a bunch of alerts in your inbox about failing dependencies in production. But you haven’t gotten any call or text from your boss. What do you do?
Well, I started browsing devRant while waiting for the next scheduled alert hoping my brethren on the other end of the systems resolve it and I wouldn’t have to login.1 -
Functional test are failing.
Expected: 7109
Got: 9000
Grep code-base for 7109. No findings. 0_o
Dig through test setup written by a drunk.
Find:
assert(actualPrice === 1800 * conversionRate)
Goddamnit. You shall not calculate your expected values in a test setup.1 -
I think a good path to dev education is if you are interested in it as a teen and try out coding and keep failing. Persistence and interest will bring you farther than just going straight to uni/dev school.1
-
Too much technical debt
Write more unit tests
Unit tests failing, the code will be right so change the tests to pass
Too many unit tests to maintain, they look a lot like technical debt
Remove unit tests to reduce maintenance overhead -
I was copying data from a failing zfs drive with rsync and I noticed that it spent a long time on the file ~/.local/share/Baloo/index
du -h index showed a 500ish MB file which didn't seem large enough to take this long.
I recalled that du shows disk usage, not file size and since I was using zfs compression they could be quite different.
so I added -A for apparent size:
du -hA index and it comes back with 1.7E
The file was 1.7 exabytes...6 -
@allBeginners:
It's not about which language to pick or which problem to solve. It starts with thinking like a programmer.
I think that this guy educates quite well: https://youtu.be/azcrPFhaY9k
TLDW: Write your problem in English first and then translate that into simple code, not the other way around. If it does not work, you told the wrong things to the computer; its not the computer failing.4 -
Turns out the app was crashing because YouTube was hogging 8GB of memory and so queries started failing spontaneously.2
-
I feel like an idiot... I just realized why my builds were failing.
My entrypoint was setup as to not overwrite a specific file if it was already there. The problem is, the said file is auto-generated, and I need a different configuration for it to work properly in docker. But I forgot this, and the result was a failing build, plus me scratching my head for a few hours. :(3 -
I took a certification test today that has an accumulative checkpoint score every 15 questions. I needed a 74 to pass the test... Here is a rough timeline of checkpoint scores and my thoughts:
64 - rough start I can recover
71 - OK, still failing but at least the score went up
63 - what the hell??
67 - OMG I am failing this test.
71 - You know, I don't need this job. I can find plenty of other work.
71 - This fucking test is brutal and I hate everyone. OMFG I only have an hour left!
Queue total internal meltdown. My job really depends on this certification.
73 - screw it. I failed. I am guessing from here on out.
77 - Holy shit I have a chance!! Only 25 questions to go. DONT SCREW THIS UP!
77 - YESSSSS My score didn't go down. 10 questions to go.
76 - Holy shit. After 6 month of studying, I passed the most brutal test of my life. ..... Barely. -
People hear talking about shit like "*high level stuff* SUCKS. YOU *big tech company* FUCKTARD." And I'm just here trying to graduate without failing a CS course because my teachers want me to mug up the code and not understand it! Needless to say, I don't mug up but it's just so fucking irritating when people in your class are mugging up the code and definitions like it's Redbull and scoring stellar grades. FUCK THIS SHIT!4
-
We hired two developers (out of country). Got them set up with the repo and running the app (mobile). One was complaining the login was failing, after 5 minutes, realizes hes not connected to the wifi on his phone.
I am unsure who we are hiring -
Some of my co-workers are so fucking dumb. Their thought process....
Let's re-run tests that are currently failing over and over until it works
😡
like bitch....fix it then run it! don't just run shit over and over to make yourself look busy.1 -
Worst: Spending a week in npm, node, react hell trying to triage a ReactNative iOS/Android app that even the OG dev couldn't fix and FAILING.
This is the only code in like 20 fuckin years that beat me.
Best: Watching the fall of western democracy with a giant shit eating "I told you so" grin.6 -
My dream project is to build my own analytics system and project on monitors which basically says everything live users on site, what every user is doing... where my site is failing etc...
Fortunately I'm solely working on it and implementing in the company I work. So, in couple of months it is going to be realistic.
#awesome #analytics2 -
Fucking windows.... Let's go back about 20 days earlier first day in February I had the genius idea of updating my windows and it did actually update except 2 of them failed..... But I was like alright then don't matter and disabled updates for Windows....... Next day I found a program called windows 10 update assistant installed and running a background download....... I was bothered by this but it's no big deal but what's FUCKING stupid is that it fails after a while downloading (I have 1.6 Mb/s download speed but it's limited to 200 GB a month which mostly stays) when it fails it doesn't stop instead when I restart my computer it starts the same program and keeps downloading in the background and then failing for 15 days.
I've tried disabling the updates but it just ignores that and enables them, also tried uninstalling the program windows 10 update assistant but it reinstalls itself!
The problem is that the only thing the website mentioned is that some versions are not supported by security updates, but they don't mention what I could do when it keeps failing.2 -
Learn the hard way:
Episode 1:
Struggled 4 hours building my package. Some dependent package was failing build. Tried everything and atlast, contacted that package developer. He checked and said: "It seems it's broken. You can use v1.1 instead."
Lesson learnt: Sometimes, it's better to ask instead of banging your head and debugging things out. -
I was failing all the test cases for a CS assignment where we had to implement our own methods for strings in C++. After an hour of debugging, turns out strings don’t end with ‘/0’ in C++ like in C.
Fuck my life.5 -
Wrote some unit tests to check for 404 errors that called a fake endpoint key...
Months later create that same endpoint key for unrelated reasons and spend a half hour trying to figure out WHY ON EARTH the 404 tests are all failing...
🤦♂️1 -
A dev in the team just found out about JavaScript promises. Now he is putting them everywhere but never handling errors, so it's impossible to tell where the app is actually failing because the error points to the Babel polyfill and the stack trace is not long enough.1
-
Failing to return a value in a function result in a warning in gcc. Why isn't this considered an extremely dangerous error?1
-
I don't think it could be more .net core than this: Several parts of the application ended up failing because of a too long URL. For example we used a List to store selected items in an array and they each looked like this:
&model.selectedIds[n]=true
The server side made more sense but we were running late with the project so we just went with it and hoped no one would use this feature. -
git stash pop'd on wrong branch, hadn't realized it until after a bunch more work. Then continued screwing things up and unit tests are failing.
This is not a good coding day. -
Dark theme rocks , developers who use light theme while coding should be imprisoned and tortured by making them watch a 100GB download failing at 1kb left again and again10
-
jenkins tests passing but travis failing. now travis passing but jenkins failing, aargh!
more beer needed... -
I lost my wallet, this is for the 2nd time in a span of month all my cards with cash. Feels like I'm failing at life. 🥲7
-
That feeling when you’re working on writing a program to take differently based numbers, parse the input character by character, and return the value in different bases (dec, binary, hex, etc), get stuck, ask your partner to take a look at it and their response is along the lines of “What are you even DOING?! That doesn’t even make sense.”3
-
You wouldn't believe how hard it is to create an anonymous e-mail address these days. Spent 30 minutes looking for a non-blacklisted provider after failing at Gmail, Yahoo etc..5
-
So AMD is introducing new CPUs with NPUs, aka Ryzen AI, for inferencing, but only for some of the lineup, making Ryzen AI even less relevant.
Not to mention that AMD comes up with new HW that nobody knows how to use, that no SW exists for, and...
Oh, wait. Making AI capable HW while completely failing on the SW side. Now it makes sense. It's just AMD being AMD.4 -
"An array of arrays? What the hell?" - the client's dev team, failing to understand the parameters of the JS lib they chose to implement.2
-
Do you have those little success moments while coding? Like the feeling of avoiding a new bug because of a test failing 😍2
-
Till now, hacktoberfest has been really bad more me.
Why so?
I got 4 PRs for my project, out which 3 were identical.
I reviewed them and commented to fix the bugs. The Unit Tests are failing and they don't bother to send out a correct PR. And they don't even bother to fix them and respond. They just want to make 4 PRs to get the free T-Shirt.
Just finish the PR and make it pushed to the mainline.2 -
Just spent 4-5 hours debugging a failing staging deployment that was using Bower, among many other things.
Turns out bower has a feature where if any library in bower.json has been deleted, it just hangs, and silently waits for nothing.
Fuck bower, and fuck me for using it in 2014!2 -
ticket sized small: figure out why this thing is failing, get the old MR to work, test it
month old MR, over 8000 lines of code changes
FML5 -
Trying and failing repeatedly to code up a gaussian blur function in delphi for a university computer graphics module assignment.
Over 5 days I re-create the code so many times I lost count. I think I managed to sneak 9 hrs of sleep in total for that week.
Good times... -
PC desktop at work is failing, so i had to take my personal laptop last week. Almost lost a working day because of that ..
Took the desktop home to try and repair it on the free day, but for now i can't even plug it on one of my different home monitors ..
Gonna be fun !7 -
Taking an online test to practise programming. They give me code that takes two 3x3 matrices as inputs and outputs a third. I have to multiply them together and ouput results.
Within minutes I've worked my head around it, got four lines of code to do it all. Output fails.
Twenty minutes later, nearly failing the time limit I find out that they couldn't output the array proplerly in C++
Are3[I, j];
;( What a hair puller.1 -
What the FUCK Synology! Why the fuck would you change the sshd source and manually hardcode specific shells that the users are allowed to use! https://serverfault.com/a/470919
I'm trying to test a new sshd configuration here, and this motherfucker is not letting me log in because it keeps receiving SIGCHLD and failing to handle it (because of course chsh is missing!) and it won't let me in.
THEN HOW THE FUCK AM I LOGGED IN IN THE FIRST PLACE???6 -
Weekly summary: 1 of your workflows have failed
- shit
The below workflow had an unusual number of failures:
Workflow X
Failed 1 times
- oh so it is failing since yesterday?
*swaty click*
8 h ago - Succeeded
1 d ago - Succeeded
[...]
6 d ago - Succeeded
1 wk ago - Failed
- Oh. Great. Perfect time and way to notify me.8 -
Turns out the reason the current tester12 build of Linux 3DS hangs on my 3DS (at the very least) is due to it trying (and failing) to get the version of the onboard NAND (where the Nintendo-sanctioned code resides), which hangs. If I boot the known-working copy of Linux 3DS and run parted, it instantly dies due to my NAND making it say "Error: A partition cannot reside outside of the disk!"
Either the onboard NAND is dying or Linux is just being an asshole. Either way... fuck my life. -
I have a confession: I produced a shit ton of wacky code...
The business guy in my team is super fucking bitchy about deploying to prod, while my codebase is a total mess. I could refactor it to use a much cleaner module, but I had to do it because we're running out of time. I spent half a day trying to refactor while failing miserably.
//FIXME: I will come back... or not.1 -
I've mistyped "tests" as "testes" so many times now I'm beginning to think it doesn't really matter.
Investigate failing testes.
Added testes for xyz feature.
Everyone understands what I mean. It's all good.4 -
I'll never understand how you could learn to code by reading the documentation and not by actually...idk...solving problems and coding? Especially if you're a beginner.2
-
When I started uni and I took my first programming subject (Data Structures) I hated it as much as I could. My teacher was a complete @$$hole, he wasn't good at teaching, and most people were failing the subject. When I finished that semester I swore I would never be a programmer...
11 years later and I have a Master's in IT and have been working as a Software Engineer for 6+ years. #life
I wish I had a better experience learning the basics1 -
How do you guys handle receiving criticism to things you think you're doing well (or maybe not)?
I've been in my current role at my company for almost a year and I think I'm seen as good talent, but I have a hard time translating critical feedback from "we're telling you this so we can see you grow" and instead I hear "you are doing that wrong, do this instead."
It drives me nuts because I always think I'm failing.1 -
I see people posting pictures of computers (ATMs, ad screens, digital signs, instruments, etc) failing and instead showing some Windows function, update, or the desktop. Makes me wonder: WHY would you use Windows this way? Think of how many product keys you'll have to buy and how many systems you'll need maintain to show a stupid sign? There's GOT to be a cheaper way of doing things like this.4
-
Up until a couple months ago we had 5 devops. Everything went smoothly af. We could get new environments provisioned in a couple of hours.
Now we have 18 of them. It's already day 3 and still noone has a clue why our env provision scripts are failing.
Well... At least I'm getting paid for sitting and waiting for them to finish this circus 😀1 -
How the fuck does php type juggleling evaluate an variable as an integer on my system and passing all tests.
Then on the server as string, failing a typesafe comparison for authentication.8 -
Spent an entire week working on XCode configurations for a react-native+swift+objc bridging project. Been failing builds all week. Finally i look over to see the glorious word Succeeded!
Then I realized it was the clean that succeeded, not the build. FFS1 -
"Write the failing test first."
Oh, I know. This is probably simple, but when you're stuck on support tickets - there's no faster way than to write a test for whatever the issue is and run it.
You wind up having a quick way to verify your bug fix and you now have a test going forward to ensure the bug never happens again. -
"Failing upwards" is not a thing, you're just denying the damage you caused and therefore lying by implication.6
-
!rant
Just found out that all the high school varsity sports kids that got full rides to ivy leagues for sports are all transferring or failing. Meanwhile, I've been accepted into a graduate program for Software Engineering and I'm going into my second internship this summer. I know to most people that's just more work and more school but to me that's winning -
That moment when you really have a raging rant you want to post, and it fails to post...
Hulksad.gif
@dfox @trogus, made an issue about this, i hope it's not failing due to my chosen vocabulary, cause they really deserve it8 -
I ran my project in my own machine and it works perfectly, so I submitted it to the professor. I got a failing grade because it didn't run on his machine... I had to prove to him on the spot that it was working fine by dragging him all the way to the computer lab where I made the thing.
-
Been uninstalling things to free up space on my tiny SSD so can install an Ubuntu VM... when I just suddenly realized I could put it on an external HD....
But now actually thinking again... That HD is has a lot of things I don't want to lose... Wouldn't want to rush it failing...
hm... what should I do? 🤔😟😵
Why does moving development environments feel more daunting than buying a house?10 -
For the last time, ES5 DOESN'T support optional function parameters. gulp --production fails when running on testing when you do that.
*fixes gulp tasks to do gulp --production by default*
Next day : hey, why does gulp keep failing.
IT IS BECAUSE YOU DIDN'T LISTEN TO ME THE LAST 100 TIMES WHEN I SAID OPTIONAL PARAMETERS DOESN'T WORK WHEN MINIFYING
Let's see how you do it now.3 -
Rant!
Shifted to new office few days back.
Just had to put up with the shitty intermittent internet connection.
SSH failing and coming out for every 50 secs.
Trying to take Mongo Dump and restore for the past 2 hours. Finally! ufff.
When the network is disconnected SSH gets disconnected. Fine. Acceptable. Again, when the network gets connected, it should start from the same place right ? Dumb Enough. But i wanted that today.2 -
Attempting to deploy my web application using Heroku. It throws me error code H14 so I add scale web=1 to the web dyno per their documentation. I get this console log thrown at me after attempting to deploy.
I'm starting to get pissed. I may end up just dumping this and deploying my node.js/java application straight to my Linux server.
Edit: Or better yet start learning to use this Docker thing I keep hearing about.5 -
Spend several months designing an alternative approach to string matching/parsing not based on parser combination or Regex. Benchmark and profile the ever living hell out of it. Find out the performance is highly competitive with FParsec and far easier on memory than either approach. Discover FParsec responds very badly when failing. Document all of this, do a presentation on the design. Upload video of presentation with links to it on a few sites. Presentation gets downvoted, and receive hatemail. Yay.18
-
API deadlocked today. Why? Failing to connect to the database node apparently means outright denying service to everyone.
-
That moment when project managers all demand a share of your weekly hours, failing to accept that productivity diminishes exponentially with the number of projects you have to switch between.
-
Trying to port a legacy Firefox add-on I didn't write to WebExtension. Failing so amazingly...
Vague explanations, no tutorials. Mdn has a nice documentation but no tutorials. What's up with that??
Also, JavaScript. And stuff I didn't write. Just perfect. 😑😑😑2 -
FFS PHP. If I have a failing json_encode() because one of the items isn’t a string, WHY DON’T YOU RAISE AN EXCEPTION6
-
Service necessary for many applications is failing at 8am this morning, it connects to a virtual directory. Trying to figure out why it's failing, application is fine, Middleware is fine, asked to reboot virtual directory servers "no we can't do that" fast forward to a wasted day trying to find the error, asked again to restart, they said yes, what do you know it started working again
-
Me to co-worker: The tests are failing because you didn't format your code before submitting your PR
-Co-worker changes the test command to run the format command just before running the tests-
Co-worker: The tests are passing now!
-facepalm- -
3 out of 4 projects on hold because hosting companies nowadays can't do shit.
Changing a website on another hosting to a new one. Another hosting failing us, some big clients already waiting for the release.
I hate clients with shared hosting2 -
Best productivity hack...? Spend the final 30-45 minutes of the day writing failing tests. Once you get in the next morning you'll have an instant challenge to get you straight into the zone, and a documented reminder of where you left off. (tdd purists need not apply 😝)1
-
Trying to install macOS on my PC and it keeps failing at the major install point during to "security".... For fucks sake!
-
It is ok to fail and commit mistakes, that's part of the game, specially for beginner devs. Just avoid failing alone, the most you can!
I mean:
- Ask people to review your code before pushing to the source repository.
- If you are not sure how to do, ask.
- Never work in production environments without supervision. Pair with someone.
- Have a desk mate for rubberducking (https://en.wikipedia.org/wiki/...) and blame it in case you need -
I read the other day that tech companies are trying and failing to make chips smaller and faster by reducing transistor size.
Yet Apple does this with ease. You know how?
They remove or REDUCE the number of transistors to make it smaller.2 -
All of my unit tests are failing. Other devs went and took out or changed all of the IDs I added to elements instead of properly updating their projects with my changes. WHY AM I EVEN HERE?
😞 -
Wanted to get to bed early tonight, but ended up wasting two hours after I moved code from my development machine over to a test system and it was failing. After adding all kinds of logging to figure out where it was failing on the test machine i realized i fixed am error in an input file on my dev machine, but that error in the input fine was still there on the test machine. Another night with little sleep and tomorrow is Monday. 😭
-
I was just watching a livestream YouTube video hoping to learn something new but the streamer clearly has no idea what he is doing. He was just looking things up all the time and failing miserable to find anything useful for the program he's trying to build.
Funny thing, the last statement he said was: "I give up, bye!" and that's it!! 1.5 hours of my life wasted for nothing. -
When you are in a party and your boss messages
Boss - are you online, the servers are failing.
Me - i am online.
Boss - your phone doesn't count. Get to a computer.
I am like WHAAAATTTT?. -
I finished a double major IT and computer science as a minor.
Am trying my best to find a job in programming to be specific mobile apps dev
and am failing miserably
Can you please tell me what's needed and what i should enhance to get accepted6 -
Code got submitted for review... Syntax error.
Like wtf, your IDE even tells you about syntax errors... not to mention the failing build 😤 -
I am starting to get a hang of kotlin at last.
But its gives such a weird feeling. all these years i was writing great code that could lift mountains without failing. And now this language comes in, says "fuck you, we must prevent null and make everything static/final asap!!"
Like static inner classes? Why would we even want them? Well the lady says am wrong, am wrong. -
Next time you think you’re failing at a new open source venture, remember the stories of your UNIX ancestors (eunuchs ancestors?) ;)
Unix at 50: How the OS that powered smartphones started from failure
Today, Unix powers iOS and Android—its legend begins with a gator and a trio of researchers.
https://arstechnica.com/gadgets/...2 -
What's your favorite bug you've ever created? Here's one that took a few hours from my life:
if (errCode);
printf("Something bad happened!");
It keeps failing, and yet it all seems like it's working!!!!1 -
Fuck Windows. I just checked settings hoping to see the Creators update but noooo it's been failing to install a minor update for weeks now. And the best part is that the only solution might wind up being a clean reinstall. I need to be sleeping right now but I can't go to school in the morning without my laptop either so I'm fucked. I was already too deep in the recovery process by bedtime to back out. Fuck.1
-
!rant
Moving next week.
So while packing I stumbled upon my pile of failing drives which my computers have rejected since moving in here.
Time for some late spring cleaning.1 -
Been developing a FAAS backend for a mobile app while going back and forth to work in the train, constantly loosing wifi and failing deployments, it's like waterboarding for geeks4
-
Stress in work, pressure that you are failing. Don’t worry, live the bad days until you reach the good once.2
-
JS scrub doing a course using React. Necessary scripts provided in the course are only available as online .js files, not node packages. Keeps failing no matter how I try importing. Trying to find alternatives, but seems like no-node packages are only remnants of the past.
Get tips like this: "You should take a look at how you can combine js files with built-in modules." -
That feeling where there's a bug in the code, you patch it, then an error occurs on the next line, and the next, and the next, and the next, and the next, and then it runs without failing but it doesn't do what you originally intended.2
-
Having to hold hands.. dudes been here nearly a year, and I still have to walk him through things. Keep in mind this guy apparently has prior experience. It goes like this:
Him: this process is failing and I don't know why.
Me: did you check the logs?
H: no.
M: ok well what about the code? Have you traced through to find where the error is happening?
H: no not yet.
Couple hours later..
M: Did you get that error sorted out?
H: no.
M: never mind, I'll take care of it. -
Spent 4 hours working with a buddy before realizing our failing code stemmed back to using sqlite3 Npm package, which is asynchronous. Switched to better-sqlite3, a synchronous sqlite package, and alls good.
What's the purpose of an async DB anyway? Seemed like it made storing and retrieving data a huge hassle. -
I'd teach the basic principles of researching technologies, choosing a technology stack, proof of concepts and reading and understanding documentation. If this is done correctly it's 50% of the project. Nowhere on my CS uni has anybody mentioned these things, and I see other students are failing because they don't understand how to start a project or read docs.
-
So, my internet provider have been fucking me up in big time... I have been trying to upload a video file of just 36mb. However, it keeps failing. I called my ISP (which I subscribed to an unlimited internet plan... unlimited my ass). The download and upload speed is damn too slow...
-
After failing Chemical Engineering and Med school... I later chose Computer Systems Engineering and loved my very first HelloWorld.java program!
-
How often does this happen to you?
Just updated our continuous integration and for some reason the BuildAgents, who update independently, just kept failing to update.
Tried every trick in the book, debugged everything.
Kept complaining about being unable to delete files, frigging Windows file system being an idiot as always...
Was about to give up and migrate everything to a fresh system until I realized...
*reboot*
Ah, it works now!
... Why does it always take me so long to realize that's an option!?3 -
should i update to macOS sierra
, can we make this post as issues that developers facing with the new update and by developer i mean not only mac developers but many developers work on mac so if there is something failing from them please comment
i think this will be useful for all of us4 -
We have huuuge fuckups today with our Frontend regarding deprecated npm modules.
All of my Frontend colleagues are whining because the Jenkins build is failing.
I looked into it, there were missing dependencys that could not be found anymore.
Frontendcolleagues don’t want to do anything because it’s a „Devop problem“.
Fuck my fucking life. -
Quite frankly im embarrassed to say how much time i wasted having no idea why my pipeline is failing because it cant login to my aws account3
-
I guess you know its time to go when i your print statement writes:
System.out.println("LAST CHANCE 2:" + output); -
Seeing the Apple event makes me feel bitter-sweet.
It's like seeing everything Microsoft did first, failed to polish, and gave up on; picked up by Apple, re-done wayyyy better 5y later and marketted to the general populace
I wish msft stopped giving up within 2-3y of failing. The gap will just widen5 -
And now Bell (among others) is pushing to censor the Internet in Canada, too. Why adjust their failing business model when they can just whine and complain, and have the government smash out the competition for them?
Thanks, America. Always paving the way to a big, fat cauldron of shit at the end of the capitalist rainbow.4 -
Nothing better than finally stepping in and turning your life around just to have this one dream that kicks you right where it hurts
Not a sad dream where when you wake up you can be sure that it was indeed just a dream. I mean one of those crystal clear dreams where you behave just like you would in real life, being in exactly that situation that you worry about and then having to watch yourself failing at being a normal human being
Thanks brain. I didn't want to get over it anyways -
So over the past few weeks I have been smacking my head against the table tying to solve my work problem and failing to... Today I spend a few hours at work not working and playing with code making something fun and easy. After this I go back to the headache and if my magic get something working.
-
Considering making a plugin for my test running just for this gif:
Would make failures more interesting3 -
We have an unit test that tests the average of a sequence of numbers generated randomly using a gaussian distribution. Of course it fails from time to time, it's random! Failing to fail, would mean that the generator is not generating random numbers, therefore failure means success, but success does not mean failure.
Wait, why did we add this test in the first place?rant gaussian distribution statistics random of course it fails it's random bitches normal fail equals success unit test -
A home hosted build server for continuous integration is always crap and a blocker for everyone. If you don’t have 5(yes, five) full time admins/devops to support that, forget about building the infrastucture yourself. There are companies whose business is to provide CI as a service, why do you think you can beat them with your crappy Jenkins installation?
I’ve seen a 200 company failing with 2 people. I’ve seen another one completely failing, because the admins didn’t know what CI meant, and a small one failing with 0.5. The only place where it kind of worked used Gitlab. -
When Facebook login randomly starts failing after several months of no problems. Why do these things happen to me?
-
[Advice wanted] I want to start freelancing as a software developer. I am 23 years old and I develop software since 2 years, since 6 Months I work as a working student in software development.
I am kind of feared that I am still to inexperienced, I am afraid of failing. What do you think? You got any advice/ experience you want to share?11 -
this is dumb.. i been trying to learn more about google places' A.P.I so i could implement them in android studios... spend 4 hours and all i can see is garbage tutorial and no detail place. oh at least i got my A.P.I key! pshh my googling skills are failing me big time!. make this shit easier google!.4
-
When I had a burnout failing to complete a uni task.
I was trying to implement a parallel version of the Barnes-Hut algorithm for the N-body problem. Spent way too many hours on that. -
Hi Guys, I so confused. I'm giving interviews and constantly failing them. I'm not able to clear the practical round. In most interviews, I was able to achieve the goal which the interviewer gave me.
But somehow I didn't get selected. i'm applying for Android Developer positions. just to give you
guys an idea.
I don't know what I'm doing wrong. Right now I just am so depressed that I don't even want to give no interviews anymore.
Any suggestions or advice is much appreciated7 -
Exchange...services always failing causing email outages...it's 2017 already and business still trying to save money by using this crappy software
-
I know some of y'all will judge the fuck outa me
But I had a "I've no idea how this works, but it works" moment today on a pet-project...
It's so inefficiently made coz I was frustrated by it failing so thought il let it work first then worry about shrink-wrapping the logic
Yet with NO-CACHE, from DB -> Service/API -> HTTP response, is just 350ms...
WITH In-memory Cache it goes down to 40-50ms...1 -
Decided to try the beta build of WP 5.0 today to get a feel for Gutenberg block development, but it's not building confidence. Following the examples in the Handbook (Link: https://wordpress.org/gutenberg/...) and it's failing when trying to set up the rich text editor because apparently the object it relies upon is undefined. Been trying to track down the code for the basic paragraph box for an hour or so now so I can see how it's doing things, and haven't turned up anything useful.
-
So I just failed my maths exam.
Nothing more to say except all other courses have way way better grades than my course.
So my teach's got two courses and both of them massively fucked up, course average (both) 4.5-5.6 (d- - f).
All other courses are just Soo way better that I just can't believe that fault is only on the student side here.
And to top it off, this scenario is not new at all.
Had the same shit with our courses failing unlike the others anothet time too.
FUCK YOU FR. NIELEN4 -
Haproxy.
Backlog.
30_000.
Nooooo.... Why on earth do you do that.
And yeah....
Looking at the sysctl settings someone took a road trip to Google and stackoverflow and just copy pasted every mother fucking stupid bullshit bingo inside it.
Half of this doesn't apply as the kernel version doesn't even support it anymore (for good reasons) or makes sense as these settings have NOTHING not even REMOTELY to do with the servers hw setup.
If you have no fucking clue what you do, ram the keyboard up your arse till you enjoy it.
But stay the fuck away from administration and the fuck away from anything that carries responsibilities.
Joyful task today: unclogging old failing Haproxy setups while being busy with 3 other tasks.
And if you wanna know why they're failing and it needed to happen today... Weeeell....
They restarted. And today they decided to restart so fast people finally noticed it.
Cause yeah. They did that the last fucking years every few hours. Now every 5 minutes.
:@ :@ :@ :@ :@ :@ -
Just wasted a day trying get Robot Operating System working.
Absolute rubbish software. Broken Gentoo Repos, Required packages that don't exist, failing to install cmake files to find the crap it installed, etc.
I already have every library this trash provides but I'm forced to go through it since a newb PHD wrote an image segmentation algorithm which should work just find with OpenCV/PointCloud/Cmake but NO he had to go put it in ROS and ruin my day.1 -
"Ok. I need to gather a bit more information to pinpoint the cause. When you say it is not working, how precisely is it not working? Does the program not open at all? If it does open, is there a specific action that you can do to reliably cause it to fail? Is it not working on only one computer, or is it failing on all computers?"
"When you click the icon it say to call support"1 -
Cheating and using Arch-anywhere for my first foray into Arch after 3 hours of manual confit and computer failing over.4
-
Spent all day trying to fix my intermittently failing Wi-Fi connection on Linux. Error codes for wpa_supplicant are entirely unhelpful. -_-1
-
Why is my test not failing? The actual and the expected json is completely different? What the fuck!?!
It says:
static::assertJson($expected, $actual);
right there.
Oh wait.
Nevermind.
`static::assertJson` only checks for any VALID json string that I always provided in with my own expectation m)
Use `assertJsonStringEqualsJsonString` instead.
What.
Who needs meaningful defaults.
(I would claim that `assertJson` should be defaulft for string equalness, and assertValidJson should be for any Json validation. But you are free to disagree.)4 -
Shitty Windows failing to connect to wireless for a full hour on top of booting for 20+ minutes .
Linux is the way to go without a second thought.4 -
Quiet Sunday and the family are out.... Fancy just doing a little PoC and seeing if I can create a new bit of functionality in my app..... Seems like a simple bit of work I could do in an hour...
Its been two hours and my laptop test environment keeps failing the setup for no apparent reason....
Family gonna be back in the hour and still debugging why the lab stopped working... -
Email arrives, contains a list of deadlines AND descriptions of new features and changes to portal... all news to me, Really?! All for next month you say? Didn't we just assign a different project to the team? Did we replace the 50% who leave this week yet? no.... Well done project management... Slow clap for you guys.... It's so idiotic I'm not even mad...
-
Ugh, no.. You got yourself from dirty dental-dams of “Jif” believers, all the way to passed bass-ackwards. That PR is raw sewage and your demoted back to entry-level if not intern. Oh and while you’re crying with Morty’s dad; consider a career change. Most importantly, just forget WAN ever existed and go back to your parents first PAN device to play solitaire.
-
Sincerely,
All engineers, reviewers and testers who clean up your leaking dirty diarrhea lines.5 -
Spent like 2 days trying to fix a problem that caused failing tests and outdated test lib...
But just realized I could just fix it with a simple hack... basically a test mode flag2 -
Upgrading mongodb to 4.0.25 for a heavily used dev environment,
Running the DevOps jenkins job thingy,
Failing miserably,
Asking the DevOps to take a look,
"Did you upgrade to 3.6 before?",
"no",
"Well mongodb EC2s are deleted",
FML1 -
tfw when a library's test are passing but when you implement it, the same library's (dependency) test are failing.
*Raises an issue on GitHub*
MY 4 COMMITS ARE FAILING SINCE LAST 4 HOURS -
Trying to install Manjaro for the first time. Keeps failing to install GRUB and giving a blank error message.
Been at it for 6 hours in a row already.
And they say Arch is the best...
Edit: I've even tried manually installing GRUB from the live boot usb, but that fails in a similar fashion :/4 -
Imagine enabling verbose logging for a complex ETL process that typically takes 8 hours to run but has been failing for some reason after running for about 7 hours. Naturally, you want to check the log file to find out what went wrong.
Now imagine not having read access to the log file. -
maybe u can help me..
If i send "mp3" through my created app it is always a "unknown file"
maan im try and failing like 12 h now.. nothin to find on google or stackoverflow about exactly that problem.
The file also is named then for example as xyz instead of xyz.mp3
And via WhatsApp it only sends an "unnamed document"
wtf man im out of solutions. if you want i could post code8 -
What's your prediction on when Apple will have a great fall, with recent failures of mobiles technologies?2
-
Overestimating the solution, trying it, failing, underestimating it, errors, "this is impossible", quitting...😔
-
Yesterday at midnight, I discovered why the Appveyor CI system for my project was failing sometimes for over three months.
If the commit message was only one line long, the environment variable holding the rest of them did not exist, and the function returned null.
One of the few times I don't say "The hell had I written!" when I discover a bug. -
This is the most f*cking frustrating moment in my life. I am trying to install node-sqlite3, but I am constantly failing to install OR use the thing. The problem is, it is only compatible with node versions 4.x to 7.x. I tried my hardest to make it work with node 8 and higher, but failed miserably. If anyone has suggestions, write in the comments.2
-
As a noob developer, I once scaffold a sample project using JHipster, left it for awhile, went back, tried to run it again and basically, spent a whole day downloading updates and recreating the project from scratch (not to mention being lost in the whole stack and project itself, enabling it to run but failing to understanding each stack components)
-
Failing to self study because i always get stuck on tutorials like so:
Do a, now do b. You should now get C. You can then proceed with d etc.
BUT I DON'T GET C. WHY NOT?! I FOLLOWED ALL YOUR FUCKING STEPS YOU SHITTY GUIDE/BOOK/ASSHOLE.
So i had to get basics from school where i could ask questions to such stupid things. It got better, but i sometimes still run in to it, and still can't google foo my way out of it. -
i'm spending my time,
watching the tests go by,
failing them all,
I stare at the wall,
hoping that you won't notice them too,
i'm spending my time -
I'm very new to the business world, this is my first freelance project, a website with articles, editable profile pages and a calendar. I can't say no to the customer so the scope grew a bit too fat. I'm moving to England and starting university next week, and the project is going to be transferred to some guy, supposedly for maintenance, but it's not even close to complete. I feel like shit for failing them and especially I feel bad for the poor guy after me.2
-
Android Studio 3.2b4 once again regressed on "No tests found" bug for Kotlin projects.
I guess someone at big G decided to "comment out failing tests for now and come back to it before the release"
I feel like this rant should be riddled with profanity but at this point I'm not even angry just very disappointed 😥 -
Has RAM quality just fallen off the deep end? I swear I remember a BSOD could mean just about anything, now it seems to be failing RAM every time.
Also, why am I troubleshooting it? I know a few programming languages, so suddenly I can fix anything plugged into a wall?14 -
Hi, Anybody can help me do this? I'm trying to build Golang from source using the github actions. I'm new to github actions and golang both. So, github actions keep failing. I'm trying to follow this: https://github.com/golang/go/...
Anybody can write me a yml file for this? Thanks a lot2 -
silly me. i'd like to give linux a try at last but struggle already to create a persistent usb-system. failing at this point makes me wonder if it's worth to change and if i personally have any advantages. i might be too old for this thing. or too young...2
-
Asking for a friend....
New job, fairly new to web development, very new to JS. I am failing miserable at my job can’t complete tickets which are mostly bug fixers created by testers. So I am debugging code that I didn’t write on a tech stack I do not know (ampersand, q, radio, lodash, react, etc)
Do I try to learn the language better?
or
Focus on learning debugging with dev tools and getting better at using the webstorm IDE.7 -
i don't really care.
plusses abd minuses, comments and reactions.
none of it affects my shitty life in aby way, sane as nothing else does.
everything is a Skyrim quest. paper flat cutout pretenses of people trying ajd failing to convince me this is a life, this is reality, i should care.
failing.
it's all just subpar pretense.4 -
GitLab, you really should fix your CI.
I mean, I know .gitlab-ci.yml has to be written carefully, having in mind that GL shell is a castrated bourne shell, but come on... Failing a pipeline because I used a semicolon in an `echo` parameter string?
echo ""items: 0" ## this will fail
echo "items 0" ## this will pass
This is a bit too much.
Removed the semicolon and the pipeline worked just fine.11 -
Why do certain software systems fail on a specific day (Friday/Sunday)? For example, getting error 500 "registration module issues :(" on their part.
Do they have some kind of deployment day then? Even so, this isn't acceptable for today's standards.
Oh, let's cut off our customers from purchasing something on those days. What?
Something leads me to think they're not hosted in the cloud then. Outdated architecture..3 -
Had a customer billing due today, spent 2 hours trying to figure out why the Billingservice kept failing. Had an uncommited transaction on another laptop. Somebody kill me 😑
-
Ran a windows registry error fixer 5 times, each time it says there are only 512 errors. I don't know if it is failing to delete them, or hitting some type of self imposed RAM limit...
Also half of the comments on Cnet say they think it's pretty good, and half say it's spam ware, but I haven't seen any ads. (average 4.5/5)
Anyone know if "Windows Registry Repair" actually works?2 -
My build is failing on the CI server
you are the DevOps engineer please fix it
this is not how this works, this is not how any of this works -
So, here I am, trying to get started with fucking heroku and failing miserably again and again. I deploy my app, I fetch with git, I try to push, and guess what: IMPOSSIBLE TO FETCH. WHY!?
Simple, I've already deployed and fetched may app, but I wasn't thinking, just doing a said...
Feel so stupid when type like a monkey... Now I know the only I had to do was learn heroku commands. And it took me only three hours to notice... -
Once this happened to me where I copied some static text from notepad to VIM editor and my test cases was failing because of junk characters inserted. It ruined whole dam day and later found out the root cause.
Something I learned that Windows != Linux1 -
testng: if the name doesn't match (fubar locales whatever idk) doesn't match the corresponding test that uses it it'll just silently ignore instead of failing or running the test at all
@DataProvider(name="fubar")
public Object[][]{
//test data setup
}
@Test(dataProvider = "locales")
public void testWhatever(){}
whoever designed it to be this way: why?1 -
Introducing the quantum symbol.
I have a function throwing an error when passed a vector which has an unexpected size.
When I use the debugger and try to watch said vector for write access, the code which failed at some point just does… things. I have no idea what it is doing instead of failing but it is doing it gladly. It's not even paused, at least for the debugger.
Now I know why they said C++ is challenging to debug.10 -
On pager duty. Getting alerts about New Relic synthetic monitors failing in prod. Freak out. Go to check them out...all of them are pointed at the uat sandbox, not prod.
I don't know how to feel about this. -
A few years ago we had a fail-over which was successful until we started failing everything back to primary servers. The applications could not start at all.
4 hours into troubleshooting, only to find out some java security files were misbehaving. Update from another server and it worked.
Up to date i haven't understood how it failed -
What's with people displaying their pronouns in SM but failing to put their family name in all caps? I'm glad you're so progressive, but as a person with an Indian name in London, have you considered enabling English people in talking to you first?6
-
I have this sbt test that keeps failing on CI. Locally it works fine but soon as it goes through circle CI, shit gets fucked. Now when I incessantly keep rerunning the working flow without any change, it eventually passes and I am able to deploy. I have no idea wtf is happening or what to do about it. Isn't containerizatiom supposed to solve this whole worked on my machine conundrum? I am too unenthusiastic and numb to even feel anyway about this. Wish everything would end.5
-
where are you people not ? answer me that. I think after this long, i'm entitled to know that. where are more of us, the ordinary ones, the truthful ones, the individuals who founded and continued society while the monsters were trying and failing at playing god ?7
-
Getting frustrated with errors I can't replicate or identify! After spending ages trying to find what's gone wrong and failing, its so embarrassing to suggest "try logging off and logging back in again"
-
Why are most (cloud-based) websites failing? They just spew out 5xx HTTP errors all the time. I can't even register properly on a website anymore. What the funk, man.3
-
Senior developer/wannabe dev manager who decides that failing silently is acceptable and email alerts is phase 2 #wtf
-
I took a career transition last year and I'm starting to question my decision. I'm stuck.
I've only learned to hack shit together in my past jobs (except one freelance project where I pretty much learned most of what I now properly know), exposing me to bad practices. To make it worse, I lack fundamentals and basics so can't even write JavaScript beyond for loops without documentations.
Lately I've been pushed to take charge in structuring a project from scratch. I failed at understanding what exactly Webpack does mainly because it required knowledge of web modules which I still find elusive. I make time to learn basics in the evening or weekends but most of the time I'm taking home the internship work project that I, again, just need to hack shit together, depleting my energy by the end of day.
Now I'm at the stage where I need money, for which I'm thinking of applying for waitressing or entry-level marketing jobs. I'm shit scared that I'll never break into the industry and will just end up living day by day feeling unfulfilled.
I'm so tired of trying.2 -
Spoonfeeding level 6666 and its still failing !!!
Me: ".....when that happens, press CTRL+C ,when you start seeing dollar sign you can enter command."
Co-Worker: I already logged in to unix server using putty and hardcoded the doplar sign,its still not working !!
:/3 -
I'm not good at DS. I don't know how to code on my own without an IDE. This is the reason why I'm failing interviews for a mid level position. At my current job I'm being underpaid. Inflation is getting higher and my credit cards are at max.
Don't know where to start. and how to get out of this situation.4 -
I was in EE Engineering dept. I got A1 from programming class despite failing at all other EE classes. Couple years later of failing EE classes, I switched departments without hesitation.6