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 - "closing"
-
Boss: Are you almost done with that project?
Me: *closing Google search of "dogs in top hats"* I need more time10 -
I'm really not much of a drinker, but last night I was apparently.
I thought I played video games until I passed out on the couch and was carried to bed.
This morning, my laptop reveals to me that I had an idea for a web app last night because I made a very misspelled, yet highly detailed to do list for the app, a very blank index file, and 37 open tabs of what looks like research for certain web features.
Project seemed to be some sort of organization thing with a lot of really random and unrelated features like "fruit meterr that scales different fruits you earn" (what does that even mean??) and "sassy bill reminder".
I'm closing out all the tabs I had opened, when I see the tab showing the domain name I chose and bought. I even got the SSL certificate and email domain purchased.
Drunk me seemed to have been really excited about this idea 😶19 -
Just solved a bug I was trying to solve for hours.
Oh, the pleasure of closing 12 tabs at once without wanting to recover them for the next session.
Just priceless!
Gonna have a good night's sleep.3 -
I have the habit of immediately closing parentheses after opening them, then insert the code.
The problem is, this applies to hand writing as well. Because you cannot move characters in a hand written exam I spend half of the time writing, then removing parentheses.
Whyyy brain5 -
Whoever decided to put a "No to all" button in Notepad++, I wish you and your family a healthy and wealthy life. I hope you will get a pay rise and be successful in your career.
- Windows OS user after a long while. Closing a lot of files was a nightmare back then.17 -
DataBase not approved, just use spreadsheet they said...
65487456456 errors later...
Many litres of blood later...
866 brackets just for the closing
528 ifs20 -
A bit long story about language barrier.
So I worked at an Asia company. The company decided to close a Northern Europe site which was considered to have low productivity. I was sent to that site to learn and take their job back to HQ.
One day when I was there, we got an email from a developer in HQ, requesting feature changes in the software maintained by the Northern Europe site. I heard the local developers were discussing about the email in their language. I don't speak their language but I could feel that they were confusing. So I walked to them and ask if I could help. They show me the email written in English by the Asian developer in HQ. And I was surprised that even I (who speaks the same native language with HQ dev) couldn't fully understand what the mail wanted to express. So I called back to HQ and talked to the developer directly, in our native language.
Turns out, he actually tried to say a completely different thing with that was written in the email.
Until that moment, I finally know why the site was considered to have low productivity. The men in HQ just couldn't describe the requirements correctly. And sure you got false result when you give wrong requirements statements.
I was so angry and felt sorry about the developers in that closing site. They were far more talented and experienced than most my colleagues in HQ. But they were laid off only because communication errors in HQ developers.7 -
When I was looking for an internship...
- Hello, I noticed your cv and you have a great portfolio! Are you familiar with responsive design?
- I have a basic knowledge on that, i am not an expert.
- Ok, can you come for an interview on Monday?
-Sure
Monday morning....
Interview with CEO...
- What's your experience with responsive design?
- I have a basic knowledge on that, i am not an expert.
- Sorry I need someone expert
- But the job is for junior dev and it's an internship
- Yes but man hours of someone to training you will be a cost for me.
- Ok, thank you
(Step before closing the door)Btw you should had check my portfolio, 4/8 websites are responsive.4 -
When I downloaded a virus that turned out to be a troll. It spawned some windows with 'Trololololo...' flashed blue and red and jumped random on the screen while playing troll music.
Closing one window would lead to that window beeing duplicated.
When I got into coding, one of my first projects was a recreation of this.1 -
That awesome feeling of closing all the tabs after debugging a server for 32 hours with no sleep.
By now i've seen ~40 of the 220 blue screen codes that windows has available...
Gotta catch em all!2 -
No, I don't want desktop notifications
Yes, I understand you use cookies
No, I don't want free books
We see you use AdBlock ...
[closing the tab]
And this happens every time I desperately search for smth5 -
My first experience with Swift ended in me infecting myself with a virus (kinda). I wanted to create a macOS app that would listen for a global key event, catch it and then type a word.
During development I set it up to listen for ANY key event and to type "BALLS". So what happened? I compiled the code, everything looked good, I started the app and pressed a key which emitted a key event. The event was caught by my app and it typed "BALLS", just as expected. However, the typing of the word caused a NEW key event to be emitted, which the app also caught. The infinite loop was a fact. FUCK!
I tried closing down XCode but all I could see was "BALLS BALLS BALLS" everywhere. I tried everything I knew but it just kept typing "BALLS". I had to hold down my power button to make it stop.
I finally finished the app (which I named "The Balls App", I kept the word "BALLS"). I solved this issue by only listening for KeyUp and when emitting the "BALLS" word I just used KeyDown.7 -
So I'm doing my thing... Suddenly all open windows start closing one by one and computer starts a shut down.. and i realize the windows update is coming..
But like.. can you at least give me a 2 minutes heads up? How the fuck such a process gets approved in microsoft?
"Yeah just close everything and force restart.. it's fine"14 -
Friday morning, taking a sip of coffee reading mails. (nb: I started the job on Monday, and this is my very first job excepted internship)
*wild manager appears* : come with with me a second.
Me: wtf is that
Him: close the door
Me: shit what did I do
Him: so we're closing this really big deal with a big client/investor
Me: ok cool, what is the point to tell me that ?
Him: remember when we discussed your salary and we couldn't afford to hire you as high as you wanted ?
Me:... Yes ?
Him: well now we can
Me, starting to understand: ... And ?
Him: well your new salary is higher than what you asked in interview
And that's how I got a 8% raise after 4 days at my first job :')6 -
About two years ago I get roped into a something when someone was requesting an $8000 laptop to run an "program" that they wrote in Excel to pull data from our mainframe.
In reality they are using our normal application that interacts with the mainframe and screen scrapping it to populate several Excel spreadsheets.
So this guy kept saying that he needed the expensive laptop because he needed the extra RAM and processing power for his application. At the time we only supported 32 bit Windows 7 so even though I told him ten times that the OS wouldn't recognize more than 3.5 GB of RAM he kept saying that increasing the RAM would fix his problem. I also explained that even if we installed the 64 bit OS we didn't have approval for the 64 bit applications.
So we looked at the code and we found that rather than reusing the same workbook he was opening a new instance of a workbook during each iteration of his loop and then not closing or disposing of them. So he was running out of memory due to never disposing of anything.
Even better than all of that, he wanted a faster processor to speed up the processing, but he had about 5 seconds of thread sleeps in each loop so that the place he was screen scrapping from would have time to load. So it wouldn't matter how fast the processor was, in the end there were sleeps and waits in there hard coded to slow down the app. And the guy didn't understand that a faster processor wouldn't have made a difference.
The worst thing is a "dev" that thinks they know what they are doing but they don't have a clue.7 -
Tried to exit MS Word with :wq and started wondering why it isn't closing before I saw the Windows logo.3
-
My classmate was debugging c++ code when he stepped out for a while. We deleted a closing bracket.
He is rewrote the code from cratch7 -
That feeling when you finally celebrate closing your browser tabs because you know you've found the solution for your error.... best Feeling ever
-
Not a rant - just wondering if anyone else witnessed a really awkward closing talk at a conference.
Attended a mandatory JS conference yesterday where all the speakers gave the typical conference talks on new ideas, frameworks, packages with code demonstrations. Most of talks were great and the some of the speakers were extremly humorous making the whole audience laugh which is hard to do. The talk right before the keynote speaker was like this.
Then the keynote started...
The end presenter was an asian-american woman (normally would not metion race/ gender but it’s important to the story) whose talk was basically how the white males of the world are controlling tech an their bias and privilege are marginalizing the rest of us who are not white american ‘cis-males’
She had no data and weak examples, such as sensors on automatic soap despeners not working on darker skins tones (that’s not racist it’s physics). Another example was a plugin where true=male and false=female. That is not gender biased it’s just lazy programming.
At one point she said:
“Have you even been to a party at a rich white guy’s house? There boring! I’m sorry”
This was just a talk about her feelings, if I was not surrounded by my coworkers I would have left.
I feel like this was not appropiate talk for one track conference since it traps everyone into listening. Especially where attendance is obligatory by your employer.
The conference should have warned people it would be an uncomfortable talk and invite people to start happy hour early if they chose.
To add to the weirdness in the closing remarks of one of the organizers patted himself on the back for supplying the women’s bathroom with tampons. He even created a slide for it with a tampon illustration.
Example slide from her deck.61 -
I really fucking loathe StackExchange. Some poor soul had the nerve (THE NERVE!) to ask a question about something they didn't understand (HOW DARE THEY!):
"What is the difference between a ping and a get request? The goal is to see if the site is up."
And par for the course over at smarmy-fucking-smug-pedant-land, in less than three hours, the question was closed: "[C]losed as not a real question... It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form.
Allow me to indulge in some pedantic, "well actually" fuckery of my own...
Well actually, that actually is a 'real' question, because it's, you know, a fucking question. There's a question mark in there and everything! The person is asking what the difference is between two different things, and we can tell it's actually two different things because the person uses two different fucking nouns. And not only is this person asking to know what the difference is between these two different things, they even give us a use-case for why they're asking the question: they're pretty sure that they think they might know there's at least two different ways to check that their website is up, they just want to know what the difference is between those two methods -- hence the two different fucking nouns. It's almost like they're trying to give us some contextual information about why they're asking so that even if there is some vagueness to their question -- which is bound to happen IF YOU KNOW YOU DON'T KNOW EVERYTHING ABOUT THE SUBJECT, WHICH IS PROBABLY WHY YOU'RE FUCKING ASKING -- then a reasonable, decent, helpful person who is making a good-faith effort to be helpful can infer from that context enough information that clarifies the question enough to remove any vagueness or ambiguity and thus provide a helpful answer. AND THAT'S WHAT FUCKING HAPPENED!
And what just fucking galls me to no end... the question was answered (SUCCINTLY, INFORMATIVELY, SIMPLY, AND CORRECTLY!) and even marked as accepted in less than fifteen minutes after being asked.
And that didn't stop some smug fuck from being an asshole and closing the question because "fucking scrub noobfags need to git gud."
https://serverfault.com/questions/...
If MySpace was a place for friends,
then StackExchange is the place for insufferably elitist smug cunts.4 -
Any code I make for clients is under a strict license unless specified otherwise. It's a straight forward license pretty much stating that they can't sell it or claim it as their own. I've had a few clients break that license but one stood out. I had made a piece of software that cost her over $2,500 due to the amount of hours that went into it. The transaction went along smoothly so there was nothing to be alarmed about. She came back for more work about 6 months later and I decided to do some checking up on her to see how her business was going. Immediately smack bang on the home page was my software being sold for $30/month. Needless to say I was outraged. She said there was no talk of a license which I responded with pulling out the contract that she signed where it explained that signing the contract meant she was in agreement with the specified license. 2 months after this started, I'm being awarded any profits made from said software along with her closing down the website. As much of a bitch as she was, it wasn't worth my time trying to get more out of her.5
-
Client writes me in slack two hours after my 8 hours are done:
“We have a bug, can you fix it now? We need to have it in two days”
Me, smoking pressing cmd+q, closing laptop , listening fools gold by the stone roses, curtains down6 -
Don't cha just love it when you download your "native" desktop application to host a meeting, only to find out its actually a wrapper around a browser?
How did I find out? Well I innocently tried to drag and drop an image to share, only to have the browser open and render that file instead of uploading it, killing the application it was running behind it, closing the meeting for everyone on it ... and not even be able to access a back button to re-open the session.
viva la hybrid!2 -
devRantron v1.2.0 ⏫⏫
Get it from here: https://devrantron.firebaseapp.com
It can be installed in all linux distros using AppImage. I have added the link in the website.
Changelists:
1. Subscribe to user or favorite a rant easily from the feed or comments. These options are hidden by default and appears on hover.
2. Edit or delete rants/comments.
3. Fixed: app not closing and menubar icon not appearing properly on macOS.
4. Fixed: Favorites section of the profile loading forever.
5. Added reply button in comments.
6. Clicking on comments icon now open rants.
7. Copy rant link using the link icon.18 -
You notice that you're a programmer when you automatically put a semicolon behind a closing bracket in an email instead of a dot.4
-
Fucking genius firefox!
Somehow an ad created a new window with a popup that can't be closed. Thanks to firefox's single process, I had to close all my tabs.
Now after closing the firefox with task manager, when I open it again, it opens all the tabs that were closed, including that ad. HAHA, fucking awesome.5 -
Some 'wk306' highlights from different people:
Walk around the office in his underwear, because he forgot he left his trousers in the bathroom
Run a red light outside the office due to not wearing his required glasses. When questioned by co-workers, replied "I don't follow those facist rules"
Asking if we work less will we get paid more, because the project will take longer to do (while in a startup with no funding trying to secure some)
Tell a senior dev to stop testing in his spare time, as we won't be able to release on time if he keeps finding critical security bugs
Telling me "your timezone is not my concern", when asking for help with new tooling so we don't have to be online at the same time
Blaming my team for requesting too much help, leading to his team missing deadlines, in a meeting with very senior managers. When the reason we were requesting help was the handover doc we were given was filled with lies about features being finished and "ready to ship" and lacking any unit tests
Being accused of bullying and harassment to the CEO, because someone asked "did you follow up with X about the partnership they emailed us about". The person who was responsible, forgot 4 times, and saw it as an "attack" to mention it in team meetings
Telling an entire office/building mid November they've secured funding for at least the next year, then announcing in January after the Christmas break that its cheaper to move to India, so they are closing the office in 30 days2 -
!dev
That moment that your favourite YouTube channel (I only use YouTube from google and mostly through hooktube.com) announces closing soon.
I’m genuinely very sad. This channel was awesome because it allowed for beginning raw producers to get feedback from raw fans and even get in touch with the top raw labels!
Some top producers which are around now got into the game because of this channel and I was hoping that that’d be me one day as well.
I’ll miss you, RawstyleNation 😥❤️15 -
11:45pm
I better go brush my teeth and do all my other things, to be safely and happily in bed with plenty of time to get a good night's sleep.
11:52pm
I am done doing those things. I sit back down in front of the computer to start closing apps to shut it down.
11:53pm
I get an idea to write a script to more effectively launch my remmina sessions with keywords in my keyboard launcher. It will take about ten minutes to write.
2:07am
The script is pretty much done, and I've done 37 quizzes on jetpunk. -
I feel like a e-hoarder, I keep tabs and sublime windows open and worry about closing them as they might contain important code...
FML4 -
Late in the afternoon right before closing time I wandered into a lunch-having nice little place. There was noone and my sleep-deprived self ordered an espresso. The ~25yrs old barista was kind and smiling and while I was adding some milk to my coffee she suddenly asked:
'Are you an IT guy?'
In shock I said: 'Okay, yes, I do wear glasses and drink coffe, but how did you know?'
'I didn't, but... my printer isn't working at home, can you tell me why?'
At this point I bursted out in laughter and realized that to most people I am a printer fixer. We all are, aren't we?8 -
Today I have opend a foreign project and noticed a weird bracket ending style.
All closing curly brackets are indented one level further to the right.
I've never seen that style before. Normally I am really agnostic about bracket styles.
I don't care. But this one is so strange and confusing that I wanted to know what you other devs think about it.17 -
The Steam Community forums for the Planet Zoo beta have really reinforced my decision to stay far away from game development.
A third of the posts are people who clearly have no idea what a beta is - "don't buy, too buggy". Sorry, were you expecting a finished game? You wasted your money, then.
Another third of the posts are people making decisions for the developers. A very common discussion is "Should they delay launch?" which makes my blood boil a bit. First of all, you have no fucking clue what kind of manpower this development team has. You don't manage them, and neither do I. So, neither you nor I should be making assumptions about how fast they can fix the issues, and definitely shouldn't make decisions about if the game should delay launch.
Second of all, neither you nor I know how the game is built. These fixes could mean a line of code, or they could mean a re-write of multiple core systems. We don't know, and I'm guessing you've probably never even written a line of code in your life so you REALLY shouldn't be telling these guys how to do their job.
The last third is benign discussion - people reporting bugs (even though there's an issue tracker, but that thing is fucking jam packed with 250 pages of reported issues), asking how to do xyz, posting feature requests, etc.
But if roughly 60% of the community is behaving poorly and actively working against development by pissing off the devs and drowning out constructive discussion, then yeah; I won't be going near game dev any time soon. Sure, developing business software means dealing with REALLY dumb people but at the very least they are in a business environment and not in a toxic forum of bullshit.
Oh, and as a closing remark, I love this game!13 -
!rant
AHHHHHHHHHHHHHHHHHHHH
FOUR DAYS ‘TIL CLOSING!
I’M GOING TO OWN A HOUSE!
AHHHHHHHHHHHHHHHHHHHH14 -
Since everyone is posting their system, I'll do it now, too:
- Type: Laptop
- Age: about 5 years
- Weight: 2-3 kg (too much)
- Modifications: Paper below problematic keys; Samsung Evo 850 250GB SSD
- Usecase: School-Laptop with every Office-Suite I could find.
- Pros: Wrecks my PC with the boottime (Gnome > KDE); Looks really sick; Really lightweight Arch installed; Quiet when not under load
- Cons: Really heavy; Battery old and unreliable; Bluetooth stops working after closing lid13 -
thought I'd type:netstat -atn on my server and the result was a bit scary, found a Russian IP address with state of: FIN_WAIT1
Either Fail2ban was closing his connection or that dude was able to access my server :/
Checked /var/log/auth.log
and found this for his IP: Failed password for root from ----- port 37635 ssh2
I hope I'm still safe :)
Instantly disable password login and make it only SSH
but now I need to carry my SSH keys or else I'm blocked out lol9 -
Tried deploying a new nginx server today, wrote the site config manually.
"Alright, done! Let's restart the service and look in the browser how it looks"
# systemctl restart nginx
> Process exited with error code.
"Fuuuuck..."
# nginx
> Unexpected } on line 13.
# vim /etc/nginx/sites-enabled/thatconfig.conf
"Wait wtf.. there's nothing wrong with the curly braces.. they're all opening and closing as they should..."
*takes another closer look*
Line 12, missed a fucking semicolon 😑
Append semicolon, :wq, # systemctl restart nginx
Works like a charm 🙄 all because of a stupid semicolon.
Until now I thought that the semicolon jokes were just lame.. but damn you semicolon, you are indeed the superior hide and seek player 😅10 -
So... I was using my laptop one day and randomly my mouse started spazzing out, I thought maybe it's broken or something so I paused the video I was watching and waited for a couple of seconds, soon after I played the video, my mouse started moving around again, closing windows and opening up different things. I got so scared I shut my laptop down before it could open anything else.
A few minutes later I turn it back on and everything looks fine, I thought whatever that was all about is probably gone, had to double check my security settings etc. and let it be for now.
A few days later I found out that it was actually my dad, in the next room trying to hook up his Bluetooth mouse to his iMac which for some reason got connected to my laptop instead. He was moving it around trying to see whether or not it's working, thus the spazzing out of it on my screen...lmao boy I felt so relieved after that 😂
~not really a hack however it gave me a good laugh2 -
Closing 10+ tabs after finding the solution is like flushing the toilet, you don't even look back.6
-
Oh man, today just gets better and better...
Manager: * Creates ticket, which has a link to a shared pdf, with each page being a link to another ticket in our JIRA with unrelated bugs of what we are currently working on. *
fullStackClown: I'm closing this ticket and putting this feedback in the original ticket that I assigned to you to review days ago.
Manager: Rages like a little baby and removes my access to said shared pdf.
fullStackClown: Welp, looks like I'm done for the day! Cheers!5 -
"Colleague" (he's there for day-time spending, he doesn't actually have a job) of mine keeps telling me I should F off with pushing for Docker, Git and CakePHP because they add an additional amount of learning for interns that they might not need to learn for school.
He wants us to keep working with the following:
- Google Drive for codebase sharing
- FileZilla (or atleast an FTP) for deployment
- "from scatch" PHP code where business logic and front-end code are all slapped into one big file and where functions are also slapped into one big file. also, opening and closing the database connection for each query made
Guy basically wants us to deliver a crappy products that we might not be able to maintain and are prone to a wide-variety of issues.
Yes, let's limit our company to *only* the things that interns need to learn for school, what could *possibly* go wrong :^)11 -
It was our first computer. probably it was 2008. I was super stupid back then. One day I saw a text file in our desktop, which says, "Hey $username, how are you? Message me here I-forgot-his-email@yahoo.com"
No matter how much we delete the text file, it kept on recreating and keep on adding same texts with multiple lines. I was really annoyed!
Yahoo messenger was popular back then. So I messaged the person using Yahoo messenger and he replied. Our conversation went this way:
Me: (after explaining a bit about the text file) what is this?
Him: it is a virus
Me: how do I delete this?
Him: if I teach you how to delete it, the whole purpose of creating it would be in vain
Me: okay, how do I create something like this?
Him: just Google
That day I was swearing at him from the bottom of my heart, not through messenger, but from my mind, because he didn't teach me how he made that virus.
I was like, "I will show you ***** that even I can make a virus better than that". So, I started googling & started learning how to make these scripts. The more I learned, the more it blew my mind. I was creating simple stuffs like, opening/closing CD rom every 5 seconds. It was so fun back then. Cause, my friends had no clue why their CD roms kept opening every 5 seconds.
After a few days, I started to thank the virus creator from the bottom of my heart. Cause, if he taught me how to create THAT virus that day, I probably would've just learned THAT one thing and stopped. But because he didn't teach me that, to learn one thing, I got to learn more than that one thing, which I'm really thankful for.
And then the journey started. Learned Batch, VBscript, C, C++, Java and so on. And still learning new things everyday...4 -
Fuck you European union. You cunt smelling, ass licking, pieces of dog shit. Thank you so fucking much for taking yet another step towards closing the 'Web and making it harder for smaller people to exist on it.
I wish you all a slow and painful death just like the death you are sentencing the free 'Web to.
https://theverge.com/2018/9/...6 -
Me: gets project working 100% after tearing my hair out the last 3 days
Me: closes extra tabs cluttering IDE I was using to compare code to try to figure out what was wrong
Me: doesnt click "save" cause I was only closing my "scrap paper" tabs
Me: runs app in newly decluttered workspace
App: doesnt work
Me: realizes I CLOSED AND DIDNT SAVE THE WRONG FUCKING TABS6 -
I often create git issues seconds before pushing the fix, then closing them immediately.
Allows my coworkers to receive notifications that I am actually working...2 -
I find it amusing that if you tell an SMTP server "quit", it responds "Bye" before closing the connection...
It's the little things in dev life...1 -
Heh, so I was working in tech doing the physical side of the department (going and moving computers or hardware fixes etc.)
Anyways since I got that job I noticed some of our recurring systems tickets are time consuming so I wrote some scripts to speed up the parts that I could.
(Like getting us all the useful information for hunting down missing machines or machines that haven't been able to be backed up in a while)
So yeah, made the scripts and some higher ups were like great you should submit them to our repo so they don't just disappear. Do it and get told by one of the like cto kinda guys that, "instead of doing a script to do what the original script should do, maybe go in and fix our original one."
So I told him, I don't get paid enough to fix your guys scripts, I don't know perl(which is what those ones are in) and honestly it's not my department for fixing those scripts, it's yours.
I had made a big post about what my scripts did and gave access to them and what they could have fixed in an hour they argued with me for months about just fixing their originals instead.
So now I've just actually gotten promoted out of that dept and into another where I will finally get paid to do more code, so I was closing my last tickets and the "trying to add my scripts to their repo" was one. The guy had denied my PReq Esso I closed the ticket thinking meh.
This guy re opens and again says just fix the scripts. Luckily I had done a personal repo for the scripts so others in my (now old) dept can keep using them. So I said I'm not in that department anymore, I made them available to the others and I still don't know perl. Not sure what your wanting me to do...
Got a laugh when he replied "oh yeah, just heard about the promotion... Congrats.. Where's the repo?"
I feel like I won finally5 -
Me: *Killing tickets like there's no tomorrow*
Others: Doing nothing.
Manager: Well, since you are closing tickets here are some from your coworkers.7 -
Just spent 3-4 hours trying every possible solution for fixing a strange bug. Turned out it was caused by a closing tag in the wrong place...3
-
When it's dark outside all the time and the sun suddenly comes around.
Everyone's going crazy about it and walking outside.
Me: FUCK. How am I supposed to read my freakin code like that?!
*Me standing up and closing the shutter*1 -
devCraft {
Closing the minecraft server for a little while!
I'll be adding mods, writing up a perms file, and hosting the pack on git! I'll post a rant with the repo link.
One of our lovely ranters offered a VM to host the server on, so the ip is probably gonna change as well! (i also gotta make an arch bootable USB, and running the server would slow that down lol)
i'll notify you all once it's donevia a rant, like i said. until then, formulate plans, and suggest some developer-related mods for me to add in! (must be 1.7.10)
Currently planned mods are:
- ComputerCraft
- Applied Energistics
- Buildcraft
- Project Red
and a few from whatever you guys suggest. see you then!
}47 -
This is something I'll never forget.
I'm a senior UI engineer. I was working at a digital agency at the time and got tasked with refactoring and improving an existing interface from a well known delivery company.
I open the code and what do I find? Indentation. But not in the normal sense. The indentation only went forward, randomly returning a bunch of tabs back in the middle of the file a few times, but never returning to its initial level after closing a tag or function, both on HTML and JS.
Let that sink in for a minute and try to imagine what it does to your editor with word wrapping (1 letter columns), and without (absurd horizontal scrolling).
Using Sublime at the time, ctrl+shift+P, reindent. Everything magically falls beautifully into place. Refactor the application, clean up the code, document it, package it and send it back (zip files as they didn't want to provide version control access, yay).
The next day, we get a very angry call from the client saying that their team is completely lost. I prove to the project manager that my code is up to scratch, running fine, no errors, tested, good performance. He returns to the client and proves that it's all correct (good PM with decent tech knowledge).
The client responds with "Yeah, the code is running, but our team uses tabs for version control and now we lost all versioning!".
Bear in mind this was in 2012, git was around for 7 years then, and SVN and Mercury much longer.
I then finally understood the randomness of the tabs. The code would go a bunch of tabs back when it went back to a previous version, everything above were additions or modifications that joined seamlessly with the previous version before, with no way to know when and so on.
I immediately told the PM that was absurd, he agreed, and told the client we wouldn't be reindenting everything back for them according to the original file.
All in all, it wasn't a bad experience due to a competent PM, but it left a bad taste in my mouth to know companies have teams that are that incompetent, and that no one thought to stop and say "hey, this may cause issues down the line".4 -
When I was 14 or so, we had acces to some computers during break. I went through each and every one of them, rebooted into Safe Mode (yeah, Windows), logged in as admin with no password, and gave admin powers to my account (each student had one, at least). Then, installed a keylogger and one of those "trojaans" that let me remote terminal, keyboard and mouse control to all the PCs (I had tried telnet server, but this was soo much easier).
Then came the fun.
"Why does the start menu keep opening by itself?"
"Why is the CD tray opening and closing on its own?"
Etc.
Then I found out social media passwords like (translated from spanish) "bigdicks". Never used them, because I considered myself one of the gray hatted. I did it just for the fun.2 -
When I go to bed, I power off my laptop instead of just closing the lid. I don't bring my phone with me. I don't have a smartwatch. I sleep with no electronic devices with me.
Anyone can solve a lot of their problems by conversing with themselves one on one. Instead, they prefer a feed algorithm taking away their pain. But the nature of pain-relieving addictions is that they always intensify the pain in the long run.
Listen to yourself. Speak to yourself quietly, one on one, without mark zuckerberg in your room listening to your every word. The overwhelming pain will be no more after mere minutes. Only then can you be free.4 -
The minister of human resources is a fucking idiot. Nobody including ministry employees knows exactly what will the rules be 6 hours ahead, but they take effect immediately and failure to abide is punishable. Yesterday the HR minister said that if public schools close down, everyone will have to repeat this year. In response to this and a few other questionable decisions on behalf of schools across the country, today the government banned anyone from closing down public schools including headmasters, public health services, the police and the ministry of human resources.2
-
Story: A sudden pleasant realisation about myself...
Realized today that I have reached a level of Developer I always wanted to have reached.. A junior forgot his mouse, I gave him mine and took out old trusty hacky scroll from the cupboard, the junior brought batteries as a thank you, I told him thanks but there was no need, I have coded without a mouse and can do again if need be, no issues really... I have even used my phone over wifi as a mouse, I can dev as long as I have some form of something at my disposal... Had a meeting where I had to implement a feature for something that was mentioned in a meeting I was never invited for a bunch of months prior, that had to go live today, asked all the right questions, remained calm, tested like a pro and it was practically seamlessly inserted into the system by yours truly... I was proud of my work on a different level to be honest.. Had a difficult meeting with my manager, but kept really calm, stated the facts effortlessly and made him feel comfortable too, happy ending and happy resolution. Then I spent the ride home trying to project an fm station using my phone.. by the time we got home me and my colleague found a solution to be tested soon... It was only when I put my phone down after closing all my research tabs and deleting the apps used for the day that will not be needed tomorrow when I realised how awesome I seem to have become... Treating myself to a juicy burger and coke with gaming tonight. Something is bound to go sideways again sometime. But you know what, it seems like I'll be just fine.. Somewhere I seem to have become exactly who I wanted to be.. Now for further goals and higher aims while maintaining this person I only noticed today.2 -
Friday Eve: Closing eclipse project happily at work. Everything works sorta fine.
Monday morning: Opening eclipse project again. Everything is like i left it. "Main class could not be found."
What the fuck eclipse?4 -
I'm a die hard ViM user and throughout the years I managed to put ViM key bindings in everything, from browser to even my cell phone for some reason (back in the day if I had the opportunity to put them in the fridge, I would have put them - people would have a hard time closing the door, though)
The thing is that it had become a liability because I see that, even though I "work really fast and efficiently" using this tool, when I have to use other things, like a different shell (I use zsh with some ViM sauce) or type in another editor, it sucks so hard.
Everything is wrong, nothing works, the typing is a mess.
Now I'm trying to force myself to use Vscode and I removed all those extensions from my browser and shell. It is uncomfortable, but the idea is to "rewire my muscle memory", if there is such thing.
Yeah.8 -
My noob friends at college don't understand coding and its purpose. They miss out a semicolon or a closing bracket.
They reach out to me to help them get rid of the errors(too many).
Me: Just add a closing bracket here.
Friends: Boom, you are the god Bro!!!
LOL 😂😛5 -
Here's a real tip for people new to the industry.
It's one of those things that's been said over and over again but very few can really seem to employ. I suggest you learn it /well/.
You are not your code. Criticisms of your code, ideas, or your thought processes, is not a criticism of YOU. You absolutely cannot take criticisms of your work personally.
We are engineers. We strive to seek the best solution at all times.
If someone has found a problem with your code or with an idea or whatnot, it is coming from a place of "this is not the best solution", NOT "you're an idiot".
It's coming from a place of "I'm closing this PR because it is not a change I feel suits this project", NOT "I'm closing this PR because it's coming from a woman".
It's coming from a place of "This feature request is ridiculous/this bug is not actually a bug", NOT "you're a fucking idiot, fuck you".
It's coming from a place of "I've already had to address this in a number of issues before and it's eaten up a considerable amount of my time already", NOT "I don't even know you and this I don't have time for a nobody".
You do not get to be bitchy to maintainers because they denied your request. It's not a reflection of you at all. But if you're arguing with someone who has maintained a piece of code for almost a decade, and they're telling you something authoritative, believe them. They're probably smarter than you on this subject. They've probably thought about it more. They've probably seen their code used in many different places. They have more experience than you with that codebase in almost all cases.
Believe me, if we cared about who was behind all of the issues, pull requests, etc. we get, we'd get NOTHING done. Stop taking shit personally. It's a skill, not a defense mechanism. Nobody has the time to sugar coat every little thing.
Let's normalize directness and stop wasting time during technical discussions into opportunities for ego-stroking and circle-jerking and back-patting.8 -
Is it just me or does everyone start having a explosion of ideas for future projects just after closing eyes for sleep? And then next morning, it's blank again.5
-
Pathetic dev moments: Any time my macbook fans rev up, I worry that I'm working my baby too hard, so I start closing applications.3
-
Minutes away from Ludum Dare submission closing. Finalizing game build to upload and submit and I get this...!!!
FUCK!
I'm too exhausted to give a shit at this point. Guess I'm out. Still pretty happy with what I managed to make. Had a late start, first LD and I actually managed to make something I guess XD
I'm going to bed T_T6 -
Took me 6+ full days.
The feature does not work. Repro is unknown, so only prod is experiencing the issue.. Which rules out the debugger option. Sometimes there's an entry seen in logs: "java.lang.StringIndexOutOfBoundsException". Nothing more - just that. No stack, no class, no nothing. Is it my code that's buggy? Is it some config? Integration? Unexpected response...? A bug in a lib? Is dimm faulty ir maybe server's shared libs are off?
Turns out I used a closing parentheses instead a closing curly bracket in an error message that's supposed to be interpolated...
String message = "{some-business-rule-related-error-message-key)";
took me 6+ full days... But I found it. Took the rest of that Friday off to walk in a park and enjoy my life :)9 -
Two years ago I started a small online business. It was not a long term investment and it literally ended up being a one man business. The idea was to provide a service to a small group of people who will benefit from my idea and to offer it to them at a very cheap price. (It being the cheapest helped its popularity a lot).
However, never once did it actually make any profit. (and i never wanted it to make a profit) I wanted it to be self sustaining business and it was.
This was a project for my University by the way, I started off in my first year because of my extensive knowledge in the particular matter, and I only sold to people on campus.
Now that its been 4 years, my batch is graduating, and so there aren't many people to spread the word about this project. It's finally the time to actually say goodbye to this project.
I leased a dedicated server two years ago, and I am finally saying goodbye to that too (can't afford to keep it live anymore). And seriously, it feels sad to shut this machine down haha, I've had so much fun playing around with the configurations (even though it was a production server).
It's clear that this downsizing will continue and I will be closing the service in the near future.4 -
!dev
There’s nothing more frustrating than feeling depressed and apathetic toward everything for days, like the walls are closing in, you’re never going to achieve your goals, and there’s no point to living... only to realize it’s just that it’s “that time of the month”.
I miss the days when my PMS was literally just “Random commercials make me cry”.
To clarify, I would probably catch on that these emotions are just a hormonal reaction if “that time of the month” happened every month. Nexplanon is a weird birth control.
I’m sure this thread was overshare, but I just wanted to express my frustration.
Here’s Bob being stealth5 -
Just saw this on FB..
Well I don't do much Webdev but that won't work for sure.
The first closing bracket ends the function Block -.-
Nice try Marketing team9 -
So there was that paranoid schizophrenic person, a blonde girl with a buzz cut, and somehow she was a friend of mine. She used a Linux distro called “!!!!!!!!____!!!!!”, and convinced me it was the best distro out there. But the way she used it was… very specific.
She called me. She told me the new distro was out, this time it was called “!!!!!!!!!!!!!!!!!”, and _this_ was the best one. It finally allowed her to observe the area around her neighbourhood right from her PC, through some app, and make pits in the ground. It was done with a touchscreen of a Nintendo DSi connected to her PC with something that looked like an IDE cable. You touch the area of the screen, and the pit will appear outside IRL. This was needed to trap swine-looking creatures in those pits, as they infested the land and were attacking people in packs, turning them into dirty, greyish, half-transparent lumps of gel.
I went to see her, and somehow I knew exactly how it's going to end, as if I decided to replay a game level. She lived in a rotten, mouldy, dark, half-abandoned condo building. She was also a terrible hoarder. I approach the old wooden door of her flat. It was painted over 1000 times and was barely closing. She knew I would come. She rushed outside, looked at me with her moon-sized eyes, grabbed my arm and told me:
“We have to run.”
I felt a sudden crippling rush of anxiety. I woke up. My heart was absolutely racing. My sight became darker and darker. The chest pain was consuming me, and I could barely move. I almost vomited.
That was quite a night.8 -
Testing in a production environment is like closing a door in a to kill a snake and electricity goes off 📴
-
So I'm writing some multithreaded shit in C that is supposed to work cross-platform. MingW has Posix threads for Windows, so that saved already half of the platform dependency. The other half was that these threads need to run external programs.
Well, there's system(), right? Uhm yes, but it sucks. It's incredibly slow on Windows, and it looks like you can have only one system() call ongoing at the same time. Which kinda defeats the multithreaded driver. Ok, but there's CreateProcessA(), and that doesn't suck.
Fine, now for Linux. The fork/exec hack is quite ugly, but it works and is even fast. Just never use fork() without immediate exec(). First try under Cygwin... crap I fork bombed my system! What is this shit? Ah I fucked up the path names so that the external executable couldn't be run.
Lesson learnt: put an exit() right after the exec() in the path for child process. Should never be reached, but if it goes there, the exit() at least prevents a fork bomb.
Well yeah, sort of works under Cygwin, but only with up to 3 threads. Beyond that, it seems like fork() at some point gives two processes the same PID, and then shit hangs.
Even slapping a mutex around the fork and releasing it only in the parent process didn't help. Fork in Cygwin is like a fork in the ass. posix_spawn() should work better because it can be mapped more easily to the Windows model, but still no dice.
OK, testing under real Linux. Yeah, no issues with that one! But instead, I get some obscure "free(): invalid size" abort. What the fuck would that even mean?! Checking my free() calls: all fine.
Time to fire up GDB in the terminal! Put a catch on the abort signal, mh got just hex data. Shit I forgot to compile with -O0 and -g. Next try. Backtrace shows the full call trace, back to the originating line in my program - which is fclose() on a file.
Ahhh I remember! Under Linux, fclosing a file that is already closed makes the program crash. So probably I was closing it twice. Checking back.. yeah that's where it was.
Shit runs fast on several cores now!8 -
We have this important product with deadline closing in. Dev who was working on it for months went on vacation. Bugs came out, no comments in the code, no docs, some of the variables are as verbose as var abc = "some weird shit"; and I'm tasked with trying to test, fix algorithms and instruct on how to use it.
This isn't first time happening, so I'm dusting off my CV this weekend.5 -
My little pleasure of today.
I asked a question on Stack Overflow.
It was closed with reason: "off-topic" "tip-of-the-iceberg" question.
I followed the link to the explanation of why it was closed.
There was a discussion in metaSO, about closing or not those kind of questions.
It seems somebody "won" the discussion arguing that was the right thing to do....
I DOWNVOTED HIM.
now I feel much better.3 -
!rant I pity anyone who may have overheard my interaction with a gecko that managed to sneak inside my house when I went to get a package on my doorstep last night around midnight
“Hey little guy, let’s try to get you to go back outside, okay? Nonononooo not that way, fella. Down the wall. DOWN. DO NOT CLIMB BACK UP. Okay. Yeah, see, there you go. Good job. OH MY GOD DO NOT DO THAT. Listen, I think you’re fucking cute, okay? BUT IF YOU CHARGE AT ME LIKE THAT, YOU TRIGGER MY FEAR RESPONSE AND YOU MAKE IT REALLY HARD FOR ME NOT TO KILL YOU. Hooooooly shit, little dude. You were so almost dead. Okay. Okay, yeah, go out the door. Door. Yesssss.”
closes door, only to realize little dude’s tail is still on this side
“OMG LITTLE DUDE, are you okay?!!” opens door, little dude sneaks back inside
“Noooooo you need to go outside. Come on, you know you want to go outside”
Finally managed coax him out the door and confirmed he’d cleared the doorway before closing and locking it.5 -
I received this special picture per WhatsApp. It changes its color the first time while downloading and the second time after you tap on it.
It goes from about #ff96e1 to #42000d
(Yes, I know these Thumbnail-Faker but in this case it keeps changing its color even after opening and closing the pic multiple times)
I did not find anything by inspecting it on PC...
Does anyone have an idea how it works?21 -
Just off the meeting where the CEO told the company's closing in ~1.5months -.- and I still have a list of things to finish before they go into "freeze" mode, so the company will continue when they get more investments which might take months/year+
Now I've ~1.5months before im homeless coz im on a visa here, add to that the tech-recession, fuccccccccccccccck my life -_-5 -
Next 3 days I' ll be working on moving our email server to new server because the old datacenter is closing down. Clients are pissed and they are fucking verbally bashing me left to right when I told them that their emails will be down since most of them host their own DNS.
I am fucked.3 -
La me working on a new chrome extension:
- ok, this page has some hidden divs, I need to tell the extension to make windows scroll to the bottom while there are still elements with a hidden class
- creates a while(1) loop with a condition inside it to break if no elements with hidden class are longer there.
- happy with the code
- uploads the extension
- goes to page
- brings out developer tools
- goes to console
- clicks on extension on chrome
- right clicks the extension and then inspect
- ok here we go: la me click on button inside extension popup
- console shows some logs
- nice it's still looking.
.
.
.
- wait! Why is the page not scrolling ???
- looks at logs, WTF nothing changes in logs .....
- OMMMMG a infinite loop .... infinite loop inside chrome ....
- OMMMMMG my pc's gonna crash .
-stop please stop stop.
- wait! how do I stop this?
- tries CTRL+C ... nothing
- tries CTRL+Z ... nothing ...
.
.
.
.
Abort abort Aboooooort.
.
.
.
- Deletes extension from chrome.
-..... loop still running
- clicks on X to close Chrome.....
- not closing O_o
- Oh God, i need to do something before Chrome sucks all the RAM left.
- remembers the savior...
.
.
.
- Task Manager heeeelp me.
- opens Task manager
- chrome is consuming ~ 2 GB of RAM.
- WTF! Kills chrome.
Thanks for reading my lil adventure 😅5 -
Every damn time I turn on my laptop I spend 15 mins just closing auto update shit from windows 10 and office
Dear Microsoft I have a 2Mbit line not 100000GB fiber optics, auto update cripples my internet 😒undefined why having internet if you don't auto update please have more updates fucked up just a windows thing4 -
With over 10 years as a dev under my belt I never wanted to change company before my probation is even over. I never felt so drained, and pissed off for the entire duration of my working hours, every day for about 4 months straight. I was thinking it should get better, I listened to all the rubbish webinars about the company culture, how inclusive and diverse we are and how they value phycological safety and how everyone should feel safe to speak their mind. The people are fucking reviewing my approved and merged PRs and expecting me to address their comments. Like someone goes on holiday and when they’re back they want to spray wisdom around, and that seems to happen to everyone not just me. When we have technical discussions and I express my opinion I get given out to for speaking too much. Like what the actual fuck, your code is shit, everyone knows it and complains about it, but we should look at what we already have as an example. How the fuck you think you can improve your code if your not going to change your shit. Writing class diagrams for about two weeks at start of each project and nitpicking every fucking thing, only to abandon it after our first sprint as the fucking requirements have changed and what we agreed at the beginning as no longer relevant. No shit as if they don’t know requirements change ALL THE FUCKING TIME AND THIS IS EXPECTED. I was also asked to send a slack message every morning when I start working, when I get my lunch, when I am back from lunch and when I finish work. Have to fill in some stupid weekly update system with what tickets I’ve worked on during the week, like have you heard of Jira filetrs ? Stop asking me how I am getting on if I’m fucking closing all my tickets every sprint. I don’t ask you questions, if I finish all the work you asked me to on time, you can safely assume I am doing fine. Also your fucking back to back meetings are not helping me close my tickets any faster. Already got an offer from another company I am out of fucking here.
YOU CAN ALL STICK YOUR PR COMMENTS, ENDLESS MEETINGS AND WHAT NOT UP YOUR FUCKING ARSES. 🖕🏻🖕🏻🖕🏻🖕🏻🖕🏻🖕🏻4 -
When I see a space after opening bracket but none prior to the closing one... *fugly*
void func( int x);
/me hates! Do it one way or the other pleez!1 -
Love the feeling of closing all those open tabs when you finally fix that bug and finish that task.1
-
So today we were notified that the schools in our sector will be closing next Monday for an unknown amount of time...
The building where my office is, will also be closing...
The fuck!!! I have 3 lovely monsters... No way to run, to hide, to be in peace!!!! THE WHOLE FUCKING DAY!! FOR WEEKS!!!!6 -
My company is thinking of closing its office, and many other companies are doing the same in a bid to save money now that they realise WFH is just as effective.
I'm not a fan. Working from home for the next 30+ years with no variety in the physical environment, experiences or interactions I have in those 8 hours of my day is an absolutely depressing thought to me.7 -
Hey guys it's not a rant, but i feel this place might help...
I am a 20 yr old, second year guy ...have got some experience in core Java and after that, i have been doing android for 8months... Yeah , i coded some basic apps got my hands dirty on firebase, sql libraries and some connectivity...
Even got landed in an internship.
Today i feel myself to be an intermediate android dev , nd i know their are many things that can be learnt in android that i don't know..
But what after that?development as a carrier interests me, but i fear for a job security ... I could learn more of Android,maybe learn ios after that but their are always articles coming out that react is future, webapps will replace android and stuff like that...
I Have also heard stuff like companies today want to squeeze more out of their techs, so they want less and complete developers having experience in both web and mobile app designing and other stuff like that
Are you freakin kidding me? Android and ios alone are like drinking Pacific and indian ocean and to add web developing, its like drinking out every drop of ocean in the world.
I guess their are guys which exist with knowledge of all three, maybe I can cover them all too(someday) but that would take my whole clg life of 4 years..(I guess)
And no ,I don't have problems with that too.. I actually like developing but again i hear big words like cloud computing, AR,VR AI, data sciences, automation, graphics designing, game dev, and many more...
Basically i hear too much and i fear too much 😅 and i don't think closing my ears would be a good choice...
So, which ocean of carrier should i aim to go for?nd are my fears real? Do companies really prefer some web guy designing Amazon like apps over android-only guys like me?is automation nd templates really gonna take all we, developers jobs?should i look into ai/data sciences?
Well , i am a simple guy, who got his first pc at 17 so naturally, i am fascinated even by the working of a calculator app and anything relates to tech so am open to pursue my interests in any fields23 -
fck you visual studio!!! seriously what is wrong with you?!?
~me peacfully writing some code ~
ok let's see what we did
vs: I can't compile that. The key whateverKey in line 15 is not defined.
me: ok let's investigate...
nowhere in line 15 use whateverKey.... ok....
wait I didn't change that file at all.
~me clicking rebuild solution~
vs: can't build that because of whateverKey in line 15.
me : WTF?!?
checking git diff -> file not changed
me okkkkkkk......
closing visual studio and reopening solution.
Build succeeded.
What the actuall hell?!?
I'm spending way too much time trying to get that shity peace of software to do what it is supposed to do!6 -
What kind of cancerous shit is this? Who the fuck writes special template file for CLOSING divs? Why is this crappy shitty system so popular? It is a bunch of quirky and tangled code written randomly all over the folder.. Wtf seriously, is this "modern coding" or am I missing something?6
-
After 2 years in a small company as an all around software developer (started with xamarin for Android/iOS, then Unity, then OpenXML, augmented reality, virtual reality and .Net MVC...yeah all that and lots more) I changed to another company and I'm here 1 month and some days. I am super enthusiastic and I like it here!! They're more specific and professional, exactly what I need at the moment.
What is the problem, you might ask?
I was given some projects, I have done most of the work but now an issue arrived. I did almost everything and now we're waiting for some answers needed before closing the projects. And I get bored. I want to work!! I need to continue the streak! Just give me something and I'll make it happen!! I am boreeed!!
What is wrong with me? Am I buggy or something?2 -
It boils my blood how many times I pressed ctrl+w closing the current tab instead of saving it FUCK6
-
Wtf is the point of closing a project submission at a specific time. Yea sure let me know it’s late but if I want to post the file late let me. I was 8 seconds late to post a file for a project and it locked me out. Sure they say no late work but this is a stupid policy. Also, why is it due at 4am? No body is looking at these at 4am! Just make it due at 6 or 8am or something. Gaaa18
-
I made a SMALLLL change in a .NET middleware that handles WebSockets (in the self-made SAAS I previously talked about) and it somehow fucked up n stopped closing connections even for people who left
On the bright side, I didn't notice any performance reduction in the service so the scalability was unintentionally stress-tested lol
Now to figure out how it fucked up6 -
I am hating hating hating my junior developer job. Most of my work is updating PDF's on all type of internal intranets. So my days are spent working jira ticket after jira ticket.
Internal customer submits ticket to update 3 PDF's on internal intranet for sales team. They are named so badly I can't match them unless I review all 30 links on this page. Most links with report numbers but here's is not also no notes to where in the page.
I do JIRA comment --no respose even though I tag her.
I politely email her asking her to rename the PDF's with the same file names I am replacing.
She asked it I wanted her to rename them 'other'
What??? So I asked her where she sits so I can show how to easily find the file names in the URL.
Responds with the same files renamed with more description but still not the same.
Respond again giving better instructions on how to find it and second request to where she sits.
1 day later no response!
When I get into today I am closing her ticket!
Fuck these middle aged Midwest dumb bitches!2 -
Dear Windows,
y is it that Windows Defender is suddenly closing down apps, I opened on my own, and have been using and interacting with for ages since I installed this OS?
How the fuck is this unwanted software?
Fuck you.13 -
So this i quite a big project, hundreds of files everywhere, pages are rendered using multiple files.
This is one of the latest created page, it was made by my boss, and it just give me the creeps.
I REALLY don't know how he always comes up with shit like these.
I just hate having more than 5 closing tags in sequence...6 -
Always test your fucking mocks
I spent 3 weeks debugging every part of the application, except for the mock network connection. The mock network connection didn't trigger closing events on the sender side. -
Closing a bug with "Let me know if it's still happening for you" when it's been three years since the bug was filed and you haven't looked at it at all since then be all like...
-
What the sh*t is this kind of response?! One of my corporate department's internal API returns THIS.
LOOK AT IT. LOOK. "NULL". What are those malformed closing / ending brackets?!
(request headers have accept: application/json btw)
And, as a final "f*uck you", the "IPG_API_JOBD_NC_RESP_P_COLL" is returned as JSON object if response has one element to return, but will be JSON ARRAY if result has more than one element.
Good luck, you there with strongly typed languages..... Boils my blood 😅4 -
Rant
That moment when you are in public and see someone using a device completely not as it was intended to be used.
Always closing all apps explicitly on your phone will not help battery life. -
!Dev / story
My phone starts dying gently but surely. Since last week I cannot use my jack input anymore, and thus can't listen to music in the car. I also compose music, and was eager to listen to my latest production (for reviewing purposes) in the car. In my frustrated search for a spare device with a jack, I found a pile of blank CDs instead. "Aw yiss, I can haz music in my car" I thought with a huge relieved grin.
I grabbed a CD, looked at my pc, and my grin faded instantly to an "oh" of disappointment: I deliberately did not install a CD drive in my computer.
Not losing hope, I grabbed my Mac and tried inserting my blank disk in the drive. "Clunk, clunk", the cd won't go in. "Ah silly me, I replaced that drive with a SSD". So I went looking for that spare cd drive.
After I found it, its SATA power interface was smaller than regular SATA devices, and any connectors I tried were too big. "Hmpf, ok, I'm desperate, let's remove that SSD in my Mac". So I went grabbing some screwdrivers, removed the cover lid underneath the computer, and removed two screws from the SSD casing, allowing me to lift the unit up, disconnect the cable, plug in the cd drive, flip the Mac carefully, turn it on... And burn my CDs, and finally I resetted everything back to normal, carefully removing the cd drive and closing the computer.
What one doesn't do in frustration...2 -
step 1) open and browse producthunt for new dev tools to use and try out
.
step 2) opens dev tool/app's website *ooh nice landing page*
.
step 3) tries to find api and documentation, scrolls to bottom of the webpage
.
step 4) "we are still in private beta, sign up to be notified about the final release!"
.
step 5) lol *sighs* bookmarks tab before closing it
.
step 6) repeat step 1
.
. -
Fuck microsoft and fuck everyone who buys out services just to create a monopoly:
"We don’t have a date for closing Wunderlist’s service yet, so you can continue to use it for now, even though we recommend everyone to also check out Microsoft To-Do." – Marcel, 9/11/201711 -
I don’t remember the first experience as I was a very small child, but I remember a very defining one: picture a 4yo just casually turning on the computer and playing a game.
My mother and sister find me out and panic because “oh no, turning it off it’s hard how will we do? Your father is working and can’t turn it off!”
Now picture the 4 yo saying “it’s easy, you just do this”, followed by him closing the game, launching the bash command to close the computer and going away.
I must have been so creepy in their eyes 😂2 -
Starting. Seriously I'm closing that gap on turning 30 and I'm tired of being a wage slave so I'm teaching myself by using resources I've found online but the immense amount of knowledge I need seems unsurmountable.
I'm coming home from work and learning for at least two hours before going to bed and going back to work but it seems so far until I get to be creating stuff instead of just trying to absorb as much of the basics as fast as possible.5 -
Features suggestions:
1. When we type @ in the comment section it'll be nice to have autosuggest of users as we type. This will help not closing the comment and checking the spelling again and again.
2. Search available on basis of tags. Type in a tag you want to search about and get all rants/questions with that tag.14 -
60 min before closing on the day all but two employees are on company outing: most profitable client website flatlines.
15 min after closing on the day all but two employees are on company outing: most profitable client website flatlines.
30 min after closing on the day all but two employees are on company outing: Windows Updates.
Well fuck you too, world.1 -
still unemployed,
closing peanut freelance contracts here and there,
totally burnt out.
God save my soul.2 -
accidentally quit chrome instead of closing one tab because of the shortcut is very close (cmd+Q and cmd+W)
found cmd+shift+T shortcut to restore tabs
feels saved
chrome restore all tabs
chrome stopped working
chrome quits unexpectedly3 -
My freind knows I do programing as a hobby - I do want a job but I am only 15 - so whenever he can he will leave a bracket open in a text message because he knows that I will respond instantly closing it. I can't stand looking at the eyesore!5
-
Thank you osx for deciding to restart, without any fucking warning whatsoever, while I was in the middle of fucking coding. I had a bunch of tabs open, terminal windows, spotify, vs code, etc. I was in a flow. Suddenly all my open programs start closing and I'm thinking "what the fuck, is my laptop crashing???" Nope. I remembered hitting "try again in an hour" on that fucking notification about installing updates or what-not, but in the past that has always meant I'm just reminded again and asked if I want to restart. Not this time... fucking idiot devs at Apple that allowed this shit... fuck you.36
-
Dear laptop vendors, stop wasting so much precious device estate on nothing!
This wasted physical space could easily fit in six USB ports, or four USB ports and two HDMI ports, or four USB ports and one HDMI and one LAN. Or four USB ports and two SD card slots.
> "Who the heck needs 6 USB ports?"
You don't need more USB ports… until the day you do need them comes.
> "HDMI and LAN are feature creep!"
It's "feature creep", until you need it.
> "Ever heard of USB hubs?"
While better than nothing, they are tedious to carry around and can hardly support more than one external high-power device such as an external hard drive or blu-ray drive, except if you have an external power adapter, which is even more tedious to carry.
Also, have fun closing programs until the operating system stops whining "volume is busy" just so you can unmount your external SSD and then reconnect it through a USB hub. Sounds like fun, huh?
You were playing audio from your external SSD? Too bad. Now you need to close the media player to be able to unmount the SSD, then later restart it and seek the last position. And all of that could be avoided if your laptop happened to have one more USB port.10 -
Some hacker went through a lot of trouble to get around a minimum order amount on our site. And they’re still hitting us after Cloudflare issued a bunch of blocks. Well, there are some back doors I have to finish closing. I guess I’m lucky I’m just inheriting this site and I’m not the one who built it. But I’m still unlucky because I have to fix this mess. But damn hacker, why’d you go though all this trouble to get around existing validation. Go find another site to charge $1 amounts and test your stolen credit card info. Pretty please 🥺
-
Just drove home after working late at the office. Was kind of in the zone and didn't wanna stop.
On my way I see the police closing the road in front of me, because of a pretty bad accident that happened a couple minutes ago.
MFW Coding saved my life! -
Got a new job a couple days ago, cleaning cars at a dealership. One of my friends works there doing the same and he told me I should apply.
The hourly rate isn't much more than I was making at McDonald's, but I have very consistent hours now. I'm only scheduled for 35 hours a week, but normally we don't get out on time. On Friday we didn't get out until an hour after I was scheduled to leave, so chances are I'll get overtime here.
Basically all I wanted in a job was to have consistent hours. Come in at 2, leave at 8, rinse and repeat. McDonald's was basically, come in at 4, leave at 10, maybe stay until 11. Next day you're coming in at 7 and closing, next day you normally work but now you don't. Just very inconsistent, and basically no chance at full time unless you're a manager's favorite.
I like the new job, I get to drive nice cars and clean them, and that's basically it. I got to drive a car that's the same model as my mom's car, but 7 years newer (she has a 2011, the one I drove was a 2018). Even got to drive the exact model of the car that hit me a few months ago (same year too).
I've never been a huge car guy, but I really like it there. There's just something very satisfying about driving a brand new car. Also, at McDonald's I wasn't allowed to have a beard. At the new job they don't give a shit, as long as I work.3 -
Today I am proud,
because I kept going.
I didn’t give up,
because I needed to reach it.
My finger moved fast,
tapped so fast and I felt it closing in.
So close… oh so close.
It was getting hot.
My vision started to blur,
and yet I could not stop.
I hit the key one more time,
and found my bloody command.5 -
Because I finally got tired of closing all the Notepads I open.
https://github.com/allanx2000/...
Sorry though, it's in NET.
Basically 1-click Save and Create (CTRL+S, N). Dumps it all into a JSON file.11 -
Personal update:
So i have been to psychiatrist few days ago. I got a prescription for anti depression drugs and today is the 4th day of my therapy. I feel a bit better. At least i can sleep can focus on things. Unfourtanetly mentaly i dont feel better. That rant that i wrote before didnt help me neither (i deleted it). That drug that im taking has a shit ton of possible side effects uncluding anger. My massive untrust to people dosent help neither.
To anybody who didnt read the previous rant. I have meet a classmate that had a idea for a android app. I have fought he is one of that bad, stupid kind. I was wrong i said bad things to him but eventualy i helped him by showing where he can get help with the app.
I shouldnt have responded to him in the first place. Now i feel bad. I have no idea how you are going to respond im scared. I prejudged him but im now sorry. I have no idea how my life is going to go.
I also have tried applying for a awesome C# internship, perfect for a student: paid and might get experience in C#. I have send them 2 emails on the address that they gave me during open days (where i had talked with HR and devs personaly about their job) and i got no responce since last month...
Finals for the first semester are closing in as well. I dont know if im going to pass or not. And that is the worst thing i have to worry about now.3 -
Et tu Chrome?
Closing a tab should kill it.
I writes code, my code somehow causes an endless loop, tab gets at 25% i7 CPU.
I tells Chrome: "end it", Chrome won't close.
I wants to see under the hood to diagnose, Chrome unresponsive, forget about DevTools.
I Ctrl + Alt + Dels it
Sad Windows user4 -
Connected a keyboard to a classmates computer without him knowing. Started typing random words and closing applications as he worked
-
WOW! Firefox you are worse than Chrome! From 10GB used memory down to 3GB when you are closed :|
(had a VM taking some of the memory, closing it made memory go down to 10GB from 14GB used)8 -
Oh boy... Oh boy... Deadline closing in and still no pushes by my boss...
https://devrant.com/rants/1552545/...1 -
Finally making it.
I'm now closing down my company due to way too high costs and way too much work to try to stand those costs.
Good things will happen, now it's time to simply pay for the debts I now have just because I tried to dream too big without having enough financial support to sustain those dreams.
Hopefully I'll pay my debts in less than a year.
I really wish to go back in time, do stuff differently or even just don't do anything at all.
What a fucking year, I didn't even feel covid, lockdowns and such as I was too busy working at home.
Completely destroyed various relations in order to try to keep things up, now I just can't stand this stuff anymore.1 -
New normal. New app to build.
- Still have to maintain older systems in parallel
- That leaves 1 week for developing the new app
- Slept 2 hours a day, coding coding coding
- Tested the shit out of the app because.. hey, its to help the customers' safety and health... I don't mind staying up late
- Finished the app in 5 days, code is now on prod
- Could barely look myself at the mirror because I look like shit
- Btw the app requires an external device as an input, the existing device works flawlessly based on my testing
- We need more devices
- Clueless manager bought new model instead. He assumed everything is fine, no testing is required
- Tested the app with new device model, doesn't work
- Deadline closing in
- Thanks, there goes my sleep
- THANK YOU1 -
Asus does not know how to implement a button that is also a fingerprint scanner,my phone keeps closing all apps cuz my fingers are sweaty(the button isnt actually clickable it just senses...My sweat smh)4
-
Well, shit is kinda hitting the fan literally.
Two of my four clients are closing down, and it all happened in a month.
Not really fearing for job security, but now I've scheduled an interview with nVidia that I dismissed two years ago. Let's see how it goes.5 -
I like how software is smart so I have to do things twice instead of once.
Automatically putting quotes works only if you put quotes and then paste inside it, the problem is I usually paste then put first quote and then need to remove second quote and put it on back and remove second quote from back.
Video start from where you left automatically fires and shows closing credits because you obviously want to see them.
Evaluate variable removes old evaluation because why you want old one when you have new.
Collapsing imports or functions in ide so you need to expand them all the time because who needs to look at functions when we have ai
AI models suggesting and adding meaningless annotations and code suggestions to distract me.
Randomly running some console command because I entered keyboard shortcut I don’t know even exists.
Literally every web browser address bar becomes advertising network instead of showing me history results.
Shadowing browsing history when you click back and forward button.
Search results are now buy results.
Suggesting me useless crap to watch because I watched one video in that topic.
Showing me 10 minutes videos as a solution to my problem where I want to find exact line of text to copy paste it. If I’m lucky I need to write text from video into my computer.
Stack overflow infinite loop of answered in #some-different-question
I think it’s about time for me to slowly retire from programming and software as a whole or switch to notepad because I don’t want to use this crap anymore.
Looks like software is now meant for entertainment and distraction instead of doing actual work where you need precise data and information.
Luckily if everything goes good I can retire soon and throw everything away for a while.3 -
I don't see how people like to work from home. Was forced to do that due to a public transport strike. There something about going somewhere with a purpose. The 4 walls are closing in8
-
I'm not going to lie, the surge of bootcamps really irks me. Not because I'm afraid of competition, or that I'm an elitest. Mainly because a lot of people who attend these bootcamps have no real interest in software engineering. I sometimes attend a meetup, and it's a beginner meetup. I try to help out. And a lot of people clearly have no patience for learning software engineering. I try to be encouraging, but sometimes I just want to be dick and tell them "Why the hell do you want to be a dev, if you're not interested in how computers work".
I'm an 100% myself taught developer. Granted I'm 38 and taught myself programming at 14. But it came out of an earnest desire and love for technology in general. So I never shyed away from learning? C and assembler? Bring it on. Theoretical computer science? I can get with that. For me I loved computer so much, that I was willing to learn about anything in the realm of computing.
This is what annoys me with the adult bootcamp crowd. I feel they're only willing to learn as long as it's easy. If something gets complicated or complex, then they check out. And I a lot of their questions is "tell me how to do this/that". But they don't know why they would do it.
To me it feels like they're trying to fast track themselves to a dev job. Yet you would think if they're trying to do this all professionally, they would be open to learning as much as possible, and not closing themselves off.
My semi-friend who runs the meetup is trying to start a bootcamp himself. So I try I severely hold my tongue when I attend those meetups. And I want to be supportive. I certainly don't want to be the reason why people are turned off by programming. But at the same time, I hate how people are abusing this profession because they think it's fast money and an easy way to earn 6 figure salaries.3 -
devRant Avatar builder should have T-shirts with curly brackets { } to compliment the ones with self-closing markup tag </>4
-
Back in the old days, ie. before facebook, I used to save all my funny email attachments to a folder. I got talking to one of the support guys. Seemed a nice fella. So, I network shared my folder and told him to how to connect. I did suggest that he probably shouldn't share it with everyone else in support as some of the material was a tad risqué.
I realised he hadn't taken notice of this advice when I walked in the office and all the support PC CD drives were randomly opening and closing and the PCs playing farting noises. (Anyone remember that?)
I had to go round all the PCs and kill the process.
I then returned to my own machine and disconnected the shared drive. -
Have you ever had an error or something and start researching for hours and end up with about +infinite tabs opened and suddenly get this kind of raging rampage of closing tabs and yelling to them like a psycho? Like "get the $@&! Out of my sight you $@&!ing useless post that didn't solve my problem!"
Should I go to therapy?4 -
Last day of our current Indian offshore dev. Talked with her about an issue we had, being aware that it was about her closing time.
She actually offered to put in additional time. Asked her not to do that, I'd figure things out with her successor, and asked her to enjoy her well-deserved long Indian weekend.
Me to my PM: we're chaotic, but we aren't assholes. He smiled. :)8 -
Added an If/Else to the start of my Android app to ask for feedback. After writing the else I removed unneeded spacing. Then I ran the app... none of the action listeners worked. Turns out I accidentally deleted the closing bracket for else and when I said yes to feedback it never executes the reset of onCreate lol. Took a while to track down that mistake.
-
I’m really bad at closing my tabs. I’ll often have 40+ tabs open when tackling some sort of problem or when doing research. Sometimes I’ll crack open another browser instance to research something unrelated. I use a tab session saver to save all of my instances before a reset. But the funny part is, I almost never go back into my stored sessions. I’ll just open up a fresh browser after restarting and the cycle begins anew.
I need help.10 -
Last. Fucking. Exam. Coming. Up. Soon.
Just... I'm a bundle of confused emotions, knowing that I'll probably never sit in another mentally draining exam. Unless I'll have to sit for exams during phd, if I ever manage to do one.
I'll miss the adrenaline rush and the feeling of relief after the exam, despite however much I fucked it up. I feel like I'm completely closing one big chapter and stepping into my middle ages. 😞4 -
I'm trying to upgrade my account passwords etc. keepass (password manager) doesn't generate resizable windows, so when I want to generate a new password or do anything that creates a new window, THE NEW WINDOW IS TOO TALL FOR ME TO SEE WHAT'S AT THE BOTTOM AND THERE'S NOT EVEN THE OPTION TO SCROLL OR ZOOM OUT. YOU'RE OPEN SOURCE AND GIVING ME THIS BULLSHIT? If you were a living creature you'd be a giraffe with short stubby legs. Your missing features mean you don't get the best leaves and leave you dining with the rest of the peasants. At least I can interact with what I CAN see and closing the window prompts me to save changes, and passwords are generated by the rules I can actually see to manipulate.
Maybe I should look into the source or look at others' screenshots to see what I can't and tab into it to make blind changes, but I'm sufficiently happy with the passwords it gives already. I'm just pissed something so well rated has a flaw like that. Like a game where some levels are locked and you can't unlock them through play -_-2 -
So ... All my favorite shops are either closed or closing down soon...
Thank you online shops I guess5 -
KODESKOLE = CODESCHOOL
And they use a fucking closing dash in the beginning of the "tag"... like what the shit4 -
Why Windows considers 9GB of my 16GB being used as warranting the automatic closing of my programs is beyond me.1
-
I already wrote this story in the comments to some other rant, still it's pretty funny.
So, i was modding my wii u by messing with system files, the only way to do this is to run an homebrew that hosts an ftp server so you can connect with your pc, the thing is, this server was not protected and allowed anonymous login, not an issue if you have a firewall.
BUT i had this console in the DMZ on the router for online play.
~You can see where this is going~
While doing stuff from my pc i started seeing a lot of entries on the console's log and i didn't understand why, i thought filezilla was doing some shit so i closed it but the log was still going, then i realized and quickly shut the server down.
Then i disabled the DMZ and went back to check what happened (unfortunately the log was only shown on screen and not saved, by closing the server i lost it) so looks like the attacker uploaded a lot of files with random names in pretty much every folder.
Due to the random names, I don't know which are system files and which attacker's files so i just kept them there. And today they should still be there.
--Random thinking--
What if the attacker also stole some files, he was hoping to get photos or valuable documents, but just got the console's system files and he thought something along the lines of "wtf is even this".
Also, how likely is that an ip scanner script gets to my ip in the 5 minutes i run the server, and (on the attacker side) how likely is to hack a server just to find out that's a wii u (the least successful console in the last generation)...
Moral of the story: double check your firewall if you are going to run an unprotected server.
That's it, stay safe :P2 -
My boss just adds issues on issues. I love closing them at midnight and he adds the same issues again on the next day. I think he has issues.2
-
!rant
Oh that wonderful feeling of finishing a month long project. Updating all the comments, refactoring things, testing everything out, closing the 50 chrome tabs you have open...
Life is good -
I have been given the displeasure of updating a company's WordPress website which was built and (sort of) maintained by another company which ended up closing down. NOTHING WAS DOCUMENTED. Almost no comments added anywhere. Not even a description of the what a particular file does. File names are basically completely random. There are 3 versions of the same theme this company made and no indication of which one is actually being used. On top of this; they used plugins and modified them, so they cant even be updated without them breaking. As well; after looking around it seems they used jQuery mixed with Angular (or maybe the plugin creators did this?). The website isnt mobile friendly either; one of my tasks was to see what I could do with fixing this. Seems basically impossible based on the complete mess of a project this is.
All this being said, I just graduated from Post Secondary and have almost no experience working with WordPress, There arent even other developers to help assist me on this project.....
Gonna be quite the experience.1 -
I can’t work with 100s of tabs open. It’s not productive at all.
That relief you get after completing your task and closing 100s of tabs? Yeah.. I am fine with 10 tabs.4 -
Past month I had been working on a JSON hierarchy construction from flat rows returned by query where some bugfuck had introduced pagination for some damn reason, I never gave a flying duck to this till I get a email from one of the clients who supposedly made a complete hierarchy and my endpoint wasn't returning some hierarchy after some levels.
Frustrated that my service layer there is a bug, I debug to realise only certain rows are getting sent back from the query and ebullient from this fact , I put the bug on the DB person and walk off for a smoke.
After a smooth drag , I realise while closing the email on my phone that this client had entered 10 on pagesize which would indeed just return 10 rows. *Facepalm* I didn't even need to debug all this and now I had to a face a db person I just plastered a bug on. BAHHUMBUG2 -
Ok so riddle me this. The service for an application were required to run to send clients insurance through (as per government regulations) was working fine all day working super fast. Rare but awesome. I get a call one hour prior to the office closing (I don't work weekdays) and I am told that all of a sudden insurance isn't sending.
My mind goes right to this fu**ing process. Sure enough it's stopped on the server. Well shit ok. I click start..... Nothing. I kill it from task manager.... Nothing. "SERVICE CAN'T START"
I'm like ok that's fine let's check event logs.... Nothing. No problem let's just run it not in a service container and see if there's an error. NOPE IT DOESNT LET ME.
Okok so that's cool let's just try reinstalling the app. NOPE CAN'T DO THAT WITHOUT RESTARTING THE WHOLE FUCKING SERVER WHICH BRINGS THE ENTIRE OFFICES MANAGEMENT SYSTEM OFFLINE BECAUSE THIS FUCKING APP NEEDS TO BE ON THE SAME GODDAMN SERVER.rant sysadmin medical why me fuck microsoft windows fuck microsoft server why windows server service2 -
Sent email for additional info regarding issue...
No reply
Sent email to follow-up...
No reply
Sent email to follow-up...
No reply
Sent last email to follow-up before closing issue...
Replies with same description of the issue. -
Banging my head on my desk because I couldn't figure out why my website was bugging out in mobile mode.....
Come to find out I forgot a closing " ...there's a hour of my life I'll never get back lol
Special thanks to HTML validators lol1 -
Revenge of the developer.
After our project consultants aren't good at planning projects I started my revenge. They will get soon a heart attack or paranoia...
Every time I need something from them (cause they missed it in the specs) and see them at the end of the floor. I stealth in their room and stand behind their door. When they are sitting, the door is closing mystically and I step to them. The faces are hilarious. That's my way to teach them to write better Specs :) -
So there seems to be a lot of discussion lately about the closing of background apps on Android. Now, I expect a decent amount of disapproval from this, but I happen to be one of those people BECAUSE I've experienced that it drains my battery more to have them running.
Since I genuinely trust y'all quite a lot compared to how much one should trust the internet in general, I'd like some more proper and reliable info (or as reliable as it can get) on this. If I'm indeed wrong I want you to convince me.9 -
This was shit funny.
One morning, one of my colleagues got a direct call from project architect that he has to setup a meeting to explain in depth the project he has been taking care of for months and prepare a presentation and send an invite. Two weeks later we are all invited to this meeting. This colleague acting as host of this meeting prepared for few days on the PowerPoint and also a well crafted demo. Then as the architect joins, this colleague starts speaking about his role and the project. Within a minute, the architect interrupts him and says 'shut the fuck up, I don't think you are ready yet for this meeting maybe we need someone more learned...so hmm....let me explain it'. And this architect then uses his PPT for sometime and then pulls up a whiteboard and draws birds and spiders telling every time to see system in it.
My colleague is screwed to shit and is incapable to speak when closing the call.
Later ahead 4 weeks, his PPT is retouched and recoloured and attached to a Wiki page created by a unknown fucker who happens to have direct mobile calls with this architect.
Who's is faulty or not or what happened it still shocks most when this architect joins the scrum call daily. Fuck him.1 -
Samsung introduced a useful feature to their smartphones just to cripple it one year later.
In 2015, Samsung introduced camera quick launch to their Galaxy S6, where the camera could be accessed by double-pressing the home button. Before that, the double press accessed the far less useful S Voice.
A year later, with their Android 6.0 update and the phones that had Android 6.0 pre-installed (starting with the Galaxy S7), they ruined it with a useless "Camera has been opened via quick launch" pop-up that would appear if the camera app detects that the phone is in the pocket. This was detected using the front and rear proximity sensors.
If this useless pop-up was closed with the "back" key or by tapping the background behind the pop-up or by doing nothing for five seconds, the camera application would close itself. It would only stay open if the user tapped the tiny little "OK" button that could easily be missed in a crucial moment.
This made it impossible to blindly launch the camera while the phone is still inside the pocket, defeating one of the greatest benefits of the feature. And closing that pop-up takes time that could lead to a moment being missed by the camera.
Additionally, Samsung introduced a bug in Android 6.0 where launching the camera within seconds of going into stand-by mode would cause it to exit automatically after a few seconds.
Screenshot credits: https://forums.androidcentral.com/t...4 -
I spent a whole day trying to debug why the backend would stop sending data after a while (-> it filled up its connection pool)
but after I turned pooling off, there were a number of dangling Client-Idle-Read DB connections
//not using Entity Framework in these N services, it's pure SQL and DB-AccessLayer here
Never happened before, looked up conf, looked up SO
Changed connectionClose to mandatory Dispose
Still didnt work.
long story short. Turns out in 1 of the services, the DataReader to POCO static method, was disposing/closing the READER and not the CONNECTION.
I sent it as tuple instead of 2 separate variables (reader, connection), and the Item1, Item2 got mixed up (:
Totally my fault, and imma avoid name-less tuples from now on like they a plague -.- thats my 2024-resolution6 -
Good old dear me sitting comfortably and writing some code...
Suddenly, the doorbell rings!!!
"One moment! Coming!", I shout...
I proceed going to the hall, take the keys from the table right next to me and I unlock the door...
I open it and there's only thin air in front me. Downstairs I hear the building door closing and the elevator working its way up, higher than my floor...
I close the door and I go back to my desk, resuming my work and thinking:
"I don't know who are, I don't care who you are, but I will find you and I will make you pay..."
Now my coding train of thought has stopped! Thanks, unknown doorbell ringer!!! -
Does anyone else feel bored of sleeping ?
Purposely closing my eyes and dozing off to sleep is something I cannot do... It's just boring.
I tire myself out until my weakness kicks in to give me a couple hours of sleep. This has been affecting my health, concentration and ultimately work and I don't know how to tackle this problem.
Trying to sleep is easier said than done, staring into a blank empty space is a huge anxiety trigger for me on top of being a less exciting thing to do.23 -
I actually can't really program but I did my first copy and paste program cause I wanted to annoy a friend by opening and closing his cd drive non stop... Well most people don't know what cd drives are these days anyways... Imagine it like your pc constantly unmounting the USB thumbdrive or external HDD.1
-
People responsible for closing threads on stackoverflow for "We don’t allow questions seeking recommendations for software libraries" should die and rot in hell forever.7
-
That moment when you finally decide to close devRant ... but before the closing-animation even fully stopped some kind of reflex moves your finger and opens devRant again.
-
SQL Server Management Studio: I noticed you forcefully closed the application. Do you want to recover the queries you were working on before you closed?
Me: No
SSMS: Well here you go anyway
Me: *spends 5 minutes recovering and closing files*2 -
for one split second I thought I had discovered a way to manage multiple states with one reducer function in react,
turns out it was a bug in my code,
I had already gone to brag about it on my react group chat, until I went back to my code and as I was cleaning up and closing brackets and all that stuff, my new feature stopped working.
I need to find that bug3 -
With crunch time closing in, everybody but me seems to call in sick.
Nice move, colleagues, nice move.2 -
What would be your answer to this question? My answer was closing the tab and promising myself to never apply there again.4
-
I got accepted into the University of Washington BS Computer Science & Software Engineering program today! It's been a long road since starting ITT Tech 3 years agofor a BAS in SDEV, it closing on me, starting all the way over at community college, maintaining a 4.0, and now a bootcamper at Coding Dojo. Now only at least 2 more years to go! 😁🙃🙃🙃🙃🙃😩1
-
opening (and closing) 400 tabs/hour with Google Chrome means Chrome will now memflood all my 32GB of RAM in less than an hour now! ... someone call Guinness World Records3
-
The problem: callback hell. Code would be indented by three hundred fucking spaces just to do some async work. Your code would end with thirty lines of closing curly brackets
Solution: async and await.
The problem, reborn: NoSQL. Code is indented by three hundred fucking spaces just to run a query. Your query ends with thirty lines of closing curly brackets.4 -
during 9-5 work every day between 12-5 pm im feeling so fucking sleepy that my eyes start closing by their own. orgsnism shuts down. why. help me8
-
I've built up such a reflex to closing ads that when something actually important or useful pops up I immediately close it and am left wondering what I missed...
-
The only way to fix some error in the code after two hours of headache is by closing the console window.
Yaaayyy. The error is gone. XD4 -
Amazing project I love working for and we're are the cusp of pushing out a big new update.
Suddenly Safari starts closing our SignalR web sockets the moment the page loads, and only Safari does it.
And our client has a hard on for Apple.
So it's considered a blocking change, even though Safari is only used by the client and none of our end users.1 -
When your shop is closing and you are the only IT staff member (sort of) left who is supposed to take care of a proper shutdown.1
-
I think it related to the app crashes, but now, instead of crashing, the app thinks it has no internet and loads forever things. Usually happens when I put the app in the background and don’t force close it.
Closing the app multiple times and switching to other apps fixes it, most of the time, not always.
But it still crashes. Less... but it still does, no specific patterns to see.
iPhone 6S2 -
Is there more useless and stupid feature in a laptop than a touch screen ?
I have one in my work machine and only time I "use" it is when I accidently click some shit while closing the lid.
Pain in the ass.
To think that some people actually are paying extra $ for it.5 -
I was wondering.... why are rants public?
Shouldn't be better for DevRant's feed to be visible only to logged members?4 -
I’m a full-stack Dev, but my job description restricts me to backend - app logic and databases - but the frontend Dev makes crappy markup templates and I have to keep closing unclosed tags and replacing ID css selectors with classes.7
-
Dear god, tried to explain to my mum how to use a computer. Wait for spring creators update...😓
Everything went ... decent: learn opening different windows, closing them again, explaining functionality, which areas/buttons/etc.. are interactive ... and then comes the browser with its tabs😓
the only program which can open multiple "instances" of itself ... in itself. How to explain that? (i know that's probably not correct but that's the only way i can explain it) Needless to say she hasn't figured out how to use broswer tabs and what they are there for.
An now "Sets" come to windows. Oh boy how to teach that...?😥
... I'll probably just never show her just to keep safe😅8 -
Multi-mini-rant time!
1. The Case of the Craptop
Someone wants me to fix their permadead battery, cut-up charger, and what amounts to a laptop held together with GUM... all with software. The charger is like 6 bends from snapping entirely, and requires fucking with. Hard drive is on last legs. Battery's like $50 on its own.
Fuck me...
2. The Fuckery Continues...
Wednesday, it's gonna be -30°F or worse with wind chill. School isn't closing. Normal temps are like 40°F rn, so it's not like it's usual weather or anything.
Fuck me. Again. -
Ok, so: I have a macbook for work. And for the most part, I love it. Its a good looking device that has a fast cpu, enough ram to run stuff locally for testing, even multiple services / environments at the same time without getting overly sluggish.
And, the best thing: It isn't Windows. I have a good, working shell (zsh), so I can use all the command line tooling I could wish for, I have a somewhat working package manager and everything.
But there are just some little things I really can't wrap my head around. And since everything is so locked in by Apple, there are no sensible ways to fix those things without having a bunch of extra programs / services running all the time, introducing overhead, configuration for things I neither want nor need, and so on.
First of all, why the hell did you think the normal way of typing "@" on a german iso keyboard is the key combination for closing the currently focused application? I am a daily user of macos for over 2 years now, and I still keep quitting applications regularly, almost every day.
Or, scroll direction: I use a mouse (g pro wireless) and not just the touchpad, but when I am in a meeting or something (or when I take my macbook with me to configure a switch that isn't accessible over the network), I don't want to take the mouse with me, the touchpad is pretty good, it is big, precise and everything. But for some dumb reason, they decided to reverse the scroll direction for the mouse by default, so if you change that to use the mouse like a normal person, it also changes the scroll direction for the touchpad. And, the worst part is: there doesn't seem to be ANY easy way to separate those two settings, or to automatically set the scroll direction when a mouse is connected.
So every time I use my laptop somewhere else, wich also happens regularly, the scroll directions is wrong, which means I have to go into the settings, change it, then change it back when I am at my desk again.
It just doesn't make any sense, stop trying to "know what our customers want", and please, dear Mr. Tim Apple, give your customers the freedom to know for themselves what they want.
Thanks for listening to my TED Talk.8 -
We have 4k Monitors and SSDs with more than 120 GB, why there are still new projects that use a formatting style that doesn't have a clear relation of the opening { and corresponding closing }. i.e. put them either on the same line or column?
Please don't write code where the imaginary line between the { and } goes diagonally over other parts of the code. It makes it unreadable and my brain hurts from looking at it. Its better to have readable code and "waste" some lines and bytes for code that is easier to read.10 -
Deploy Updates in the production Server, when:
- it's Friday
- after lunch
- 2 hours before closing time
- the next 5 days are Holidays -
This is why I don't use and will probably never use Python.
Back in the uni days, I had a very important assignment. It determined whether I was going to the fourth grade from the third or not. It involved math and charting. It was very complex, and I spent a very long time on research, naturally. I knew Python 3, and I decided to use it. The only lib I needed was matplotlib, which I installed with pip. So I did the whole thing, tested it again at home, closed my laptop and was ready to go. My laptop used Windows 7 and was set up to ignore the lid closing. When I closed it, nothing would happen, even the screen stayed on. When I arrived at the lab, I opened my laptop, hit Ctrl + B as usual… and matplotlib import wasn't working. I obviously panicked, I tried to do something about it, but it just kept throwing an import error. Reinstalling the library didn't help. My friends too weren't able to help me. It just wasn't working, and that was it.
I failed the assignment, automatically. I had nothing to show. This was the first time I failed anything in the uni. Later I rewrote the code in C++ with Qt plotting library, and everything worked fine.
I never used Python since. I did everything uni with C++, and later with JavaScript. I don't care if it was Windows error or Python's. My Windows install was clean, I reinstalled it pretty much every year and kept the default settings. My laptop was for studying purposes only, and all my personal life happened on my desktop.
I didn't use exotic things like PyPy. It was just Python 3, the most basic, official installation. If you promote your fucking language as a cross-platform solution, please be bothered to make its basic behaviour stable on the most popular OS out there.
I will probably never use Python again. Maybe this issue was addressed and fixed. Maybe it wasn't. Maybe it never would've happened on Linux or Mac. I don't care. It's like maintaining friendship with a person that betrayed you. I just can't do it.
JS and NPM never failed me.6 -
This morning, I decided I'm gonna do some Android development. I opened Android Studio (closing 2 Firefox windows to reclaim enough RAM), launched the Android Emulator and then proceeded with my coding.
Since, I've almost finished a prototype app, translated a good 100 strings, had lunch, updated 2 server and THE EMULATOR IS STILL BOOTING!
My Android dev friend tells me this "just happens sometimes". WHAT?!?
I'm genuinely starting to think that good software doesn't exist anymore... -
My first job as a student was at the institute. I was working realy hard. Doing my best. Closing issues lika a boss. All my code was reviewed by senior.
Two other student has this simple program to make (gui for some functions and some graphs). They have no idea how to make it. Their code was worst than spageti and in four mounths then didn't even come close to the end. Noone even looked at theri code.
We were paid the same money!1 -
What big set of fucken steel balls does one need to just clap your notebook without closing your porn?
-
Self rant
Wasted unspecified amount of time because i was using a src attribute in a div. Changed my mind about needing a div for the image, completely forgot to add "img" before expanding the Emmet abbreviation. Didn't realize until i noticed the closing tag on an "image". God, I'm stupid sometimes, but in my defense it is past midnight, I'm hungry but there's no food in here, and this backup PC I'm using while I'm away is jealous of my main machines apparently.1 -
An interviewer recently asked me "how many 'valid' combinations can you do with N parenthesis, either closing or opening?"
It sounds easy enough, yet I didn't manage to find the solution, apparently I was close enough using dynamic programming. Can you solve it ? :)14 -
!rant
Is making a class just for opening and closing a database connection taking Single Responsibility to far?4 -
new manager: draft a runbook consisting of like ~3 lines for marking a jira ticket as duplicate and closing it
.....like.....i can do this because it's what you want and you're my boss but something about this just doesn't sit right with me /shrug3 -
Longest I worked non stop was about 12 hours, I ended up being kicked out of the uni labs as the uni was closing.
Honours dissertation was fun but #NeverAgain :P -
devRant-issue-rant/issue:
So, I will try to use devRant as an issue traker for itself!
Issue:
Sometimes a gif shows on click just a blank black screen and an x for closing on top left corner. And it does not change after some waiting.
The issue stays the same after closing and opening the specific gif again and again. If it is loading for a long time, then a animation indicating that would be nice.
Strangely, other gifs are loaded and shown instantly.
Some specs:
devRant app
OnePlus One
CyanogenOS 13.1.2
I hope it is not too bold to reference you: @dfox4 -
its 3:08 AM here and i think i just had sleep paralysis, few moments ago.
I woke in the afternoon last morning. Soo was not feeling sleepy. Thought of just closing eyes for few minutes before picking a book. That was around 2 AM
Next thing i could remember, All of sudden, I faced a force from back, like holding me from moving. I could not move my hand, face, body or anything. I felt like i was conscious. Then a few seconds later, it was all gone. I couldn't make noise, but tried to make some. Just after few second, felt like i came back to consciousness. I was scared to hell. Didn't even had courage to pick phone lying a feet from me, on bed.
I felt something like this, after more than two years, if i could remember properly. I still don't have courage to turn my back6 -
Im taking an AP class for Java at my school. (AP is like an honors class). But there is an standardized test throughout the US that everyone takes. But it's so annoying because you are not allowed computers on the test so you have to HANDWRITE all of your code. So the way we "practice" for the test is in our class is we use a buggy ass program called greenfoot which is worse than writting in notepad because it crashes every 5 mins but only on Windows computers and since I go to a school and everyone it a retarded they all have Macs so my Windows laptop is a "non issue" like wtf. So now I just use intelij and tell the teacher to fix it but our school has a code where teachers are not allowed to touch laptops so he's just stuck right now.
Forgot to mention that the reason why we use greenfoot is because there is no auto fill features not even closing brackets automatically which "makes us learn better".
Also all of our tests are hand written which is annoying.3 -
Cleaning the white board after a problem is solved is still the 2nd most satisfying thing. Closing chrome tabs is still 1st2
-
There is a pretty popular job search site I have used for quite some time. I wanted to close my account due to spam phone calls and emails. The website has no ui for closing your account. I fly into a fit of rage and change my email address to 20 random characters @gmail.com. Now I still have an account there but can't log in. Still getting the spam.4
-
That moment when: You're asked to quickly code a fake login screen and you have a deadline to add it to 10 devices before 2pm.
First build: Forgot to force it to be on top, forgot to add closing preventions
Second build: Due to it going on tablets, it needed an onscreen keyboard, but being on top all the time means the builtin onscreen keyboard doesn't work.
Third build: Forgot to add try and catch exceptions which caused crashes
Final build: Avast kept closing and opening it due to DeepScan
urgh... -
Thank you KDE for setting alt+F4 by default, my brother did not have tons of fun closing my eidtors and it did not take me 15 Minutes to find the setting (┛◉Д◉)┛┻━┻
Still loving Plasma nonetheless ;-)11 -
Thank god for Git. I fucked up my webpage beyond repair and I am not an expert in html div alignments. I pulled in a commit I did an hour ago and at least got the page back to normal. I don't even want to imagine what devs did before the days of source control. D:
Tomorrow will be spent learning how to better follow closing </div> tags. :(4 -
So, I had to took a 4 hours bus today. I woke up ealry and prepared everything. Left home with time because I didn't wanted to fuck anything up and lose the bus. I went then to the bus station and went to order the ticket, they told me the bus leaved in the other bus station of the city (that is in the other side of the city). I had like 20 mins left. I had to take a train to arrive at the other bus station 5 minutes before the bus leaved. There were 4 people buying tickets. The first one was quick. The second one was that person that is slow as fuck and drops the money, like those old people in tje supermarket. I nearly lost my nerves and asked to those two persons ib front of me like "my bus is leaving in 3 minutes, can I get the ticket first?". Then I bought the ticket and ran to the bus. It was closing the doors. Luckily I could get in. I don't think that I was never close to lose some transport like this.
The good thing is that it has charger and wifi :D
PD: the station is huge, like 50 different buses. I was really lucky to find it at the first try :D2 -
Seriously, I got given a project that someone else was working on, it's beind and they're on long term sick. I did the project as discussed. My manager has decided he wants it done differently, wasting about a week of work. This is the same manager that complained about my rate of closing tickets. 2 weeks ago.
Malicious compliance time, I'm closing the current ticket and creating a new one for the new work. -
I sometimes accidentally press back two times when I close a rant. Can there be something like: "press two times if you wanna close"?2
-
script closing error-opened tickets from a customer using a tool which just repeatedly clicks on the same pixels over and over again... Error chance of around 50% if other windows open or the ticket window is resized a bit. There was a pretty high risk a real ticket a auto-closed with custoner-information by error...
Everything went well. About 1k tickets were closed by the script while I sat there and looked if it really clicks the right spots. -
hey guys i need advise.
I currently got a job that i love with a lot of freedom. but the payment is not good and i am concerned that the company won't be there in the next 5 to 10 years.
I am a 25 years old, self taught programmer and my current employer is the only one I ever worked for. Recently I browsed xing and found a company which searches an employee with exactly my skillset (they need someone for a specific ERP system in which I am damn good at). The company is half an our away - my current job 20 minutes away. Also I think because the person they are looking for is rare because you need technical knowledge of windows and doors and you need to know how to administrate this erp system plus knowing some programming stuff.
There is also a very big company 10 minutes (walking) from home where I could apply. I think at this company i would start lower but could maybe study and working for them with higher expectations in long term (just google Hettich in germany here in the village this is big)
The problem I currently have is the following. If the company I work for is closing in lets say ten years, then I am 35 without a degree. I have a girlfriend - want to marry her and getting a child.
I have holiday now and i will apply for both companies. I feel very uncomfortable doing this because the company I work for is the company of my granddad. I don't have the balls to tell him that even if i get a raise that does not solve the 35 years issue.
Well, first of all I will just apply. Lets see how much value I have.
But I thought that asking you all may give me some other input to take into account. What are your thoughts on this?
PS: just a formal "sorry for my english" and thanks for reading6 -
When user interface elements unsolicitedly change their position, something unexpected might be clicked.
For example, the search engine list at the bottom of the Firefox suggestion box that appears when typing something into the URL bar ("This time, search with:"). When the number of suggestions changes, the height of the box changes, and since the search engine list is at the bottom, its position changes too. This could happen milliseconds before I wanted to click on one, which causes either searching for something I did not look for, or closing the URL bar.
It also causes an uncertainty whether the buttons will remain in place, causing delays until clicking.
The same happens on the image context menu for images on the Kiwi browser. It shows a preview thumbnail on top of the options in the context menu, but since the context menu opens before the thumbnail loads, the appearance of the thumbnail pushes the options down. If this happens few milliseconds before one is going to tap on something, it causes one to tap on the wrong place.2 -
X11 question.
I'm trying to read two properties with XGetWindowProperty.
Opening a connection
Reading
Closing the connection
works, however if I read two
things in one session, it fails.8 -
When it hits you that as a junior your most impacted by this crisis. CEO sends out an email asking for volunteers to go on furlough, next day manager has a meetimg with all the graduates and says we would like you all to take this. Next thing you worry about is whether or not redundancy. Hard to understand they have recently started the program and it will closing soon without any garduates passing it
-
So I work with an old ICT Responsible.
Today he wanted some information about the internet.
He takes the phone and start calling...
I was like what are you doing ? Can't you just send them an e-mail ?
He said "no, calling someone is more time efficient and quicker"
So he is there calling an internet provider after closing time waiting...
Music playing... still waiting...
After 5 minutes the call is ended telling that they are closed...
Next he was "well I will send an email then"
Like wtf. How is that efficient and faster ? You could have send the mail and finish any other task... What is wrong with old people and calling everybody for small stuff.
When you call someone, they have to litterally drop what they are doing and answer the call. Just send emails and let them anwser when they have time dammit !6 -
There's nothing quite like an app force closing for no apparent reason, and no error log info.
Just spent an hour figuring out that one of the device I test on doesn't like linking GLSL shader programs if it contains a loop even know every other devices I've tested on are totally fine with it. 😑 -
lost 100+ tabs by accidently closing all of them in chrome on android. can't restore. the history shows only the last few tabs as I didn't open many of those tabs for weeks. feels so sad. :-(
how can i restore all those tabs? HELP20 -
My apologies, Mistaken WK177 for "Last Successful project"
Now my least Successful project:
It was in the summer of many years ago.
I created a social network site for a camp site where I used to go. People were able to upload their own profile picture and adding some text to their profile page... with google analytics I was able to see what pages were used the most:
the webpage about: the opening and closing hours of facilities
after a year we shut it down because it was not being used.
And of course facebook started getting popular. -
tried to stress-test an authenticated websocket endpoint (that makes 2-3 DB calls) by opening closing randomly and it crashed after 20-30 times within a few seconds
I was focused on the middleware glitching out, but error was in the DB-Postgres coz of multiple-connections
Even if I increase the upper limit of simultaneous open connections, the problem at-scale will still exist
If I tried to use a static forever-open connection, it errors out coz 1-command-at-a-time per connection
so im constrained on both sides -.-
Either I rate-limit the endpoint in general and force-close open connections or I cache Organisation-level info that rarely changes
this is one of the few times I miss MS-SQL, it can take a beating but still serve without much complains or losing data consistency -_-2 -
I worked as an backend dev the last 2 years and was maintaining and connecting external APIs to our system. If one of these did not work properly or their test system went down I needed half a fucking day closing all JIRA issues named "EXTERNAL system not reachable" . Who needs speaking error messages anyways...
-
Very tired of people that turn around to me and say “this is sales, you have to know your audience, it’s not based on truth and logic”... basically an excuse for telling outright lies and expecting me to pick up the pieces when reality bites and the lies come back to haunt them, all for the sake of “closing the deal”8
-
Wtf
A website just prevented me from opening or closing tabs in Chrome by opening a message saying it was unable to connect to the server. I couldn't even see the message as it was displayed on the small screen I didn't look at.
It wouldn't even let me close Chrome!2 -
TIL
Ctrl-w tot clear the console Line
Can you believe is was always using Ctrl-c to empty my terminal Line when mistyping?
And out of sheer coïncidence of closing all my tabs, is accidentally die this in my terminal window, and then in was like 'wait What?'11 -
Reason #69 why I'm considering nuking windows on my main pc.
I had to print something... (I know, why would I want a document to exist in the physical world?)
1. The pc couldn't see the printer, that was connected via USB... Replugging the cable fixed it... How?
2. I had to print images, so I had pre-opened the 9 files. After printing 4 images windows decided to update the imageviewer, closing all the instances and not open them again... Wtf?
So that's how my evening was fucked, how was yours?2 -
Fuck me! Fuck VSCode!
Wasted nearly a whole day of entire team by breaking a core functionalty.
Don't know if others also hate it so much when you want to add a bracket and VSCode detecting a closing bracket or whatever nullifies your attempt leaving the number of brackets constant.
Not exactly sure today's defect was caused by this, but I strongly suspect it because it was caused by just a misplaced bracket.5 -
1. Windows domains as user@domain
2. Starting tape backups at 13:37, realizing they need about 5 hours and all company servers run on ~5% speed for others
3. Repeatedly opening and closing devRant multiple times a minute realizing it has been open currently
4. accidentally executing "apt-get update && apt-get update"
5. Trying every earlier password if the current windows domain password timeouted until I come to an not yet used one. -
Boom, my boss agrees that the work I’ve spent the last 3 months on cross checking spreadsheets, manually inputting 100s of records into the system, then closing them and inputting more records isn’t the best way to do this particular task.
As the process wasn’t designed for this.
So I’m getting to build a new program that will integrate with the existing software, but make the job easier.
It’s not going to be easy, the software only supports web services so no apis, and it is massively lacking in documentation, but hey, I actually get to do some development work.
And there is no deadline, but I’ll probably knock up proper requirement gathering docs etc, so it gets done properly -
I think my mac is possessed,
closing my vagrant server due to low battery when I was doing my final test.
Why Mac why?! 😭 -
How many of you guys have an actual development life cycle at work (documenting every step, officially closing out of design, implementation, testing, etc)?
My place has a pretty stringent cycle. It is usually useful, but can occasionally just feel like paper pushing. It seems, though, that a lot of devs on here just sit down and start typing until someone says stop?4 -
Well, not that much but precautions has been increased which got impact on host connections, I guess : X
Getting error while authentication, host is always closing connection during handshake :) -
My one of my favorite open source project was Re-think DB!
It was highly light weight real-time DB.
One fine day, I read a blog by the CEO / founder, telling we are under loss since there is no financial support! and we are closing it, by just keeping the website and docs of prev version alive!
I was heartbroken , for days!
This takes the top place for favourite oss project
Btw
It has high no. of stars in github than Mongo db, reddis, etc..2 -
What do you do when you're trying to push yourself further by learning new concepts and techniques but start to feel the burnout closing in?
Usually I'm useless for about week if I push myself too hard. Would love to overcome this.
How do you guys handle this?4 -
So I'm currently having a love/hate relationship with Atom... I love that it only has what I want and nothing more, but I hate that it lacks a lot of basic features like automatically adding the closing tags to my html, and the only beautifying package I can find defaults to two spaces instead of my usual 4 and I can't find how to change it.
Does anyone know how to change the spacing on the beautify package? And does anyone know a package that will auto close my html tags?7 -
So close to closing out this ticket only to be told “we have to start again cause of red tape”
Just end me. -
<script type="text/javascript" src="js/somscript.js"></script>
why is the closing script tag a fucking thing ?????
why would you just do /> ?????51 -
Today before leaving, the QA said she found problems in 3 issues I've been working on, until now everything was ok. Tomorrow is the closing of the Sprint but I can't present this progress because it's not completed...
I know the QA is doing her job but why now?
Hopefully I'll fix it tomorrow before the meeting1 -
Fuck fucking Xcode that keeps closing the simulator every time I try to debug my app!!! Xcode developers, please refer here:
https://en.wikipedia.org/wiki/... -
Anyone else ever spent more than a couple hours trying to find the right spot for that missing closing div tag on an html page?3
-
Microsoft seems to be struggling with basic human decency such as linking the original when closing an issue someone spent their time writing as duplicate:
https://github.com/microsoft/...3 -
Excel die you motherfucker die
1) Allow Ctrl + A and other shortcuts in formulas
2) Stop throwing an error requiring closing a window every fucking time I want to cancel writing a formula, and then another window after the first 1 -
Aaaaand all tabs and windows go to bitches again.. sigh.. did closed tabs and windows in feierfox EVER work for anyone? I have noticed restore session works. But after closing gracefully, feiafax just don't bother saving shit. Somehow I have less patience when it comes to browsers. Fuck you feuercocks! Suck my balls you memory hungry, wannabe free hippie hippo. Done, deleted, die!!9
-
Left the office pissed and frustrated by the bug that Stumped me. For some context, I've only ran to stackoverflow 3 times between now and 2022. I was making my way home, feeling crushed and downcast, when it suddenly occurred to me that this might be one of those times to seek refuge and succor on SO
Taking my chances with an answer being ready by the time I get home, I branched into area one shopping complex by 730, whipped out my system and started narrating my ordeal, buyers and merchants wondering whether I was closing a multi billion naira deal that couldn't wait or whether I was plain possessed
About half an hour later, I was done. There was no answer but I was instantly covered with the sense of calmness I imagine Christians have after casting all their burdens on their god. I certainly felt lighter, even though it's likely nobody would ever respond. Cuz I've been returning to answer most of my questions days later when I eventually figure it out
Yet, it's comforting putting something overwhelming out there, hoping it crosses paths with someone smarter or with sharper eyes to spot what I'm doing wrongly5 -
sorry, search engines were not helpful. does anyone know of a lightweight browser that doesn't need installing but stores everything in the os user directory?
i have no it-permissions but want to provide my department with a suitable browser. we have ie and edge, but the latter deletes everything on closing which makes it unusable for my usecase and the it is not willing to set this up different.
ff portable can not be run from a read-only-folder and any other scenario either needs installing on every terminal or does not handle different profiles which is essential. i read that this is the case for any portable browser.
i'd like to set it up properly with neccessary start page, favourites, adblocker and so on but just in one network directory for maintainance reasons.
we run a web based application strictly local but each windows-user-account must have their own setting in this app (cookies or preferably webstorage).
am i asking too much for? -
!rant
Looking for some guidance. I am thinking of doing freelance work on the side, but am a little hesitant when I think about contracts, closing out the projects, and getting paid. I even see it with my company where clients keep asking for little things here and there and it adds up to a lot of extra work and refusal to pay until this out of scope work is done. Do you guys have any tools or other suggestions that can help protect me as the developer in a freelance project?
Also, a good PM tool would be helpful too. I'm used to Trello, but it tends to get cluttered real fast.4 -
I am now replying to fake news spreaders on the internet, pointing out their lies. And I end with the following closing comment:
"You may go now, I am done with you".
>D6 -
installing nircmd and psexec. closing processes, muting the sound and opening/closing the cdrom tray of a colleague can be funny, especially during the night shift.
-
I keep closing browser tabs by mistake whenever I try to expand text selection by clicking CTRL + W
IntelliJ ruined me! -
I want to keep 1 year of daily indexes but for the ones older than 30 days, unloaded from memory. But accessible when needed.
So like say there's a performance issue today and I want to compare all the activity against 2 months ago. I can open the old index and search it.
Can you do that, does closing remove it from memory? Otherwise how would you do that?6 -
#Suphle Rant 4: Laravel closing the gap II
I had expected rant 4 to come at least, some days later. Apparently, I'd miscalculated how fast things work in this wonderful world of software. In an earlier rant, I wrote about how dismayed I was to learn laravel had implemented one suphle feature I'm very proud about. They call it Premonition. Idk if it's officially rolled out yet but you can do a search among accepted pull requests for what it's all about
Well, today, I've just seen a draft from one of their maintainers showing one of the things suphle was designed to do: https://twitter.com/enunomaduro/.... They can't integrate it with this pattern since php doesn't have generics, so it'll either get trashed or with plastered as some band aid. In suphle docs, I explicitly indicated the data structure/typing for that feature is a polyfill for the absence of generics
I think I can get away with it because of where I'm using it (model authorization instead of custom exceptions/throwable operations, in general, like theirs)
I don't feel as distraught as I did on finding the Premonition thingy. Am I impressed with these things dawning on them? Ffs Laravel was invented in 2011. It's incredulous to think it gave me hell for years. Waited ~2 years for me to fix all issues in a brand new framework, only to magically gain iq points and start improving their work
It's weird and brutal. If they keep figuring stuff out, it may not be long before there are no features unique to suphle. Then, my worst nightmares will come to life. I will argue there's one thing nobody will ever copy, not without rethinking the mvc architecture in its entirety.2 -
During the last few hours, at least, 4 coworkers got let go because of financial reasons.
I'm pretty safe, as I'm an apprentice and here (Germany) apprentices can't be fired easily, except after breaking the company-rules/law.
However, I'm afraid the company might be closing down in a few weeks/months.3 -
can you use elastic search as a search engine for your app ?
because i see several weak points in it.
the increased latency after every bulk uploading of docs, meaning u cant ensure fast response time for users
the inability to add synonyms without closing the index ? this is either downtime or ill have to replicate an index to update the original and then switch back to it !!
idk i feel i either must have wrong info or elastic is very inefficient. I might be wrong, not too experienced with it so if I am let me know of some good resources and workarounds that helped you3 -
So, management seem laser focused on hiring folks with work visa. What’s up with that? The latest five new employees. At least two of them utterly useless (have not worked with the others).
These are devs. ”Senior” as stated by closest manager. 😬 Yeah…ok.
It such a worthless leadership. It’s alot about
”We successfully filled the position for a senior developer”
or
”I am happy to announce that the new release manager for system X has been hired”
All about numbers. Closing the deal. Never about quality.
I guess salary is a BIG issue here and that is why we see this. I have no problem with VISA employees. But they seem bad at what-they-are-doing. Just…incompetent. *sigh*2 -
Just got an email that Datree is closing shop. That's too bad, I considered it a mandatory production k8s tool.
I guess I'll have to whip up some Frankenstein replacement with Open Policy Agent... -
ENOSPC = random things go wrong.
There are many synonyms for ENOSPC, like "disk full", "space storage full", "space storage exhausted", "no more space left on device", and those other repulsive errors. For the sake of simplicity, I am going to refer to it as ENOSPC.
If you are in this condition on the operating system partition, get out of it quickly or random things will go wrong. Text editors which write directly to a text file rather than creating a temporary file and then replacing the text file could end up blanking the text file, softwares' configuration files might fail saving which causes a reset, and web browsers might spontaneously reset cookies and lose history.
For example, Firefox has created a gap in the web browsing history, as shown here. The history that is now memory-holed initially appeared to have been recorded successfully. Apparently, a failed write to the places.sqlite database when closing the browser created this gap.4 -
Had to do something with Xcode for a while now. After 2 hours my tolerance for strange errors, which are solved with cleaning build folder or closing/re-opening the IDE, is used up for the next 10 years...
-
Win7 Task manager: 7 slack.exe processes running after shutting down app. Force closes 1 process, revives itself. 16 chrome.exe processes running after closing chrome. 8 node.exe running when no more node apps running.. Jesus christ, clean up after yourself Windows.. No wonder virtual box complained about not enough memory to run Windows 10 image because I have to test my web app on Edge browser..1
-
From the terminal, I can see that the development server is started, then couple of seconds later, there's accepted and closing; as seen attached.10
-
Need advice about protecting ddos via iptables and whitelisting. Currently I launched my gameserver and am fighting against a massive attack of botnets. Problem was solved by closing all ports on my gameserver linux machine and shipping game.exe with injected c++ socket client. So basically only gamers who launch my game exe are being added to firewall iptables via the socket client that is provided in the game exe. If some ddosers still manage to get inside and ddos then my protection is good enough to handle attacks from whitelisted ips from inside. Now I have another problem. Lots of players have problems and for some reason shipped c++ client fails to connect to my socketserver. Currently my solution was to provide support in all contact channels (facebook,skype,email) and add those peoples ips to whitelist manually. My best solution would be to make a button in website which you can click and your ip is whitelisted auromatically. However if it will be so easy then botnets can whitelist themselves as well. Can you advice me how I could handle whitelisting my players through web or some other exe in a way that it cant be replicated by botnets?1
-
VSCode. I used to be a WebStorm guy, but at one point I found out that I could do like 85% of the stuff in VSCode, and switched over. Things I still kinda miss from the JetBrains ecosystem:
- the elaborate refactoring
- the built-in navigation across the file and the project
- the really clever expand select and go to open/closing bracket (VSCode is kinda getting there, but for expand select it honours camel case words and that can't be turned off, it's weird with HTML files with inlined JS or CSS; for bracket jumping it must rely on an extension)
- the way that everything within the UI is predictable and navigable with keyboard only (tried opening a dropdown in VSCode without having a specific keybinding for that specific dropdown? In WebStorm it was Alt+Up/Alt+Down for any dropdown that has focus IIRC)
- the visual way of changing a colour theme (in VSCode you have to guess what is what before modifying a value; by the way this is an idea for an extension that I might research)
What I like about VSCode:
- the speed (although it can get slow with large files; on the other hand JetBrains IDEs are not that slow except for the startup, given that you're not working on a potato, but here we are)
- its extensibility and very active extension development (and the fact that it's rather easy to write your own extensions, although I haven't benefited from that very much)
- the ease of syncing settings (the Settings Sync extension and now the built-in mechanism introduced I think earlier this month)
- it's free (so I don't have to pay for it myself or nag to my employer to issue me a license)
I've tried Sublime and it's hands down the fastest thing I've seen (it can open a 100 MB text file on the shittiest computer you can find and edit it efficiently), the problem is that it's not so rich in extensions. I've tried vim, nano and whatnot, but I'm far from that, just not my cup of tea. I'm okay for the occasional file edit while SSHd somewhere, but that's all.
In an ideal world we'd have something like Sublime's performance with VSCode's ecosystem and JetBrains', well, brains...1 -
Editor [neovim](I know, I'm a degenerate) suddenly stopped responding to all mapped keys and after a while of closing and opening it, commenting out plugins,... it started working again. No idea what happened there!4