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 - "it's"
-
"Documentation is like sex; when it's good, it's very, very good, and when it's bad, it's better than nothing." - Dick Brandon4
-
Thanks Windows for deleting my entire fucking Ubuntu partition in your latest update. I didnt really need any of those projects I was working on. It's not like I have deadlines or anything.
PS.
Go fuck yourself24 -
After a long battle with CSS I give up and show the client a preview.
Client: I like how you made this first row a bit wider. Really makes it stand out.
Me: Yeah...right, that was intentional... 😎3 -
Documentation is like sex. When it's good, it's really good. When it's bad, it's better than nothing.5
-
A client called today because their email wasn't arriving at the receipants inbox but bouncing back with a 'poor MTA rating' error.
Checked about every blacklist I know and our server was definitely not blacklisted. Must be the receipants host which for some reason was blacklisting his specific email address.
Told the client that it wasn't a problem on our side and that he had to request a whitelist himself (we'd do it but it wasn't a specific server problem so we're not going to spend time on that).
Fair enough, he'd do that.
Calls back. "Well, the other party says that your server definitely has a poor rating, it's on your side!!"
Alright, this is getting annoying. Gave him a few blacklist checking sites links and told him to run his domain AND our server IP through it. Indeed came back completely clean.
"But the other party said it's poor rating on your side so I'd think tha........"
YEAH WHY DON'T YOU SHOVE THAT OTHER PARTY UP YOUR FUCKING ASS. I'VE SHOWN YOU PROOF THAT IT'S DEFINITELY NOT ON OUR FUCKING SIDE, EXPLAINED IT TO YOU AND SO ON. MAYBE, FOR ONE FUCKING SECOND, TAKE INTO CONSIDERATION THAT THE OTHER PARTY IS FUCKING LYING?!?!?
FUCK OFF.9 -
Documentation is like sex.
When it's good, it's very good.
When it's bad, it's better than nothing.23 -
Around 2009 or earlier, I began the long grueling process of creating my own batch AI (yes batch as in Windows Batch , kill me for not knowing there were better languages around). Looking back at it, it is THE messiest thing I've ever created. Mostly because of how many unnecessary files were created to make the entire thing work. However, I’m still proud of it to this day because of the dedication I had put into creating the entire thing.
I would create diagrams on the mirrors in my room; of course I would be scolded for this. But I was mad with thought working through the entire thing.
I would scribble and type whenever I had the chance, trying to create the functions that would allow the thing to talk back to me. Finally, when it opened its eyes and spoke its first words I quickly started creating the functions that would allow it to learn new inputs. Over time and with some elbow grease I was able to polish it up to my liking.
The entire program branched off some of my more earlier programs in batch, they mostly ranged from the medial to the crazy; i.e. turning my computer on and off at certain times of the day, and multithreaded migration of files to new disks
It's not as sophisticated as other AI that were being built at the time, but at the age of 16 and with no experience in real programming at all, I'd say it was my first stepping stone towards more sophisticated programs, and ultimately, my decision in Computer Programming at all.22 -
How to present your app/library more positively:
It's slow and bulky -> "It's feature-rich"
It hardly does anything -> "It's lightweight"
It has no comments -> "It's self-documenting"2 -
Saw a rant a few days ago about hotel WiFi being shitty.
I'm just here to confirm that rant was accurate.2 -
"GitHub blocked all Iranian accounts without any prior notice and they don’t give us a chance to download a backup of our data. Here is a screenshot from GitHub support response to a developer who sends a request for backup"
https://bit.ly/2Omy63I
shame60 -
Confession of the day:
1. I work in release mode
2. I work on the main branch only
3. I test on production13 -
Well, I did it.
I spent 45 minutes writing my first hacky, shell-and-python automation script to save me 15 seconds every morning.12 -
Dear Android:
I know I'm not on wifi. I get it. Sometimes data coverage isn't amazing or the network is congested. It's cool. You can just flash "no service" and I just won't try. or even "3G" and I'll have some patience. I rember how slow 3G was. It's okay, I'll wait.
But fucking stop showing 4G LTE if you can't make a fucking GET request for a 2kb text file in less than 5 minutes! Fucking really? Don't fucking lie to me with your false hope bullshit, just tell me the truth and I'll probably sigh and say shit and put my phone away.
But fuck you and your progress bar externally stuck in the middle. As if to say you're making progress! Wasting my time!
If you can't download a kilobyte in a 5min period, why even say I have data at all? What good does that do me?23 -
"Isn't that Java?" - bypassing stranger who happens to look over your shoulder when you're coding in public.5
-
Every step of this project has added another six hurdles. I thought it would be easy, and estimated it at two days to give myself a day off. But instead it's ridiculous. I'm also feeling burned out, depressed (work stress, etc.), and exhausted since I'm taking care of a 3 week old. It has not been fun. :<
I've been trying to get the Google Sheets API working (in Ruby). It's for a shared sales/tracking spreadsheet between two companies.
The documentation for it is almost entirely for Python and Java. The Ruby "quickstart" sample code works, but it's only for 3-legged auth (meaning user auth), but I need it for 2-legged auth (server auth with non-expiring credentials). Took awhile to figure out that variant even existed.
After a bit of digging, I discovered I needed to create a service account. This isn't the most straightforward thing, and setting it up honestly reminds me of setting up AWS, just with less risk of suddenly and surprisingly becoming a broke hobo by selecting confusing option #27 instead of #88.
I set up a new google project, tied it to my company's account (I think?), and then set up a service account for it, with probably the right permissions.
After downloading its creds, figuring out how to actually use them took another few hours. Did I mention there's no Ruby documentation for this? There's plenty of Python and Java example code, but since they use very different implementations, it's almost pointless to read them. At best they give me a vague idea of what my next step might be.
I ended up reading through the code of google's auth gem instead because I couldn't find anything useful online. Maybe it's actually there and the past several days have been one of those weeks where nothing ever works? idk :/
But anyway. I read through their code, and while it's actually not awful, it has some odd organization and a few very peculiar param names. Figuring out what data to pass, and how said data gets used requires some file-hopping. e.g. `json_data_io` wants a file handle, not the data itself. This is going to cause me headaches later since the data will be in the database, not the filesystem. I guess I can write a monkeypatch? or fork their gem? :/
But I digress. I finally manged to set everything up, fix the bugs with my code, and I'm ready to see what `service.create_spreadsheet()` returns. (now that it has positively valid and correctly-implemented authentication! Finally! Woo!)
I open the console... set up the auth... and give it a try.
... six seconds pass ...
... another two seconds pass ...
... annnd I get a lovely "unauthorized" response.
asjdlkagjdsk.
> Pic related.rant it was not simple. but i'm already flustered damnit it's probably the permissions documentation what documentation "it'll be simple" he said google sheets google "totally simple!" she agreed it's been days. days!19 -
Our product owner's equivalent of "It's not a bug, it's a feature" seems to be "It's not a new requirement, it's a clarification."
:-/2 -
Quit job: ✔️
Created brand 🎧: ✔️
Registered on popular platforms: ✔️
Publish new content: ▶️
Sometimes it's a great feeling when you changing your self vector and start to spent time on something new that you have wanted to try out or didn't spent enough time before.
Yesterday I were full stack developer, today - independent musician which tries to spread his feelings and vision.15 -
Built my own Amazon Echo with a raspberry pi because they aren't available in my country. Decided to pick up an official Echo Dot while in America but I'm too proud of my little project to tear it down and use the official thing haha9
-
I download a lot of different stuff all the time. Often times I don't actually get around to cleaning it up. Thus, I decided I needed to build a script to further encourage my bad habits.
Here I've built a script for both Windows and Linux. It's designed to take all the files in the current directory and move them into their own folders based on their extensions. Why is this useful?
It's fucking useful when you're not having to swim through fucking mountains of content.
Anyways without any further ado here are the scripts.
Linux
#!/bin/bash
for i in *.*; do
filename=$(basename -- "$i")
extension="${filename##*.}"
extension="$extension"files
mkdir "$extension"
mv "$i" "$extension"
done
Windows
@echo off
for %%i in (*.*) do (
if not exist %%~xifile md %%~xifile
)
for %%i in (*.*) do (
if "%%i" NEQ "movingFiles.bat" move "%%i" "%%~xifile"
)15 -
I hate all of these rants about JavaScript being a terrible language.
In reality, it's one of the easiest languages to work with. This makes it easier for new programmers to write messy code, but is it the language's fault?
People get mad about the things that happen when you multiply "undefined" and a string...what do you expect?
You also have the freedom to choose from a variety of tools the community has created to solve existing problems. People just don't realize that they don't *have* to learn everything, you just learn as you need them.
Don't blame JavaScript for you bad programming, terrible type conversion needs, and great tooling.23 -
After a couple years as a developer I've learned that all those banking sites and cool online stores and apps are held together with old chewed gum, duck tape and that guys who has been in the office 48h straight and whose wife thinks he's dead.2
-
Start a development job.
Boss: "let's start you off with something very easy. There's this third party we need data from. They have an api, just get the data and place it on our messaging bus."
Me: "sure, sounds easy enough"
Third party api turns out to have the most retarded conversation protocol. With us needing a service to receive data on while also having a client to register for the service. With a lot of timed actions like, 'send this message every five minutes' and 'check whether our last message was sent more than 11 minutes ago'.
Due to us needing a service, we also need special permissions through the company firewall. So I have to go around the company to get these permissions, FOR EVERY DATA STREAM WE NEED!
But the worst of it all is... This whole api is SOAP based!!
Also, Hey DevRant!5 -
Documentation is like sex... When it's good, it's very good. When it's bad, it's better than nothing.4
-
Update 2:
Second update, second terrible quality gif!
Keyboard controls working over a web server!
Also there's loads less latency now since I'm using websockets :)11 -
So I started new job, full js dev but new project requires python backend. 0 prior python exp but ready to lean and learn. Got my first assignment. Supportive coworkers made me a death clock counter2
-
Today our manager agreed on buying a second hand server for the development team to play around with and run personal experiments.
We found a dual cpu (6 core 2.8 GHz) system with 24 gigs of ram.
Let the fun begin!5 -
Easy cop out for people who wrote code vulenerable to SQL injection: It's not a bug, it's a feature that let's users search using SQL syntax.1
-
*launch software*
> goes tits up with no info
*restart machine, launch software*
> still goes tits up
*su to the user it runs as and run it manually because fuck you shitstaind*
> still goes tits up
*launch with debug logs enabled*
> suddenly works
What is this black magic?!10 -
Just found this little gem when I ducked RBL.. must be a super high quality bank with that meta description :32
-
Got my first response from a company i applied to a few days ago--it was a no without much explanation as to why, but at least they actually responded.3
-
Comments should describe the why and not the what and always be up to date ... or this will be the result.2
-
Newcomer: I can do fizzbuzz in 6 lines of code
Experienced: I can do fizzbuzz in 3 lines of code
Professional: I can do fizzbuzz in 1 line of code
Enterprise: you did not create the user epic for this problem, I can't accept these solutions until you have done this. Please speak with Mike on getting this properly setup. I expect a full report of this by Monday.
Them: but it's Friday...
Enterprise: Get it done. I am not paying your overtime either
https://github.com/EnterpriseQualit...8 -
I hereby salute every JS-wanking web dev who uses a pop-up type of dialog *and* display yet hugging blur the actual hugging content behind it, only to become completely visible when you allow JavaScript and allow those hugging cookies.
With my middle finger I salute you, motherhuggers. You filthy hugging pieces of hugging shit.
7 hugs so far, oh wait 8! Will this rant defeat my current record on amount of hugs given that apparently stands at 18 (which is hugging incredible, if I may say so myself)? Not that that's really the hugging point though, the hugging GDPR that's responded at by those motherhugging hugwads is. I hugging salute you, hugging pieces of hugging shit!!!
HUG!!!11 -
XCode.........pffft....... more like
Xcuse-me-while-I-hang-myself-while-you-Code
Or more like
Xcuse-me-while-I-crash-myself-while-you-Code
Or
Xcuse-me-while-I-make-you-angry-enough-to-throw-the-fucking-iMac-out-of-the-goddamn-window-while-you-Code
Like WTF, I got reassigned to iOS development after a year being in web development and was genuinely excited to work in swift again. The excitement quickly faded away, seeing the goddamn IDE struggle to compile or run. I dont remember facing these issues in version 7 or 8. FML ;-;5 -
I was so busy studying for final exams that I forgot the Google code-in challenge existed.
I only completed two tasks before I forgot about it haha.
Rip. There's goes my dream of being a finalist. At least there's always next year ;)4 -
Woooo! Closed on a new home today, and it's ours. 2500 Sq ft, 4 bedrooms, huge farm kitchen. Five minute walk from a trailhead for a trail that runs along the shore of Lewisville Lake. Same commute to work. I'm happy.6
-
if (MONTH === 1 & DAY === 18) {
alert("Bro, it's your birthday");
} else {
alert("Bro, just go away, you're nothing special 😅);
}12 -
New role, new stack.
I'm saying see you to Ruby on Rails, Mac OS and Angular to welcome C#, .NET core, Windows 10 and React.12 -
Some people just don't get object orientated programming. What kind of mental Frankenstein object is that you've created? It's part customer, part calculator and part tractor!2
-
My colleague and I have 12 years of college and 10 years of experience between us. Can't figure out how to connect a fucking phone headset.2
-
When your specs simply won't run new code no matter what you do, non-conditioned (and unmodified) calls don't get called, and 2+2 somehow equals Q, you know it's time to give up and restart the simulation by going to bed.
Except it's early afternoon and the project deadline is tonight. 😔
Back to debugging reality.11 -
Today I learned that someone wrote a Python interpreter in JavaScript called Brython. So now you can include a framework to write shitty code in a buggy framework and tell your users to throw more hardware at it.
The guy I heard this from also believed that his code would somehow be "compiled" rather than what's essentially a framework be loaded and then execute code in a language not native to the browser...
So now you can write JavaScript where it doesn't belong in Node and write Python where it doesn't belong through a framework. Frontend and backend are so passé, we might as well start calling it fluid instead.
FULLSCHTAK!!!
🙂🔫21 -
Java script is like an angry girlfriend who won't tell you what is wrong.
This shit happened today.
Me: somearray.includes[stuff];
JS: I'm alright everything is fine.
Me: no it's not, Clearly the feature is not working.
JS:* silence*
Me: Fine be that way.. * spends lot of time debugging finally finds the issue*...oh shit.
Me: somearray.includes(stuff);
JS: I SAID NO TRAILING SPACE IN END OF THE LINE YOU STUPID PIECE OF SHIT NO TRAILING FUCKING SPACES AAAAHHHH!!!7 -
You guys, I think I know what is it....I think I know why I wanted to be a developer.
It started off innocently enough. I was a young lad in IT. Wide-eyed. Absorbing anything and everything I could. Then, the asshole clients came.....
I would put on my best customer service face on, and address the client as calmly and as respectfully as I could. Reminding myself that their frustration is understandable.
To deal with the increased time dealing with clients took, I developed scripts to help me handle maintenance and keep my head above water. I developed scripts to streamline equipment provisioning for big deployments. I developed scripts to handle other technicians who didn't log-off the phone queue and fucked up our on-call flow. I put in place email rules to sift through the bullshit and time wasters.
I became a developer to streamline and make myself as efficient as possible. But the clients keep nagging. The bullshit keeps coming. The other players get in your fucking way.
There is no end you guys.... THIS IS ONLY TUESDAY. I can't script the passage of time. I'm....I'm.... I need a fucking nap.1 -
When you finally get to join the small group of people that have reached hell.
🤧😢🤧
It's been a long ass journey and it's warm down here.12 -
Oh boy how do I put it?
So I am an introvert and I have a strange question.
But first some context is needed. I am mostly nice to people not because I like every one but because I think it would only waste my time arguing with them so I just start to ignore the person I don't like. Which puts me in a strange situation where a lot of people think I am their friend where I don't care about them heck I don't know names of some.
Now because I am introvert people/friends see me as someone they could unload their secrets on (knowing I won't tell anyone (because I don't gossip(because it's waste of time) ) ). So I know almost every gossip worthy shit that I don't want to know about or don't care. Sometimes they even ask me for some relationship advice and then it seems like I am like a rubber duck for extroverted people cause at that point they kind of ask questions that clearly they want some specific answer (wich if I don't provide they will say themselves). Also it is also lame to ask me as I have never been in a relationship (I am an Indian and here somehow people seams to get in a relationship just to be in a relationship. (cause it's "modern", "forward thinking" "cool") (which I can already see will not last)). I am not against relationships but I think it's better to appreciate a friendship rather then forcing that "a girl and a boy can't be friends".
Ooh BTW the question to other introverts is if they become rubber ducks to there surrounding people?13 -
recently people have been worried about what people were going to say I.e "no hate" , don't hold back!
In devrant we only mean light hearted banter if we are pissed we don't want to hurt you we are pissed at a thing and not directly at you. Not that I speak for dfox or trogus but I'm sure that's what they are going for, and it's what ive seen!
We are nice here... This isn't YouTube , it's a credit to devs we are nice people. Hell it isn't stack overflow!
Also I'm brutally honest at times but I love you really.10 -
Ok... I have been desperately trying to control myself from pointing it out to my pm that it's pronounced as "GIT" not "JIT". If he says that one more time, I might not be able to control myself...6
-
Half the papers on multimodal learning refer to studies on human children learning. Makes me wonder why we never study animals to know how their multimodal learning works so fucking well that some newborns can function straight out of the womb/egg.10
-
[ctrl] + [alt] + [→]
[ctrl] + [alt] + [←]
Using Linux desktops exclusively for a decade or so. Being used to this shortcut as I use it at least a few times every minute. To those who don't know - this shortcut typically switches you to the virtual desktop (workspace) on the left/right.
Then you are assigned to help some folks who only have Windows desktops.
....
My desktop spent more time rotating to the left and to the right than standing still. I wonder what were these devs who saw my screen break-dancing all day long thinking...13 -
I believe @Jase/@jAsE/@theRealJase/@myAss is an outsourced devRant account managed by poor chinese dogs paid by a rotten ratmeat.
Edit: And I am his ++ bot.1 -
I don't know who this "you" guy is on all of these git blames, but he's a real asshole for writing all of these bugs.1
-
"How much time would it take you to implement $some_feature ?"
DAMN IT, I hate being asked for estimates on friday. Reminds me that I have to work again on monday.5 -
1800rs/26.66 usd for 2tb Seagate hard disk wtf seriously, can't believe the product but it's on Amazon and I'm tempted, so I ordered it. Let's see what happens. Let the wait for the surprise begin. 😎24
-
Often I look at my seemingly perfect code 30cm away from screen, mumble "WTF", while asking me why it is not working.
My boss might think I'm retarded... -
This is why you don't want to have Dev gf. Unless you like emotional Rollercoasters. Trust me, had one...26
-
Is it just me or what. I had begun learning web development (but prefer C, shell scripting, Linux... ).
One thing that amazes me - besides having to learn 1356367626785576 technologies to get something done and the fact we get a fresh new amazing framework every 0.00000000000234 seconds - is CSS.
Amazing, I made a navigation bar where I wanted the items to be displayed in the horizontal position, so I
.navbar li, a {display:inline-block}
Works fine.
Next day I'm doing the same from scratch, doesn't fucking work. I look the previous design, HTML structure looks identical, I only use a different font face and colors.
After a while I randomly decided to put a <div> around the a element in order to do something else, update the page and... Voilá, text is in line.
Like... Wtf.
I'm like fuck it. No way I want to work with this shit, let's go back to shell.6 -
3rd time the DB schema has been completely redone since starting this project.
3rd time I'm rewriting the back-end of this login.
But... 3rd time I'm getting paid for the same thing so ¯\_(ツ)_/¯1 -
It's the FUCKING....
WEEEEEKKKKEEEEENNNNDDDD!!!!!!!!
I don't know about you lot, but it's felt like a long time coming since Monday morning.
Several concurrent projects pulling you in different directions take its toll.
Oh and to answer your question.
Yes, I am mentally unstable right now 🤪3 -
Facebook 2FA:
Want to log in? Sure, authorize your login. Oh you've authorized it? Nah you can't get in. Log in again.
2FA, excellent technology, except when it's implemented by "move fast and break things" Facebook.
Facebook Marketplace:
Want to buy $listing? Sure, you can send a message to the seller to ask for details. Oh, you want to send them a message? Nah sorry, you can't send messages to this person. You'll have to go to their profile, send them a message there and do it not with our le fancy instant messages but by manually typing it in. Because you know, reasons. Message approvals or something like that probably. Because why on Earth would Facebook support its own ecosystem?!
Move fast and break things. And breaking things those certified enganeers at Facebook sure do. Fucking pieces of shit.7 -
I just spent 2 hours customizing Atom and didn't get any work done.
No sleep for me today I guess...2 -
I think I finally found a reason to have a phone with 8GB of RAM.
So that when TWRP craps out on data decryption and decides not even to ask for a password, at least I can push a whole fucking ROM into RAM to unfuck the phone. Because why not?! Why on Earth would software work properly when you can just throw more hardware at it?
Long live FBE, TWRP what craps out on it, and you remember those things.. SD cards for data storage? I could've used an unencrypted SD card so fucking badly right now, you know... Long live soldered in storage that's encrypted, "for security". Except for when the person who owns said data actually wants to use the bloody data.
FUCK!2 -
Quirks of.... PHP 😂😂😂😂
It's just a quirky language, you either love it or you hate it, or you hate it because you caught the bandwagon in town.
Weirdest quirk though, would have to be function naming conventions and order of arguments.
Shit be crazy at times but you get used to it.rant wk194 php naming things is hard consistent ordering would be a dream it's a love hate relationship1 -
I just bought hitgub.co
Honestly have no regerts about it.
Idk what to do with it, but I'll figure it out.11 -
It's both extremely satisfying and extremely rage-inducing when you learn that an update in the framework breaks your once perfectly functional code for no reason.
Especially when said code is from a sample written by the developers themselves.
Thank god there was a hotfix. -
My boss just gave me a task that Stack Overflow tells me is impossible. He's a senior architect.
-__-6 -
Anyone else seen this before. A friend of mine showed me this as a return from a third party companies API his office was using5
-
Not been a good day so far:
1. Woke up to my Synology in a 'Volume crashed' state. Tried to contact support via web page; support web page not loading.
2. Ancient software at work stops working. As the last remaining C++ dev, I gotta troubleshoot. Original developer wrote test program...in VB6.
3. Server config file changed, but all the admins swear up and down nobody's made any changes.
4. Client calls account rep and wants to know about our security policies, so he schedules a meeting with me and client and forgets to mention until he's emailing me asking where the hell I am. From the tone of the conversation between the rep and the client, it's clear that somehow I'm to blame for being late.
Sigh.
Well, hey, at least it's Friday, right? Right?1 -
Windows is weird. Flagging a fully functioning game application as (Not Responding). It's not even lagging or freezing. It's just. Working. Perfectly.14
-
I've fixed the bug... After 3 fucking months...
If I worked on this in one go, non-stop, it would've been over 5 days.
Bring on the next one. 🤘🤘🤘1 -
I hate trying to shop on sites powered by services like Shopify. Especially sites that have so many fucking plugins that pop up every 3 to 5 seconds asking me a fuck ton of questions.
-
When you are looking for a niche solution, you find some very well sounding suggestions in SO and see this in solutions' homepages...2
-
Just leaving this ugly piece of crap here.
I know these kinds of stuff are not welcome here, sorry anyways. But am I sorry if it's insulting? Of course not. Those who really feel the insult in this shit are listed below.10 -
Girlfriend to Siri: Set my alarm to 05:30
Siri (with the man voice): ok, I have set your alarm to 05:03
Girlfriend (absolutely satisfied): Ok but I don't want this
*manually turns wrong alarm off and the correct one on* -
Boss tells me to cleanup prod drives deleting anything older than a year.
So I find a script for that and run it after making sure works.
Told them it's done and freed up 20% but now they've gone silent.... 🤔🤔🤔🤔😥😥😥😥😥😟😟😟😟😟😟😟😟3 -
It's not "fintech", it's "trying to get around the regulations imposed on banks by pretending you're not a bank" and it's not "insuretech", it's "scam".2
-
Now Kim Jong Un as returned. And all those meme that were circulating last week. I think this anime needs to be made.
We have the artwork. We have the story. Japan your call.1 -
After 1 year of working as android dev and coding in java, finally switched to another startup where everything is in Kotlin where I will be the only one maintaining that project.
Me: This code has almost no comments
Senior dev: Code is pretty self explanatory
FML
At least she spent 4 days with me and walked me through the code, so I'm not totally lost which is great!2 -
Starting my own AI soon. Any advice? I'm doing it in Java, and I know what you're going to say - but I'm doing it in Java anyway8
-
Ad hiring in Iran:
we need a Backend developer who is expert in React, js, scss, and you should have at least 5 years experience in DevOps.
and priority with girls.3 -
This UI when I click on an Amazon link on my Android 7.1.2. "Welcome back to Android Gingerbread !"2
-
When you are all alone at office, stuck with tons of work, nothing to cheer up, browsing every single keyword because you are dumbest person and with millions tabs opened up in multiple windows..
This shows up with a light mood to cheer you up...
I missed to mention that this guy may be working late, but is super lazy to take a screenshot and copy to mobile. -
Quality assurance is not a high point for niantic is it? I was able to find a rather interesting bug while playing pokemon go.
http://imgur.com/gallery/54iBQ
TLDC (Too Long Didn't Click)
I found that I could log into my account on two different phones and now I can be in two places at once, so to speak.3 -
I think it's incredibly sad that one of the first serious discussions I ever have with my child will be how to Google yourself effectively, to do it at least once a week and how to go about getting certain things removed (If you can) 😕2
-
86 lines of code...duplicated 3 times in the same file...and only a single integer constant is different. This is the shit that makes my day to day work tedious.
Im glad I dont personally know the previous dev, he would get his throat punched...though calling him a dev is more of a compliment than he deserves.2 -
When the user complains that our web tool is corrupting and losing data when converting results into excel while he is the one putting more that 40,000 characters into one text box which is way more than what Excel's cell can handle1
-
Client calls screaming they want to go live today.
And oh yeah they also want three morebpaymentbgatways integrated before that.
The documentation is scarce and we never used them before.
Got it on the table 4h before day ends.
Awesome!3 -
!dev
Long time, no rant. Why is facial hair so difficult to control? How do people even grow beards without looking like hobos all the time? Do I have to make some sort of sacrifice to a dark and malevolent entity?
Believe me, it's so much easier to keep on top of shaving body hair than taming face fur. Especially because your facial hair is, you know, on your *face* which means it's very visible. You can't hide it if you mess up. Unless you decide that wearing a balaclava is a good idea when going outside, like when going grocery shopping. Generally that isn't received too well though.17 -
When a client asks us to support IE 6 can we start noting that there are some fucking useless clients out there and that Microsoft is inflicted with more of them than most? The continued existence of IE 6 isn't really down to Microsoft---it's down to their useless fucking customers.
So, let's beat those people with a stick until they upgrade to Edge.
At that point everyone can return to fighting about FF, Chrome and Edge---apart from me as all browsers seem to support cat JPGs.4 -
The one thing I've learned most about developers is that developers like their lasagna more than their spaghetti.3
-
Excuse me, can you please tell me which ass-to-mouth fucking moron had this oh-so-damn-stupid idea to take something so un-fucking-believable nice and simple, swallow it entirely just to create that most-ugly stinking pile of darkest shit I've every seen in my live.
Bluetooth.
After paired, it actually never works at first try to connect from notebook or pc, windows or linux. It's just a big annoying pile of utter garbage. FUCK.2 -
In my Inbox, a mail trail with 3 people who concluded: "This is not working properly"
Me: "Looks like a config issue..."
Someone else: "Hey we've now checked the config, it looks fine"
Me: /goes and looks
Me: "But the required line is commented-out..." -
Spent the entire morning updating a SQL query.
Client wanted to have different expiration times for different products. So the full package would be 1 year of access and a module would only be 6 months. Then when you renew your account the renewal is 1 year if you have the full package else it's 6 months.
The query takes 0.7s to run and left joins 3 tables. Only to return about 100 results. Still it's faster than the guy who wrote the original query which just dumped the hole db into memory then looped through it appending valid entries to a new array. -
How it started:
Need to replace in a lot of SQL files certain stuff...
find . -type f -iname '*.sql' -exec sed -i 's|new|old|g' {} \;
12 hours later that find executed a shell script containing roughly 120 lines of text pipelining.
The jolly of inconsistent workflows.
Different SQL format stylings... Makes fun when single line string replace needs to be extended to multiline RegEx handling. Or matching SQL comment configuration..
Different line endings. MacOS, Windows, Unix, Bukkake.
Different charsets / collations. Anyone wants latin1_swedish_ci... utf8... utf16... :/
Realizing some people even left sensitive data inside the SQL files (e.g. API Tokens..... Yayyyyyyy).
...
Ugh. It's never a one liner. It's never easy. -.-
I hate cleaning up messy shit.3 -
A couple of years ago I was working on a fairly large system with a complex (by necessity) access control architecture.
As is usually the case with those projects, it's awkward for developers to repro bugs that have to do with a user's accesses in production when we are not allowed to replicate production data in test, let alone locally.
We had a bug where I ended up making myself a new row in the production database for a thing I could have access to without affecting real data to repro it safely. I identified the bug so I could repro it in dev/test and removed the row and ensured everything worked normally, whew scary.
Have you ever walked into the office one day, and everyone is hunched over in a semicircle around one person's workstation, before one turns around to look at you and says - after a pause - "... ltlian?.."
Turns out I had basically "poisoned the well" with my dummy entity in a way where production now threw 500 for everyone BUT me who had transitive access to this post-non-entity. Due to the scope of the system, it had taken about a day for this to gradually propagate in terms of caching and eventual consistencies; new entities coming in was expected, but not that they disappear.
Luckily I had a decent track record for this to be a one-off. I sometimes think about how I would explain testing in prod and making it faceplant before going home for the day, other than "I assumed it would be fine". I would fire me.3 -
!rant
Freshman at college watch me using vim and say I'm a masochist, always laughed it off...but after paying for the PWK OSCP course today, I think they may be right.
Hell and below here I come.3 -
Visual studio keeps switching between dark and light themes automatically every couple minutes and it's infuriating.1
-
Documentation is like sex:
When it's good, it's very good.
When it's bad, it's better than nothing...4 -
Honestly if another person complains about how Java and JavaScript are not the same at all I'm gunna be mad2
-
Shoutout to https://ytmp3.cc for being the only web youtube downloader that actually works, is actually quick, downloads "copy-protected by copyright" videos and has a dark theme.
Only the occasional popup ad on mobile, too. Goddamn this is good.
only downside is that it's always Highest Available quality and only MP3/MP4... but other than that it's fucking amazing6 -
Am I the only one bothered by the way devRant ( and to be fair also Twitter) previews images?
It just kinda crops some unknown up front amount of edges. It's annoying in and of itself, but also directs viewer focus to some arbitrary part of the picture, and you can't unsee it even after opening the whole thing...
Is there really no better way to handle the issue of size? How can that be a good UX ??1 -
Well it's been a while I suppose. Sorry I haven't been around for over a month guys. That's what happens when you're a full-time student with a full-time job.
Unfortunately, or fortunately depending on how you look at it, I need some advice/help. I've been working on a senior thesis project that I'm trying to deploy but I'm going crazy trying to figure out how to do it. It's a Spring Boot Java application built as a micro service. I've tried for the past 5 days to get this sucker working on Cloud Foundry with no luck. I've got a deadline to get this fucking thing live in 2 weeks and I'm getting closer to being in a panic. My question basically is, would it be easier to learn a different service/build my own solution from scratch then trying to fuck around with this? I'd appreciate anyone's advice who's had more experience with deploying Java web applications.
Here's a link to the project if anyone's interested: https://github.com/starrynights89/...21 -
A global pandemic - it's the time of the year when you can legally enter Bank premises wearing a mask w/o drawing any attention.
It's the time of the year when every crime is carried out by "criminals wearing a mask"3 -
School's principle: *is being unclear of what is asked*
Me: *asks lots of questions to try to understand*
SP: *keeps being unclear*
Me: *think I understand, I'll do something that will match with what I'm supposed to do*
-- 2 days before due date --
SP: omg stop it's not that at all
Me: wait wtf you told me that 3 months ago
SP: yOu uNdersdtoOd wHat yOu WaNtEd, tHat'S a ProBlEm yOu rEaLLy nEed To fiX
HOW ABOUT YOU GO AND DIE SOMEWHERE YOU SON OF A BITCH
Now I have until monday to write 30 fucking pages of something that keeps making no fucking sense. FUCK !2 -
It's always a good day at work when you can leave knowing that you were able to implement several working features.1
-
I'm fairly new here, so I can't wait to see that one person who knows nothing about tech or software development/engineering join devRant and have no clue what anything is.
-
days were nothing seems to work and you end up solving the problem of the problem of the problem of the problem... so frustrating 😥2
-
Oh my damn god,
I just found the remote-server plugin for vsCode and holy fuck balls, it's the one thing I've wanted from vsCode since ever.
When you dev in VMs and are forever working with remote code using SFTP and git on a remote servers, it's a pain in the ass.
But this, god damn this solves all of that, and with connection specific plugins, I think I just came.7 -
Am I the only one who actually thinks Edge is actually significantly better than other browsers?
Like right now with 2 tabs open it's only using 17MB and it doesn't have any ridiculous features like an inbuilt video chat (looking at you Firefox). It's just simple and good at being a browser...
I like that in my browsers...10 -
One of these days....
Where you want to do a tiny task
....
And suddenly an explosion nukes every service, related service and dependant service.
Chain reaction. Yaaaayyy........
(ancient prometheus node lead to an snapshot error, snapshot error made the migration tool unhappy, migration tool unhappy meant that my task failed - updating prometheus meant checking every target, exporter and so on...
Fuckity fuck it''s gangbang time.)1 -
Speaking of "living"...
When was the last time you looked up in the sky and admired the beauty of its deep blueness or the beauty of the clouds floating up there?
We live in a beautiful world. And yet we spend our lives dawn-to-dusk staring at things made by ourselves rather than enjoying what's already there - the beauty all around us we don't bother to even think about, not to mention look at it.
No, I'm not a spiritual person. I just really love the world around me :) Not people. Not technology. Pure raw nature and the mind-bending balance of EVERYTHING in it.
So... when was the last time you've admired what's out there, rather than what's in our artificial world?7 -
As someone who hates CSS/design/front end development, this abomination of a campaign donation solicitation page really has me saying, "finally, a politician who understands MY struggles!"6
-
The catharsis of deleting code that is difficult to read, clashing with the agony of deleting code that was difficult to write.9
-
That moment when you really have a raging rant you want to post, and it fails to post...
Hulksad.gif
@dfox @trogus, made an issue about this, i hope it's not failing due to my chosen vocabulary, cause they really deserve it8 -
MG...
Found out that I had apple music for free for months.
Now I only have until the end of the year to get alllll the CDs I ever wanted legally.
Already spend 5gb in two days... Let's see if it's really unlimited...
After the end of the year, unsubscrive. Worst experience after installing the app, Apple wants to know everything about me, shares my Playlist without asking... (just 10 minutes arround definitions, still abusive for a premium service).
Fuck Apple abusive policies, thank you for the opportunity to rape Apple without pay.
Space oddity by David Bowie, finding so many songs I forgot I love...2 -
I'm gonna kill him...no don't defend him, you lot are meant to be on my side!
IT'S FUCKING HUNTING SEASON.
I know, I know, you want context but I just can't now. I'm completely annoyed. Fuck data integrity, just duplicate rows randomly cos fuck you.
Work is about to turn into a murder mystery...without the mystery 😒
He doesn't even work here anymore, hope he forgets his password and gets locked out of everything he has.
Woosah....1 -
I did a backup of my computer on a new harddrive. I know it's on me for not checking this, but how difficult it could be for the software to check if there is enough space on the hd for the whole backup BEFORE starting it, instead of in the middle of it?? 😥
-
The AMD song, to the tune of Sam Riegel's DnD Beyond jingle:
You got the perfect casing
Its drive bays and supplies
But you need something to run your stuff
Cause you're late for that deadline
You click open a web page
You've heard about Phoronix test suite
And now you see a red company rise
In a field of blue and green
It's AMD! (AMD)
Yeah! AMD Radeon!
Yeah! AMD! (AMD)
Yeah! AMD Radeon!
You've got your motherboard
You've got your processors
And you've got Socket AM4!
It's AMD (AMD)
AMD (AMD)
AMD Radeon -
When you type
"SFTP://SteffTek.de" in your browser window just for fun and devRant is missing you ❤️1 -
And this early Friday leave from work is brought to you by Microsoft.
(I did triggered the first one, but I forgot my laptop had a pending update so it's not totally windows fault) -
I love when games don't change their mechanics much between installments. That way, when I play later installments and feel like going back to the previous ones, I don't feel so out of touch due to being used to newer features.1
-
Programming
Easier today than in 2009?
We're got all these tools and shit.. frameworks...
Yeah, which just makes you over ambitious, as the weekend project turns into 6 months despite itself.
I say no.5 -
on Monday i finally decided to go to Control Panel and uninstall Visual Studio :)
i can't express the joy i felt minutes ago when the uninstall popup decided to appear -_-7 -
When you send out an email on tuesday and in the weekend you receive a response. And have to wait again for a reply..1
-
Stepped into a government facility and what do I hear in the background? Dial up. No wonder it's taking forever to have a single number called.2
-
Is it just me, or do Adobe products just get progressively harder to use? I'm thoroughly frustrated with trying to figure out how to do simple things like annotating screenshots in Photoshop, like I used to do several versions ago. All these damn options and non-intuitive names for things and crap scattered all over the UI. I just want to draw a friggin arrow and wrap red text in a nice box with a white background!!!
-
Fuck Xamarin! Fuck Xamarin.Forms!
It's slow, it's full of bugs, it's missing basic functionality, it's rapid new updates breaking older frameworks, it's a shitty unstable IDE on both Mac and Windows, it's the need to frequently reopen files or restart the IDE to fix "intellisense" or the false compile errors, it's non working UI builder and previewer, it's connection issues with simulators, emulators and real devices, ...
Have I forgotten something? Probably yes.
Your dev customer for many years.1 -
This is for people looking to switch to Linux but on the fence due to game support.
If you have a steam account, you can go to http://steam.bravehost.com and our in your public profile ID, and it'll tell you all the games in your library that support Linux.
For games you want to buy in the future, check http://www.steamdb.info/linux. I know the steam store lists by Linux too, but IMO it is too slow and visually noisy to see what you want.
Deus Ex Mankind Divided surprisingly works on Linux from what I see and so do other games I actually play, so I will likely take the plunge sooner than I thought!9 -
I'm getting more and more fed up with my fellow colleagues who encounter errors in the execution of their code and come to me like bumbling idiots..." I don't know ow what's wrong ... It's not working"
DID YOU READ THE FUCKING ERROR MESSAGE? I GUARAN-DAMN-TEE IT TELLS YOU EXACTLY WHAT'S WRONG! YOU KNOW WHAT...EVEN IF ITS NOT 100% CLEAR GOOGLE IT. BET YOU FIND THE ANSWER
To add insult to idiocracy...I recently over heard grumblings of being displeased at current level - fuck off you lazy ass child - if you can't read an error and Google for the damned solution in today's era search engines and developer assistance, you don't deserve to call yourself a "Senior Developer"
People like to act like there's some great secret to becoming a competent developer...I'm posit over half is simple reading comprehension2 -
I don't know if this commit message is helpful or not, at least CHANGELOG.md was also updated.
Yikes...4 -
I lost the last few days trying to understand what's wrong with my esp32 project (i2c is unstable),
without success.
I felt so angry.
then i realized that it's not my fault.
but it's a bad implementation of i2c api by espressif.
Now i have to wait for their fix😴 -
Getting real sick of companies who think they can get out of obviously bad claims by making claims that are "less bad" and more technical. As if it improves the situation. But alas Huawei....
"No we weren't spying. It's not a back door. We just forgot that we left telnet enabled for 7 years."
Fucking really?! That's supposed to make you trustworthy?!3 -
git add --all && git commit -m "Alright, here's a story for you. I set out to create a navigation mechanism on here, so we could have back buttons and tabs. I also wanted the ability to customise the UI elements. In order to do that, I combined two dependencies. Each one of them provides us with some of the functionalities we need and there's quite a bit of overlap between them. Moreover, each dependency creates the UI elements differently. So customising the UI is becoming a nightmare already, since it's getting harder to tell which one of them is affecting a UI element's appearance. In spite of all that, we have an app that navigates and has tabs."4
-
So far, the largest hurdle for myself is realising that most people don't understand the struggle sometimes towards getting a feature implemented, or a bug squashed. In the end, it's all about the end product.
-
When you're explaining your app to a non-dev, don't. Use. Technical. Terms. It's not that fucking hard. Don't talk _down_ to them, but use terms they fucking understand.4
-
Well... Ehm, wow. It's Maintenence Weekend... and I really don't know what to say...
It's simply a prick. -
Here's the story of me trying to set up Jenkins with Java, Maven and pipelines. I finally got it to work :D Not sure if it's the correct way and all, but fuck it, it works!1
-
If a team uses multiple languages and stacks (Have, JS, Python) do you think it's better to have everyone use/constantly switch between them or have dedicated developers for each language (ie. 80% main, 20% others)?
--END QUESTION, ANSWER NOW BEFOREHAND CONTINUING---
---BEGIN RANT---
My boss likes keeping the team "will rounded" so everyone does everything. One month in working in Java, the next with Node web apps. When I switch to node, it takes like a week of "wtf doesn't it work.... what changed, is it a big?" And usually end it"oh right I remember I need to ..."
And also always... "How the fuck do I write tests in {some reading framework} again?"
So feels like everyone is just a generalist and no one is a master/has time to develop mastery. I don't know if it's just me (1/3 Senior developers on the team that has to do everything) or if I'm the only one that complains... Not that it makes a difference... (Only option to really be heard is to resign but I need to somewhere else to work and finding one is hard for personal reasons)
And well this is the biggest reason I would leave the team. No time for mastery, no standardization/shared knowledge (everyone does their own thing but probably not well and no time for testing or documentation; how the fuck does whatever you wrote work, how do we use it, what the fuck did you put in prod that does ... And where the fuck did you put it cuz it's not in ANY of our repos).
I always feel one day soon it will come crashing down and I can say "I told you so" but will then it's too late and I'll be there one cleaning it up... Again6 -
!rant
It's Friday. Today I'll be soldering and testing (I really should come up with some tests now) my new hardware all the way to the weekend. Woooo!3 -
You know what's a great app? Termux! It's amazing. Yesterday I tried running apache on it and it worked! If you haven't tried it yet, you really should, it's great. For those of you that don't know, it's basically a custom Linux evnvironment that doesn't require root acces. You can use it for ssh, you can use vim in it, python, standard commands etc. I'm definietly thinking about buying stuff like the customization to support the developer. Btw. Along with "Hackers keyboard" it's even better!
-
I now leave my work IM status as "Away". It's the only way people leave me alone so I can get work done...*shrug* ☺1
-
Oi, typescript, why do you take 15 seconds to transpile my project!?
It's a waiting game for the unit test to even start :/4 -
I'm waiting for IoT come wide, just because I want goddamn widget which shows if the closest to office toilet is free3
-
The worst part about programming assignments at my school is formatting the god damn output strings. Fuck2
-
We have an unit test that tests the average of a sequence of numbers generated randomly using a gaussian distribution. Of course it fails from time to time, it's random! Failing to fail, would mean that the generator is not generating random numbers, therefore failure means success, but success does not mean failure.
Wait, why did we add this test in the first place?rant gaussian distribution statistics random of course it fails it's random bitches normal fail equals success unit test -
After hours of hitting my head on the keyboard if finally realized why my contact form wasn't submitting properly... I forgot to import jquery.3
-
That moment you need to change something near the top of a docker file and now it needs to completely rebuild
-
Yes, it was a single problem. And in the component, I've pointed at (and stuck to the whole triage time) 2 days ago.
2 days wasted.
Damn it!
At least I can finally have some closure for the weekend. It would be a shitty weekend if this bug wouldn't have been caught by today's EOD.
Damn it!
// Just needed to vent. -
Woohoo! Devrant on HN! Kinda reminds how when you google "xcode sucks" the top result is a devrant post.
Heh, I was just thinking how I never really used devrant in past while. It's almost like a sign.7 -
Been working on this webapp for ~1 year, and it's finally up and running! :D
collanon.app
If any of you would like to review it I would be flattered u.u14 -
Had my first exposure to documentation with Doxygen (and documentation in general) today. ITS SO COOL! I don't know how I functioned before. Keeping the entire project in your head is for the birds!
-
I wonder which is worse:
1. all day long every day doing things you MUST do and running out of hours in the day to do them all
2. all day long every day doing things you WANT to do and running out of hours in the day to do them all1 -
So, yesterday I finally understood the "it's compiling madness"...
I'm working as a web developer and I needed some c executable to run from the back end to convert files.
Unfortunately, you have to compile this library on your own, there's no way to just download the executable...
It took 45 minutes, and that's without counting the download of visual Studio, cloning multiple gits etc...
I'm so happy to just be able to press F5, sometime not even that is necessary....
So yeah, I guess I'll just watch another episode of hell's kitchen every time I need to compile this piece of crap....1 -
!Rant
TL;DR - Getting married can lead to installing life malware.
MARRIAGE SOFTWARE....
A young husband wrote this to a Systems Analyst -
(Marriage Software Div);
Dear Systems Analyst,
I am desperate for some help! I recently upgraded my program from Girlfriend 7.0 to Wife 1.0 and found that the new program began unexpected Child Processing and also took up a lot of space and valuable resources. This wasn't mentioned in the product brochure.
In addition Wife 1.0 installs itself into all other programs and launches during systems initialization and then it monitors all other system activities.
Applications such as "Boys' Night out 2.5" and "Golf 5.3" no longer run, and crashes the system whenever selected.
Attempting to operate selected "Soccer 6.3" always fails and "Shopping 7.1" runs instead.
I cannot seem to keep Wife 1.0 in the background whilst attempting to run any of my favorite applications. Be it online or offline.
.
I am thinking of going back to "Girlfriend 7.0", but uninstall doesn't work on this program. Can you please help?
.... The Systems Analyst replied:
Dear Customer,
This is a very common problem resulting from a basic misunderstanding of the functions of the Wife 1.0 program.
Many customers upgrade from Girlfriend 7.0 to Wife 1.0 thinking that Wife 1.0 is merely a UTILITY AND ENTERTAINMENT PROGRAM.
Actually, Wife 1.0 is an OPERATING SYSTEM designed by its Creator to run everything on your current platform.
You are unlikely to be able to purge Wife 1.0 and still convert back to Girlfriend 7.0, as Wife 1.0 was not designed to do this and it is impossible to uninstall, delete or purge the program files from the System once it is installed.
Some people have tried to install Girlfriend 8.0 or Wife 2.0 but have ended up with even more problems. (See Manual under Alimony/Child Support and Solicitors' Fees).
Having Wife 1.0 installed, I recommend you keep it Installed and deal with the difficulties as best as you can.
When any faults or problems occur, whatever you think has caused them, you must run the.........
C:\ APOLOGIZE\ FORGIVE ME.EXE Program and avoid attempting to use the *Esc-Key for it will freeze the entire system.
It may be necessary to run C:\ APOLOGIZE\ FORGIVE ME.EXE a number of times, and eventually hope that the operating system will return to normal.
Wife 1.0, although a very high maintenance programme, can be very rewarding.
To get the most out of it, consider buying additional Software such as "Flowers 2.0" and "Chocolates 5.0" or "HUGS\ KISSES 6.0" or "TENDERNESS\ UNDERSTANDING 10.0" or "even Eating Out Without the Kids 7.2.1" (if Child processing has already started).
DO NOT under any circumstances install "Secretary 2.1" (Short Skirt Version) or "One Nightstand 3.2" (Any Mood Version), as this is not a supported Application for Wife 1.0 and the system will almost certainly CRASH.
BEST WISHES!
Yours,"
Systems Analyst.
-----------------------------------------------
I'm not sure if this is a repost - if it is I apologise, but it's too good not to share.1 -
I'm Beck at my parents home again and wanted to some a problem I'm having with FB "intelligent" aka dumb UI. But my motivation to code jus got thwarted bc VS 2012 is too old... and can't install the Nuget packages I need...2
-
So I wanted to get into Lego again. I loved it as a kid and got a bit into robotics again, so I thought why not, maybe I can collect some parts for future robot builds.
I go look for videos about models and stuff and in the end I found one I liked and though yeah why not.
Went ahead to check it's model number..
It's 42069.9 -
Backstory:
Got into a "fellowship" program with a community. They provide the templates for their website and we have to work and edit it to suit their needs. Now with a bunch of colleagues who have also been selected I finished the first part (i.e building the site) now they are training us to use their APIs and include it in their site and build the backend.
All of this I am doing without pay and according to them the benefit I get is "understanding how the industry works" and that "it will benefit us" with a promise that if we finish their sites, companies and startups will give us paid internships. I already know how APIs function and I'm not that invested in frontend stuff.
Jumping to the main question:
Should I continue here or should I quit?
Is this how the tech industry works?
Also an explanation to your answer will be great too!2 -
Holiday (Labor Day) == Personal Work/Clear ToDos Day
I think I got 10% of what I had planned to get done done... :(
I'm also planning to take a week off soon though not really going anywhere... It's supposed to be a Workation but... -
Yes, the bug is always on our side. Other teams are immaculate and they write the purest, most perfect code possible.
-
Finance lady keeps turning the air conditioning off.
It's either sticky note on the controller or R&D vs. finance lady on an on/off battle...
What do you say? -
Does anyone else constantly confuses android's camera icon with play store icon ?
I know, its minor thing but it drives me nuts... -
Everytime my qa says "it's a bug"
Me: You saint, it's not a bug, it's a feature...
*Awkward silence*