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 - "know"
-
I fucking love my parents.
Came to visit them again and told them that I might buy an iPhone in the future (I fucking hate apple/i-devices and they know that).
Mom: "You are going to WHAT? Are you okay, son?"
Dad: *walks towards me and puts hand on forehead* "Hmmm, doesn't seem to be that warm. Maybe we should visit a psychiatrist soon."
Me: 😂. mom, dad, I fucking love you.52 -
Me: *hours of coding, develops a feature*
Code: I'm working..
Me: Oh good.. will monitor you for sometime.
Code: Ok, I'm done. I'll stop working now.
Me: WTF
Me: *sits for hours to solve bugs*
And when almost done,
VPN: Someone's having a good day, I'll disconnect you now.
Me: WTF
Me: *tries switching on/off VPN couple of times..*
When it starts to connect,
WIFI: Oh wait!! It's my turn to bid goodbye now. Have a nice day sir
Me: Of course !! The wifi
Me: *restarts router/ troubleshoot etc*
When wifi says connected...
Battery: Good job with wifi.. I'm down now..what you gonna do?
Me: Are you fucking kidding me???
Me: *connects charger, wait for laptop to switch on*
Windows: Updating....
Me: *jumps out window*13 -
For 2 years I tried to make my boss pay me what I know I should be worth. Over the same time the team morale took a nosedive down into an avalanche.
Today I told him, that I am sick of being kept waiting and listening to excuses. I want the payment I know I deserve and I want it before the end of the year. I believe to have stayed perfectly calm and factual, even told him "I am sorry, I really tried it, but I cannot take this anymore".
He found a way to put a (literal) "fuck you" and a verbal middle finger into other people's mounts, so he "didn't say it himself" and shut down the meeting telling me to look for another job.
Actually I have not felt as satisfied in my job for a long time, as I have in that very moment.
Time for a new start.17 -
I have my reasons that Socrates once tried to understand how Docker works, because I have exactly the same feelings.7
-
Storytime!
Manager: Hey fullstackchris, the maps widget on our app stopped working recently...
Dev: (Skeptical, little did he know) Sigh... probably didn't raise quota or something stupid... Logs on to google cloud console to check it out...
Google Dashboard: Your bill.... $5,197 (!!!!!!) Payment method declined (you think?!)
Dev: 😱 WTF!?!?!! (Calls managers) Uh, we have HUGE problem, charges for $5000+ in our google account, did you guys remove the quota limits or not see any limit reached warnings!?
Managers: Uh, we didn't even know that an API could cost money, besides, we never check that email account!
Dev: 🤦♂️ yeah obviously you get charged, especially when there have literally been millions of requests. Anyway, the bigger question is where or how our key got leaked. Somewhat started hammering one of the google APIs with one of our keys (Proceeds to hunt for usages of said API key in the codebase)
Dev: (sweating 😰) did I expose an API key somewhere? Man, I hope it's not my fault...
Terminal: grep results in, CMS codebase!
Dev: ah, what do we have here, app.config, seems fine.... wait, why did they expose it to a PUBLIC endpoint?!
Long story short:
The previous consulting goons put our Angular CMS JSON config on a publicly accessible endpoint.
WITH A GOOGLE MAPS API KEY.
JUST CHILLING IN PLAINTEXT.
Though I'm relieved it wasn't my fault, my faith in humanity is still somewhat diminished. 🤷♂️
Oh, and it's only Monday. 😎
Cheers!11 -
*Reads some text about frequencies
"Oh, bass is within 40-100hz. How does it sound?"
*Clicks on demo audio*
*Table trembles*
*Cat jumps high and runs off*
*Pauses audio*
"Yup, that's bass"1 -
I love coding
But I hate coding
But I love coding
But I hate my buggy IDE
But I love coding
But my back hurts from all that sitting
But I want to work on my side project
But at times, it's frustration.MaxValue
But anything remotely related to coding I find interesting
But it's so hard to abide by good practices
But I love coding
But progress is so fizzlingly slow
But I love that elegant solution of the other day
But it took me 57 attempts to arrive at that elegant solution
But the shit I'm building is so cool
But
But
😦1 -
I wish my dad wouldn't bring up the cost of college to me.
Yes it costs me $12,000 to attend full time semester. Yes I'll be on $75,000 of debt by the time I graduate next year.
Why the fuck do you think older millennials aren't planning on buying homes, putting off marriage into their 30's let alone thinking about fucking kids.
It's not his fault, I love my parents. I just feel like they want me to pull a rabbit out of a hat when I'm already pushing full time work and soon full time classes.
I'm tired. 😔22 -
Fun fact: The word "sudo" in Spanish means "I sweat", which, in colloquial speech, can also mean "I don't give a fuck"8
-
!dev
I never mix my personal and professional life. But I've totally lost that ability today.
She said no! 😶19 -
Questions I ask myself when things get serious at work: "Do giraffes get struck by lightning more often than other animals?"2
-
True story.
I had been working for 6 months at the same place surrounded by 6 people (3 of them in my work team) .
On January I receive a message on skype for business "Hello, happy new year :)"
I answered "thanks", 10 seconds later I see the name of who wrote the message, someone called let's say YYY, so I ask one of my coworkers, "do you know who is YYY?" and I hear a voice of the girl seated right in front of me for the last 6 months answering "It's me", "Oh!" I said.
Awkward silence....
Rant to myself for being a shitty non social person.10 -
Designer - *showing an animation made with after effects* Lets add this really cool animation in our website
Me - Actually that will be very difficult with plain CSS. We will have to use some heavy animation libraries, and we don’t have that much time for the project.
*next day*
Designer - Found a better animation
*shows another animation*
Me - *awkwardly* This is more difficult to implement than the previous one
*next day*
Designer - What about this one
*shows yet another difficult animation*
Me - *ashamed and questioning my skills* ummm....
Designer - you know what, just add fade-in-out7 -
The fact you’re older doesn’t give you the right to call other people’s 8-months’ engineering effort “shit work”, especially if you didn’t even see the code...
Sincerely,
Your tech lead - me :)4 -
Other students:
#define redLed 2
#define yellowLed 3
#define greenLed 4
void setup ()
{
pinMode(redLed, OUTPUT);
pinMode(yellowLed, OUTPUT) ;
pinMode(greenLed, OUTPUT) ;
}
Me:
void setup ()
{
for (int i=2;i<5;i++)
pinMode (i, OUTPUT);
}
Proff - This code is wrong it won't work. Where have you specified red led, green led, yellow led?
Me - wtf! Code doesn't know which led is used in what pin it's just pin numbers!
Gave me less marks 😑
P. S. I wrote comments in my code specifying which pin will have what led connected 😑14 -
So I got terminal Linux in school right now. People said that it's so hard, but guess what? Surprisingly it's even easier for me than Windows CMD!7
-
My mentor is a GOD. He's a workaholic. He knows everything. The only fucking thing he doesn't know is that his MENTEES ARE NOT HIS FUCKING SLAVES.3
-
Literally just saw a job post with this in it:
We are seeking a Python Developer with solid experience working with Object Oriented PHP 54 -
I think my kids would be bullied at school when they proudly say that roots of a tree are at the top.1
-
Lets get to know eachother, shall we..?
It's come to my attention that all we do is either rant, or post memes! Lets talk! D;
What's your favorite programming language?
How about spoken/written language?
Favorite band?
Song?
Do you sit or stand while working?
What's the last four digits of your SSN? Haha, jk..
What are you passonate about?
What projects (programming or otherwise) have you started/picked up/finished lately?
What else do you want to share?
Answer as many as you'd like~97 -
#include <rant>
So, in my class I have this one dude who also code, "Awesome" I thought when I first saw that he codes, he codes in c# and claims to know JavaScript.
So I hung out with him a bit on recess/break time, and I eventually found out that he is a d*ckhead
First of all, he claims that he can code ANYTHING, I mean triple A games, the machine that can find pi in 10 seconds. And I know that this isn't true, because he "can't bother" with showing me it.. whatever I think.
I also mentioned that he is a d*ck, why am i saying that? Because if you make an error he would just go, "there is supposed to be *insert random bullshit here* instead of *a typo that I made*, retard. You are honestly fucking stupid" Listen, I love when people point errors out, it really helps. But when you say it like that, it honestly makes me sad. One day, I was messing around with classes in python and he went "hey idiot! That's wrong! There is supposed to be a *random word* instead of *working code*". The funny thing is, HE DOESNT KNOW WHAT PYTHON IS. So I comment out the working code and puts in his c# bs there instead. And he just says, "it isn't working because there's a private class instead of a public class. Ehmm, excuse me? This is python, ok.
Oh and he told me I was a retard because I can't develop triple a games using pure JavaScript.
Any tips on dealing with the guy?23 -
Never assume you know better
Never assume others know better
Never assume others know
Never assume
Trust, but verify [doveriaj, no proveriaj]5 -
What manner of imbecile writes a password reset function that passes the email and password as god damn query parameters, in the email link....1
-
*** don't use compiler ***
Question in class today:
int n = 0;
for (int i = 1; i < 10; i++) {
n = n++;
System.out.println(n);
}
what will be printed?50 -
When Google recruits, I guess they don't need to ask you anything, since they are already tracking your every move.13
-
Hello everyone.
I've seen people doing story/rant to introduce themselves, and I never done that, probably because I'm terrible at doing so, and the more people their is, the more complicated it gets for me. 😥
Usually I try to blend in, and be the same color as the wall. But I want to try something different, so bear with me as I go through this painful process. 😶
So here I am, a lonely dev, who only have friends through a screen, living in a dark room only lit by green leds (tho sometimes it turn red/pink), lost in a small street of Paris. I usually avoid posting on social media, but here on devRant, I feel alright, somehow, it feels like home... 🤗
Started developing at 14 with html and php, then css and js (with the later still being a mystery to me). 🤔
I never really had a real job. Had 3 month as an intern into a human size web agency, and despite the recommandation they gave, I didn't like the job... Dropped from school and self learned everything I know today. Did a certain amount of personal projects, but no publication for lack of confidence. As of today, I'm 28. 🙂
Then a year and half ago, I changed to c# with unity3D, and I had a ton of fun since. 😄
Learned cg effect, texturing, 3d, a bit of animation. I'm working on a project of indi game with two people that are my only social interaction outside of my family, and now devRant. I don't mind being lonely tho. 😯
But this community is awesome, so I'm glad I stumbled across that sad face on the play store. 😄
Also it's 7:30am, I didn't sleep because of this post, I'm tired, and yes I'm an idiot.21 -
After one year of learning to code I am still not sure if I am an adequate programmer or a really effective Google user...5
-
Just found out you can take Screenshots of a webpage right from the firefox console... neat! You can even select specific elements to screenshot.
Just throw :screenshot into the console - Ff v62 (--selector [css-selector], --fullpage, and some other params you can look up)
Have a good Monday :)3 -
Why don't devs read the fucking docs?
Time and time again I find my coworkers inventing new ways of doing stuff that could easily be done with existing features.
Today I saw this on a code review (functions are from lodash):
head(filter(...))
That's what fucking `find` does, you dense motherfucker!
This is just a tiny example. I've seen so much of this shit. Sometimes it's almost art how they find ways to solve problems without actually reading the docs.6 -
Today I had the pleasure to introduce to my Professor (who teaches Python) that you could cause a keyboard interrupt typing Ctrl-c. Her logic was that "Ctrl-c is for Copy" and the only way to end a infinite Loop in the shell is to, "X out the Window." She also clearly has never dealt with linux or terminals.13
-
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 -
I enjoy listening to Metalcore while coding. It really helps me calm down and focus/concentrate (the irony of that whilst having someone scream right into my ears 😂). It also helps me chill and regulate my emotions better. Am I weird? What helps you focus and code better?31
-
1. Hit everything you do. You will learn more faster. Don't accept things at face value, care about why things work.
2. Study and experiment constantly. Be aware of your surroundings and what is going on. If you're not ready with a solution when a power vacuum appears, you will always be a grunt. Or worse, eventually a manager who everyone hates because you constantly tell the people who report to you how "back in your day," your code was amazing, there were no bugs and your shit doesn't stink.
3. Be honest with yourself: If you just want to keep your nose to the grindstone and make manager so you don't have to code anymore:
Quit. Stop now. Do not pass go, do not become a cancer on the industry.
Go get a job as a PM, you'll have a better career and you won't be the weak link holding everyone else back.
Tl;dr When the shit goes down, you better be ready.1 -
Today I come across something interresting in SQL Server.
I was optimizing a report query and in the SSMS windows runned in 10 seconds for 3000 rows.
Put it to a stored procedure took me 5 minutes for getting 100 rows.
I was like WTF?
After some research I found out that the problem was that I was using the Stored Procedure parameters in the query.
Created local variables for the parameters and poof... 10 seconds again.
So if you are creating Stored Procedures in SQL Server DO NOT USE THE PARAMETERS FROM THE PROCEDURE. CREATE LOCAL VARIABLES.5 -
So Microsoft removed the transparency Aero Glass effect going from Windows 7 to 10, to make 10 more "modern", even though 7 was pretty as fuck with that transparency.
Now they're bringing it back with their wanky "acrylic" blur?
Make up your mind Microsoft6 -
I know i'm late to week 119... but I just finished assembling my desk.
Pardon the taquito, it's lunch time and I missed breakfast.
I think my desk has a built in whiteboard... 😂16 -
I was noticing some slow network and it was dropping some connections. So I booted up my old XP install with Java 6 so connect to the ASA 5505, I see it’s logging max connections of 10000 has been reached.
Fine, I recon it’s my colleague backing up his entire machine to Google Drive.
Because when he shut it off, n connections dropped.
I check back in the log, and I see there’s 4-500 connections happening per second, I think WTF and check the source IP. Lots of random IPs from Vietnam, all going to a Windows2008 Server using rdp.
(I didn’t setup our servers, so I didn’t know which server it was accessing)
Ask my other colleague, he told me it’s a windows server from an earlier project that’s not used anymore.
I rdp into it, see there’s users logged in from around the world, and I immediately do a shutdown.
Would you look at that, connections per second dropped to about 50.
I guess that server isn’t going back online ever.
And I now need to ask management for a budget to update our network infrastructure, because the old ASA 5505 is begging me to die.
TL;DR gg previous employees didn’t shut down old servers and left them open to the world to enjoy9 -
So I never had a proper education in IT. Started web development as a hobby, then some people started giving me money for it, and here I am, working as a fulltime web dev since 2001 and SEO expert since 2010.
Still, I sometimes wonder how much I really know compared to some fresh coder who just got out of university.
I know how to create great software from A to Z, but still I sometimes get the feeling that I am missing the fundamental basics.
Is that weird?3 -
We are currently building a CRM for a company, and we have to demo it for some of the users, two guys start asking couple of questions.
Them: what it is built with?.
Me:PHP, do you know it?
Them: No we only know WordPress.
Me: well WordPress is built with PHP.
them: Ah that's probably why we thought it looked like WordPress.
Me: yeaaah probably... sure :)2 -
Q: What's the difference between Java and JavaScript anyway?
Me: Java and Javascript are similar like car and carpet are similar.1 -
Is there for the programming language "Crystal" a library called "Meth" ?
I'm affraid to google this. 😳9 -
Some people just lack so much independence, damnit!
Einmal mit Profis arbeiten ... ! (*) 😒
(*) German expression that expresses depending on tone or context a mild to severe frustration as well as the desire to work with qualified people just ... once?! Maybe?! Please?! Often used in IT and dev contexts, because - you know.12 -
I know:
-Python
-Web Development
-JavaScript
-Node.JS
-Electron
-Linux
-- In all of this, I know lots but not nearly close to everything
Am I employable?
I don't feel like I know enough.10 -
So yeah, we released our app for 26k people to use two days ago. Due to circumstances not under our control, that was developed way faster than it should've. Today we're two days in and everything is going horrible. 26 thousand people are having trouble using it (not every problem is our fault, but ofc they don't give a shit) and our support team is not big enough to handle every request. We're not able to find any more people to help us handle it, so some developers are being used for support. But that slows the bugfixes a lot. We're at risk of losing our jobs because we will not be able to make it work in due time.
In Italy, at the beginning of the year a particular type of invoice became necessary and to handle that everyone needs a particular kind of email called "certified", you know, because Italy, and today our certified email server went offline for the whole fucking day because the provider was an overload of feces. We were overwhelmed by the amount of people that needed help.
I don't even know what to say, if we don't fix it we're fucking fucked, like literally.
I really hope everyone is having a nice new year. For us, this is going terrible.2 -
Delivering next 6 month’s product roadmap to CEO, other directors and senior management.
I know it’s all going to change.
They know it’s all going to change.
I know they know.
They know I know.
No words are spoken. -
I was drunk at a party and so was this guy, that I knew from scouting and who knew that I was capable of programming, even tho he very clearly disagreed with my choice in language.
We started talking about this new system that we (all scouts in Denmark) have to use and he told me how his work was affected by the fact that this systems API is the purest of shit.
He told me that he would really like someone to help him with his work, cause right now he was alone. They were looking for someone new, but for some reason the boss wanted a new guy to have 5 years of experience in Java... Which they don't use.
So he got my information and would put in a good word for me -
So turns out getting drunk and installing arch Linux was a bad idea, somehow managed to format the installation USB instead of my secondary hardrive, set my home directory as the root file system and somehow managed to half install the needed packages to the USB so I wasn't booting and had to go back to a fresh windows install just to redo the USB...
Don't drink and Linux kids...2 -
A client tells me that the colors are all wrong on my screen, and offers the idea of calibrating it.
#i use f.lux3 -
"new features" - new spywares?
"You decide" - Yeah right.
"could take a little longer." - I KNOW THAT!random we know who actually decides same old shit i know a fun fact about square roots windows is gonna fuck some time -
Why would someone hire you to build a website, constantly say that you don’t know business, never give you anything you ask for, berate you for asking questions about what they want the website to be like, “that’s your job”, all while expecting under $500? Because they’re stupid, that’s why. Oh also, they now want an app instead of a website because their generic-ass domain name was taken already. Fffffffffff7
-
I fucking hate people that talk bad about things they know nothing about.
The best thing that I have learned is to always keep my mind open.
From "Linux sucks because there is no software" to "MacBooks are just for rich morons" to "All Microsoft tech is shit" to "CS degrees are just a bunch of useless math" to "Bing sucks".
Fuck, what do you know?? You never spent 5 minutes to try them or get informed about them. You have your shitty ideas and will keep having them because you don't care about the truth... You only care about your comfort zone.
Yes, Bing sucks. I tried it. Google shows me better results.
iPhone might suck. I don't know. Never had the opportunity to try one for long enough.
Whenever you're throwing shit at something, stop and ask yourself: do I know the whole story?11 -
Just got AWS free subscription, had fun for 30 mins. Now I don't know what to do with it. Can someone give me idea for something to do with it.17
-
Getting called by my dad "how do I make a local network with my phone?"
"I don't fricking know, I don't have your phone"
"Well you are the tech guy"
Really now?11 -
The Return of Mr. Gitmaster:
So there is this colleague I already ranted about several times. After my previous team lead had confronted him about not doing much work, there was some irritation because he showed not up at work, but it turned out the external training he did was just a week earlier. Then he was ill a week, another week vacation so we didn't see him much. Not that his pre- or absence makes much difference to our repo: When his and my team lead looked at his commits of the past three months they found like the one copy-pasted HTML-form that wouldn't even show.
Fast forward to now, where we have a new team lead and we were going to lunch with Mr. gitmaster. So we got some more hero stories from the great work he was doing in the previous company. How he was graphically monitoring the heap fragmentation that stupid glibc was causing to their search engine, and how much better it became with tcmalloc.
I still don't understand how he bridges that cognitive dissonance from all the superior tech knowledge he displays to not actually writing any code at all. Not that I would not have experienced some states of feeling low, in paralysis unable to write a single line of code... but he seems so full of confidence, always commenting how trivial and easy all these tasks would be, as if it's all so lightyears below his abilities. Maybe he should just become a manager - but not mine. -
So I finally got my senior project approved by my school's assistant principal (the one who deals with every student's project) and he said that the three forms of evidence I suggested were not enough. A quick summary of my project: I'm supposed to make a game engine in Java before April of 2017. Every student needs 3 forms of evidence that they did the project so I suggested screenshots of my work, the finished source code, and pictures of me actually working on it. In addition to all of that I would have a ton of documentation and sample projects to test different features of the engine. Well, he doesn't really understand that for a high school student, that's already enough work for a couple of years and thinks I need more evidence. So what does he do?
He requires me to find at least 5 people to test the engine and complete a survey about it. This normally wouldn't be a problem, except I'm a high school student and don't know more than 2 people who are fluent enough in Java to work on a game. And, I have to finish the project before January now to give the people enough time to work with it.
Long story short, I'm not even out of high school and I'm already experiencing the struggles of dealing with non-technical people.10 -
I'm currently working in call center. Making them a management system for agents. I'm the only developer there. No one asks about the progress even the owner doesn't know a thing about softwares. This gives me a freedom to do work when I want and how fast I want. But because of this I don't care anymore about the little things. and I have adopted some bad programming habits during my stay. Should I quit or what?6
-
Not sure if this is necessarily a prank, but I was working on a team that was split in 2. We had a group of senior devs in one country, and junior devs in another (god only knows why, and yes I complained about this a lot).
The "lead" of the juniors was very stubborn and refused to adhere to the official standards, as his way was better.
I was working on an app with him, I was fed up with how badly the app was working, how hard it was to find files etc. So I waited for him to be off on holidays and pulled some extra hours to completely re-do the folder structure, rip out his persistence layer and a few other things.
When he came back he lost his shit and complained to the architect. The architect (also fed up with his shit) told him that we don't have the time to invest in reverting back everything, and loosing all the new features I added on top, especially since the app is now adhering to standards.
Never felt such satisfaction in my life. -
First day of new job, starts in 3 hours. Imposter syndrome is strong! Lack of sleep from stress isn't helping!
On a side note, I have reconfirmed that I don't actually need sleep. College theories confirmed!4 -
You know, I agree with the opinion that everyone uses the tools they know can get the job done.
However, sometimes I just wish people wouldn't just pick the first tool for the job that comes up in Google's search results. People should look at more tools and then decide which tool is going to suit their use case best.
I can't for the life of me figure out why some people prefer using ad-ridden tools over ad-free, even open-source ones that work better in every way. The best example for this is people using μTorrent or BitTorrent® for the BitTorrent protocol instead of Deluge, Transmission, qBittorrent, and some others. They just typed in "how2download torrent for free uwu" and downloaded the objectively worst tool.
Pick your tools wisely, not by letting some search algorithm recommend you the worst one.9 -
My Team Lead: Hey do you know goofy?
Me: What is it?
TL: It's a new programming language
Me: *being suspicious* show me what are you dealing with
TL: *Shows me a Groovy code snippet*
Me: Yeah!! Your goofy is pretty good!! Enjoy! 😡1 -
When I implemented a new algorithm in C and beat the previous implementation of a tool by 5 seconds in speed (17s best case before) and my mentor implemented the same algorithm's pseudo code beating the previous implementation by 14s.19
-
One of our politicians at the late-night-show
Q: who wrote La Traviata? Giuseppe or Verdi?
A: ummm.. Ammm.. Well.. *confused af*
Q: so do you know it or not?
A: I know it! I know. I know but I won't tell you. *in all the seriousness*
[true story]
somehow reminds me of IT guys who pretend to know everything just to look cool :)4 -
Long time no rant from me. Sorry guys, has been a tough time for me.
Little background: I'm an apprentice and as such definitely not a fully trained professional. I'm working in a big company with people who have very let's say interesting ideas what I should be able to do.
This whole disaster begins shortly after I started my apprenticeship. I was offered to choose my first little project. "Something from the backlog, not very challenging and a nice beginner one. It's just about a PoC" ok, le me thinks. I choose to make a weather display.
Basic functionality was provided within the next 3 weeks. My direct boss (let's call him Jo) liked it and talked to his boss (Hugo) about it. Hugo was so excited he called our product manager to get my plugin into our software asap and began to think about where else we could use this.
This is where shit went downhill. Hugo told me it was my task to implement it on a totally different platform and to "host it in azure". I don't know much about azure and I never used it. I told him that I'd need time and some kind of sandbox to try and learn how things work. He promised but nothing ever came through. Not even Jo could do something about this.
They told me I should write this asap because "every customer would LOOOOVE this" and I honestly can't think of a way to meet all their requirements without access to our azure system/ sandbox. (There are a lot of requirements)
Am I wrong? Should I be able to do this? I'm a fucking trainee. I don't know everything.7 -
You know your idea was shit when....
You see it on devrant as the subject of someone's all caps, swear word filled rant...1 -
I'm absolutely loving the fact that my university is making me take their intro to programming course this fall when I've taken 5 programming classes in high school and already have intro to programming credits from a different university. Did I mention that I passed the AP Computer Science exam before taking even more courses? Do they not understand that I do in fact understand how to use recursion(the most advanced topic in their intro course) and don't need to spend a semester relearning what I already know? For Christ's sake they don't even get into OOP in that course.3
-
Just had my first freelance job here i Korea. I was told that most(?) of my job was going to be front-end web dev, and that the 'required' skillset was html/css. I thought I'd be making some free money, and I was wrong. Ended up doing all sorts of things like sql,js,ajax,php, and EVEN design. Apparently "developers" here are people who can do pretty much everything on computers. How many other countries are like this?12
-
When bugs are seen by the client and boss therefore asks me "did you know about this bug?", what I'd really like to answer is:
"well shit, no! I would have solved that or at least told you about it, don't you think? what kind of fucking question is that?"
But then I just answer "no, lemme check"2 -
TL;DR Know your field of knowledge and accept help from outside.
Alright I work devops and I swear to fucking god the next dev that tells me that their networking idea/solution is better or outright ignores me then proceeds to ask for help is going to get a firm punch in the balls. If you're a lady you're going off the roof because you don't have balls. I am open to ideas but when they're involving a 10/100 mini switch or python routing I'm going to kick their ass.4 -
Spec meeting with my client: "Accessibility is very, very important to us. We want to be sure that we meet AA guidelines, at a minimum."
Client delivers front end mockups, can do nothing. Not one single element on it is compliant - have to send it back for revisions.
The fact that they were aware of the WCAG and the AA tier guidelines, and still handed me these shitty designs is pretty impressively stupid.2 -
When a marketing / sales person says in a meeting with executives that our current infrastructure can handle 300.000 new customers easily. (We're at 90 ATM).
Mfw I'm the techie in the room and aware of our non-scaling mysql DB. -
My dad: "Oh yeah, JavaScript, Java, I know that stuff! You know the Mars Rover is actually using JavaScript?"
Me: "Oh is it now?"
Dad: "Yeah lots of things use Java"
Me: "You mean JavaScript?"
Dad: "Yeah Java, JavaScript, you know like building website forms"
Me:" Yeah I know, yeah, I, know... -_-"6 -
Took me an hour and a half to realize why my function wasn’t returning anything that made sense.
Forgot to put a negative sign in front of my negative bound.
Took me an additional hour and a half to solve for all the edge cases.
Relatedly, I should learn to sleep more.
Also, kind of proud of my notes application, but the tables go all funky in mobile and my CSS wizardry is .... not even amateurish.
I am so tired, I literally almost *signed* this.3 -
! related
So there is this girl in my office from different team. We only talked over emails couple of times. I never got courage to go and talk to her in person. Sometimes I found her looking at me (** i guess**), sometimes she catches me looking at her. Smiles gets exchanged and that's it.
Didn't see her for 2-3 days. Checked in portal, turns out she left company. I'm feeling super bad right now. I can't focus on anything since this afternoon. I know this is not the place to share it, but I don't have anywhere else to share this...
Faaaakkkkkkkkk
Faaaccccckkkkkkkkkkkkkk
I could've tried...
My shyness kills me more than anything else in this world.😞16 -
Don't use tables!!! Tables are bad MKAY??
said the designer that needs to tripple wrap links to render them as buttons...
3...
2...
1...
Facepalm.init()7 -
Man it always feels like i know nothing. Like when you don't know HTML it feels like you know nothing .
Then you learn js, backend, some database.
But you don't know react so fuck you you know nothing.
Then you learn react, but you don't know vite, next
So you know nothing.
this cycle never ends
FUCK8 -
When some other team wants to blame us because they're getting a HTTP Status Code 0....
That's not even a valid status... IT MEANS YOU ABORTED THE REQUEST AND KILLED THE CONNECTION...
OH STILL OUR FAULT... WELL DO U KNOW ABOUT NETWORK ISSUES AND SERVER OVERLOADING WHEN U SPAM IT WITH TOO MANY REQUESTS?
OH YOU RETRIED? HOW DID YOU RETRY? BETTER NOT BE SPAMMING US WITH MORE REQUESTS...
EVER HEARD OF TCP/IP BACK OFF LOGIC....4 -
When your Boss openly refers to projects as Micro-sites to the client, devaluing the scope of work, and being completely unaware of the actual scope of work, which is essentially a twitch platform, to be built on wordpress, with integration to Power Point Dock, and a live chat queue5
-
Failed my Triplebyte interview because even though they claim they are testing for "general programming knowledge" basically everything had to do with web front-end and back-end.
Yay.2 -
Note to self: if you have a tight deadline and need to rush a website / web app, use SASS because you're going to end up with 800+ lines of CSS because you suck at your job and you keep telling yourself you'll refactor everything but never get around it.
-
I had the oppertunity to join a non profit organization to help them automate stuff instead of serving the army. One of their core applications got rewritten like a year ago from a terrible and very old Symfony stack to Laravel / React.
The guys who were in charge for the rewrite didn't really adapt the mindset of either MVC for Laravel nor the component idea behind React. There are a few controllers in the backend, but they sometimes have functions defined which would clearly belong in a model or service class. They rarely defined relationships on models, instead they're joining the tables together for the same effect. The frontend rendering mostly happens in for loops over the returned array from the API instead of breaking things down into little components. This ends in components which have sometimes over 1000 lines with super-nested logic in it.
But I did find my favorite piece of code today in of the controllers. Some many questions ...6 -
I love working doing tasks like moving boxes.
Move 10 boxes from point A to point B. Simple, you know what to do. and you know when you are finished.
I Hate tasks such as: Change this Icon to other icon. (C++) Because it takes me 3 fucking hours to find in code where the fuck this happens! And every time my first instinct when I don't know something is go to the internet and search for it. But in this case I CaN't!.
Wife: asking why I'm browsing the internet looking at memes.
Because I Don't Know where the fuck I need to be to finish my task! And I am stuck in this repeating loop of searching in code, looking at memes and being ashamed of myself that I did not this fucking simple task in like 10 minutes.
And after 3 hours of doing basically NOTHING. I don't dare to ask a colleague about everything.
Please send help....4 -
I visit devrant to be more clever in life. Sad. I know. And I know 99.9 percent of the people I know won't care.1
-
*Opens IDE*
My brain: oh right! This is that thing that you do to try and convince yourself that coding something will make you feel good about yourself, one day buddy, one day...
Also me: welll... Thanks for the confidence brain *said as I pound down the sixth beer*1 -
Recently I tried implementing a 2d grid you could drag (for performance I decided it would auto genetate new grid tiles)
Gotta say, I have a lot more respect for people who try to build this without a framework, I am building it using JavaScript and pixi.js
But man, drawing graphics is hard 😅
It's worth it though, performance is mad 💪3 -
Whichever fucking cunt at Wordpress came up with that filthy Walker class and how a navigation item tree should be traversed, shall be hanged to death.
How fucking brainless can one be to create such a complete pile of donkey turds?!
No wonder Wordpress itself makes no sense at all nor has it any connection to any intelligent lifeform whatsoever.
Edit: This rant does not even closely show how high my fucking rage-level is!2 -
Yes, come tell me there's a user experiencing an issue, but you don't know on which page or exactly what it was. I'll fix that right away.2
-
time management and programming belong in the same realm
like i code at 9am then i take a sip of coffee, and then its 12am -
!rant
I went out tonight. Before I knew it, all the songs being played were far beyond my youth, and I'm now sitting outside smoking cigarettes. Is this normal adulthood?2 -
Is it weird to try to find the perfect girl by writing a script that finds out what person has most in common with me by searching through all fb / instagram pages I follow and tracking a score for all the other people that follow the same pages?12
-
Honestly if another person complains about how Java and JavaScript are not the same at all I'm gunna be mad2
-
I can follow and am fine with the Vue documentation. I go crazy when I read online tutorials. I don't know webpack. I don't know ES6. I don't know nodejs. Arrghhh.
It is like all of a sudden I'm thrown into an English speaking courtroom as a lawyer or into a bunch of Brits. -
Maybe it's just cause I fucking hate the elitism in the engineering college and every engineer I've met, but why do devs want to be called engineers? I'm a programmer, a developer, a coder, fucking anything rather than an engineer.
I associate that word with know-nothing "book-smart" fuckwads who think they're better than everyone, even someone doing the same thing without their useless degree.7 -
I spent the whole day documenting a framework I recently built for my team so they would know how to use it.5
-
Hey guys and girls,
follow up rant on my apprenticeship situation. I talked to Jo (my trainer). I told him I need more supervision and either someone who teaches me the stuff I need to know to meet the requirements from Hugo (my department mananger) or some further education. Because otherwise I'm not able to write producion ready code. (Keep in mind: I'm a fucking trainee who started their apprenticeship 6 months ago!)
Jo is more than happy to help me and make sure I'll get everything i need. Sadly he has to speak with Hugo and get his ok.
Hugo thinks 2 das of school/week is enough training. (Regardless of the fact that we don't even learn the same languages there we use in our projects.) I told him that way I won't be able to finish my projects.
I hope he reconsiders. How should I learn if nobody's there to teach me? (My collegues are to occupied fixing bugs and implementing new features/ don't know the languages either.)
If Hugo keeps this mindset I have to contact the IHK (a german institution which keeps an eye on apprenticeships).5 -
> uses two workstations
> Forgets to commit code on one before moving to the other
> Works on the other and pushes
> Brain does what it's great at and forgets how to reset to HEAD
> Brain convinces me the only way to handle the issue was to commit my half-working code and then pull
It was only 5 o'clock. What the fuck. -
Random variation of how we learn based off a colleague.
1. I dont know what the fuck to do, i dont know what the fuck is going on
2. I don't know what the fuck to do, i know whats going on
3. I know whats going on, i know what to do
4. I know what to do, i dont know what the fuck is going on
Haha, i love my job, the place where devs play solitair with their Trello cards1 -
Bah! I am sure computers know when you are in a rush. Without fail my computer will run as fast as a snail riding backwards on a turtle every time I am in a rush!3
-
Back when I was doing my uni final year project. i was given the choice of either writing codes or writing documentation (graphs, requirement and a whole lot of other madeup bullshit)
I deicide go with coding, sign up with laracast. watch a whole lot of screen cast. and BOOM, coding is easy - I was literally quoting bombastic technical terms like many-to-many relationship to my group mates after 2 videos. (didn't even know what was bootstrap at that time) Thats was when I decide I wanna code for a living. Laravel made me a developer.1 -
Hey passwd, when I want my password to be short then I want it fucking short. Don't tell me that "f" is too weak and prevent the action. A mere warning would suffice. (And I now know that if run as root it doesn't check the password criteria. Still, the default is annoying.)
I needed a short password to workaround a weird frozen system issue on unlocking the keyring in the latest Ubuntu release. It would freeze completely while I was typing my password, and hence by making my password short, I was quicker than the freeze, and hence got a useable system again. -
I'll try to pay back some smaller credit by one large credit...
Hence I need to contact the banks and get one (!) fucking frigging stupid piece of paper which lists the account number and the amount of money I need to pay back.
Sounds simple ...
Well.
One bank just answered my email request by sending me that piece of paper. Except they didn't have any validation of my identity.
Yes. They answered the request of 'I want to pay back the credit in full, can u send me the necessary documents?' (more formal of course) with confidential data without any more credibility than my email address.
YAY.
Another bank requests a telephone call for identity validation and sending back a signed form via postal service...
Another bank just needs a PDF sent via mail with an electric signature (yeah. They were aware of what that means - I was shocked and confused) or a "qualified signature matching previous documents" (translated from German).
The last one offers a WhatsApp number - send a GIF / JPG or video and we answer directly.
I need to reach a higher state than drunk.
It's not funny to know how confidential data gets mistreated by companies who should have the highest security.4 -
Jeez, it can be done! Thank you CSS, i really thought it wasn't possible. My bacon is saved. (Overriding an inline style, javascript generated, from a linked style sheet).2
-
There is that meme "I've no idea what I'm doing" and there's the meme "it's fine *in a fire*". Currently I feel like a combination of those two. I'm in unexplored waters and nobody knows what's going on anyway, so I just make sure my part is technically correct according to specifications and when everything comes together I'm ready to respond to the expected disaster..
I tried to spread awareness of the coming disaster but nobody listens so I'll just wait and see what happens..1 -
So, my network security faculty thinks s/mime is secure multipurpose internet message encryption. And ssh is secure socket header.
Time to leave the class. 😭1 -
If you are a dream stealing cunt then kindly fuck off. I don't know you, I don't want to know you. Climb into whatever hole you came out of and just eat shit.
Nothing in this life raises my ire more than people who hate on others daring to dream. The haters don't add to society and are just stealing air.2 -
ya know you should take this online [language/field] course on Udemy...ya know you should take this online [language/field] course on Udemy...ya know you should take this online [language/field] course on Udemy...ya know you should take this online [language/field] course on Udemy...ya know you should take this online [language/field] course on Udemy...ya know you should take this online [language/field] course on Udemy...
This is why adblock exists
Edit: they must be contractually obligated to include the phrase "ya know..." In every ad7 -
Was going through my rants and started deleting ones that I thought were dumb. There were more than a handful. What I did *not* know was that your +1 status doesn't keep past +1's. If you delete a rant - those +1's go away...lol serves me right for posting sub par rants in the first place, dont you think? 😝2
-
I just copied the exact same code from another program into mine, actually left out a loop because I didn't need it. Also took some other stuff out, nothing much, just some var = othervar that I didn't need.
The other program, from where I copied the code, works fine, is fast, I see no issue, has been in production for a while now and no complaints. Mine, WITH THE SAME CODE, doesn't move. I don't understand how this is possible.21 -
I recently celebrated a rather significant birthday and it got me to thinking what's changed about me over the years.
Young me: Feared that I wasn't a supremely talented software developer and completely insecure about it.
Older me: I know I'm not a supremely talented software developer... and that's ok.1 -
How often do you use design patterns and which one most?
Please add your language in which you use them.7 -
People completing Stanford + Andrew Ng's course and bragging how they know machine learning in and out while having no idea how to code simplest application using the simplest libraries.3
-
Hey guys,
Based on some recent posts about automating repetitive tasks, I was wondering, what are some tasks that you have automated?
In my case, I guess it's not really automating, but I made my work simpler by creating a bunch of bash alias that take care of frequently occurring bugs or small tasks like fetching all git repos in a directory.10 -
Wait, how did I only just find out you can use the space bar on a mobile to move the cursor?
https://cnet.com/google-amp/news/...3 -
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?? 😥
-
Is it just me that think it's hilarious that 'devops' autocorrects to Devils – with a capital D an all?
-
Is there a good technical reason to not allow passwords to contain special characters? My isp does this and I need to know why.10
-
Assume other people know what they are doing. Since I don't know what I'm doing, why would they know what they are doing?
-
when you have coded the sun the moon and the stars. but the motherfucker still wants a universe engraved on a fucking ice cube. AND YOU'LL DO IT ANYWAY. CAUSE YOUR HIS FUCKING BITCH. YOU GUCKING GUCK!2
-
Final year of my diploma in Information Tech, I overhear a coursemate, well-known know-it-all, explaining what Javascript is:
"It's somewhat like Java but it's used for scripting purposes."
I swear to the Lord Almighty, I wish I could drive my palm through my face.1 -
- participate in more exciting projects
- be more mindful about the time and mental resources I put in my projects
- find out what kind of dev I want to be -
Everyone out here talking about Arch and the setup process. My first experience with Linux was with Slackware Linux. Zero dependency resolution.. Holy shit what a ride that was for my first foray.1
-
Friendly reminder that if you disable remote content in your email client, the feature that almost every email client allows, there will be NO WAY for all those bloody spammer corporations to know that you even opened the email. I also prefer my emails with no graphics, I find them more beautiful that way.3
-
Me 🤗"Since you know the domain far better than me, can I ask you to help me understand if I managed to cover all the edge cases with these UNIT TESTS?
😒" no no no, you don't need to check for those cases, you already do that in your code"
🤗 "I'm sorry, I must have explained myself badly. I have written these UNIT TESTS exactly to ... TEST if those CHECKS in my code work and what I need is you to tell me if there are additional cases ..."
😫"but you don't need to!!! You already have that logic in your code"
😐😵☠ 🦍💊🔫🔪"you know what? I'm gonna give them a second look. Thanks"
And then I moonwalked out of the room -
People that contact me through LinkedIn trying to sell me some marketing shit or asking me about some issue with the service provided by a company that I started but with which I don't have any relation whatsoever since October 2016, which by the way is pretty clearly stated in my LinkedIn profile,…
DON'T YOU KNOW HOW TO FUCKING READ??? Stop pestering me about that company. I don't have anything to do with it, I can't do anything about it and, even if I could, I DON'T FUCKING WANT TO.1 -
Someone >_>: My code works and I know why
Someone else >_>: My code works and I don't know why
Me >_>: My code doesn't work and I don't know why2 -
"I know HTML5 and CSS3"
Is it anyone else's experience that when people claim to know HTML[5] and CSS[3] they usually know neither HTML nor CSS well enough to be of any use?
Myself, I know HTML4.01Transitional//EN11 -
Functional Programming Class, an assignment it's that we should develop a calculator, creating our own basic functions (addition implementation with a half-adder and string manipulation).
Teacher tolds us that it has to be coded in Haskell and for the GUI we can use whatever we want, then this fucktard comes around and speaks like he knows everything
Him: Oh, yeah we will use IntelliJ to link the Haskell code with a GUI, because IntelliJ supports Haskell
Me: But IntelliJ it's a(damn) IDE, you still need to code the GUI.
Him: But IntelliJ supports Haskell, we will use it to build the GUI.
Me: Yet what you're trying to say it's that you will use Java to create the GUI and call from there Haskell, and that you will use IntelloJ forms to create the UI
Him: No, no, we're not using Java, we will use IntelliJ, are you dumb? Don't you know what's IntelliJ for?
*Fucking facepalm*
I don't know but at this point I'm not feeling proud that THIS kind of retards are going to graduate in this year...3 -
Somehow further back on this ticket than when I started. How does that even happen?
I went from okay I can replicate the issue and trying to fix it to now the data I need to replicate it won't even load. WTF?
I don't know
Senior doesn't know
Our boss doesn't know
3 seperate QAs don't know
Boss of QA doesn't know3 -
!rant
Just need a job where i have to travel a lot, meet new cultures, new people, try everything new8 -
a nice feeling being complimented for the effort and frontend. but it is still a pity i am the only one appreciating my tidy, efficient and scalable backend too.1
-
The only difference between a beginner dev and a veteran dev is that the beginner is afraid to touch what he doesn't know, while the veteran embraces it.
Accept that you don't know all and will never know everything. Even so, learn something new everyday. Fight your ego when it tries to make you keep only what you know and reject everything else. Fight that bastard.
The world needs less "I know", and more "I wanna know". And remember, devs should be in the "I wanna know" team.
sudo rm - rf ego
sudo apt-get knowledge-upgrade -
Personally I like to use very obscene phrases as passwords, just in case some saves it in text.
When they read the "dump file" maybe they will be like well we will not be fucking with this one, that person is just sick.1 -
I don't know if I can be developer anymore. After I went to high school (one of the best in Poland) everything seems to collapse. My grades are poor. Especially on math and physics, but surprisingly everything Computer Science related is better than average. I also know how to code and I don't struggle with math used while programming. Heck, I even made my first game at the age of 10 in Visual Basic. I just love programming, computer science, etc, but after I went to high school I just don't know anymore...5
-
!rant.. When the client makes you do something stupid, and you try to tell them, but they still want it, so you give it to them, and weeks later, they come back asking you to revert it.... ugh!!
I wanna comment on the jira "I hate to say I told you so, but I told you so!!!" so bad..6 -
React Native testing is hair pulling.
Every test needs to have 100 different mocks in place and there are: 3 different methods to mock a function (mock, mockImplementation, and fn), 3 different types of query methods to get elements (get, find, and query), and 5 different selectors to query on (accessibility label, testId, accessibility hint, accessibility value, etc.)
And after reading all this, being diligent and learning the difference between stupid, synonymously-named functions which have wildly different side effects like "getByA11yHint" and "findByA11yHint" (ugh...), after all that, you write out a test with all the appropriate mocks and you want to do something simple and it beats you up all over again.
Button enabled or button disabled. Simple right? Logically the former is "expect(elem).toBeEnabled()" and the latter is "expect(elem).not.toBeEnabled()", right?
Wrong! You're an imbecile. Your tests will fail and never tell you that ".not.toBeEnabled()" and ".toBeDisabled()" don't do the same thing even though they look and sound exactly the same. Only the latter will work. The former makes all your tests fail. Where is this written in the docs? Nowhere?! Great!
👌😄🔫3 -
Hmm... Why does name look so familiar...
Ohhh mind flash... Looks at notepad file with my commonly used commands to confirm:
tar -xvzf ...3 -
There was a project I took over that was supposed to be at 90% when the previous developer quit. The project was in QA with some "minor" bugs that needed to be fixed. When I looked at the minor bugs I realized that the project had major underlying data issues. So after working 80 hour weeks I managed to hobble it together and make the release date.
That was a little over three years ago. Since then another developer has taken over maintenance and enhancements on the product and overall the application works pretty well for what it is.
So his analogy is, that the application is a tank that was made out of aluminum foil that has been hit many times in battle. Whenever it has been hit we have patched the tank with random things like bricks, soda bottles, and old car doors yet somehow it keeps going. The tank is still surviving the war but we really don't know how.
🐜 -
Damn you OVH... You and your goddamn deals again... Now I ended up buying 2 domains for a project again. We all know I'll leave the domain in my cloudflare "keychain" without using it until it expires, because I'll find a fancier and more fun project 😅
I'm at 12 domains right now... I think I might be addicted 🤔
Btw, theres a sick deal going on over at OVH, .com is only 1,20€... Better get your project domain which you'll probably never use again now 😂4 -
Wow, I feel like idiot.
I struggled making documentation becouse I didn't know proper tools.
I sometimes used markdown but it was for internal git pages when I did, other times I just was doing crap within html (and I hate frontend and Dubba cannot frontend and its generally bad idea to give me html)
Than I had random talk with someone on the internet and he was suprised I never used (and known) markdown to html and I was more like "thats genius, why the fuck I didnt know its a thing".
goddamint...3 -
I wish senior people would just admit if they don't know something or are unsure. I hate spending time implementing a feature and spending more time troubleshooting it only to ask for help and be questioned why I'm "doing it like that" in the first place...
YOU TOLD ME THIS IS HOW IT IS DONE!!!1 -
So because @QuanticoCEO said devs should go deep and learn low level.
How many years did it take you until you thought you'd be/you're a good senior developer?
I think I learned a lot but I also think it's just a fraction of how much I'd have to learn to understand the bigger picture.
And do you have any recommandations on material which made you go "OHHHHHHH"?
(My new discovery was the YT-channel of "thechernoproject" who made me rethink some things)3 -
"As we know,
There are known knowns.
There are things we know we know.
We also know
There are known unknowns.
That is to say
We know there are some things
We do not know.
But there are also unknown unknowns,
The ones we don’t know
We don’t know. " - Donald Rumsfeld2 -
<long post>
To start of I'm a student in the Netherlands, I have just finished finished a support management study and I'm currently starting with a IT Management study on MBO 4 lvl.
At the moment I'm in conflict scout doing the IT Management study or doing a application development study as I just don't know what to do. I kind of want do development as I do it in my free time and I like it but I also want to do data center engineering as I also like to work with the hardware.
Should I take a month break of my study and try to get in contact with company's to work there to finalize my decision or should I just drop in the towel and do this study without knowing if I'm going to like it in the end.
And if you work at a company in the Netherlands do you think i can do some orientation internship at your company or do you guys know some places to look at.
</Long post>6 -
Don't know how many people installed Android p but I now never close apps because it's addicting to use the slider to switch between them.4
-
Well this is epic... The GitHub acquisition is so big, my dad just emailed an article to me about it...
He's a Dev but he's not usually up to date on tech news...
I'm sorta confused, I see a lot of about in Algo about this but didn't we know already like 2 days ago? -
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
-
I’ve been doing web development and mostly focusing on the frontend side of things professionally for almost 10 years. Still, I have to put up with some backend developer who did a couple of years of frontend development who now thinks he knows it all. Everytime someone reports a UX problem or asks for a feature that has some complexity and needs more thought to have a good enough solution, he steps out of his lane with “suggestions” on how to get it done with solutions that are half baked and don’t consider things like accessibility, responsiveness, or even semantics. Still, he is the hero and we’re the bad guys when we call him out for only providing crappy solutions and presenting them as complete solutions.
-
In our company, "UAT".
We using staging environment and most of the data is either missing or corrupt. They don't refresh the data, saying it can impose some security issue.
How the hell are we supposed to complete UAT when there's no data that's in production!!!! -
Anyone watch the Viv demo at TechCrunch disrupt? It looks amazing. I can't wait till AIs are more usable1
-
PM: We need to add "Under Contract" banners dynamically to listings on xyz.com
Me: No problem
[ ... a few minutes later ... ]
Me: xyz.com has been updated. Check out the listings and let me know if anything is out of place.
PM: The updates you made look great! How does this scale (in the most basic sense of the word; i.e. in the viewport) on abc.com.
Me: ? òįÓ ? ... that's a completely different site ... why would it affect it if you didn't ask for it. -
Alright, I got a question: as a beginner, how so you identify that when something goes wrong with a product, that it was your fault? My boss just Slacked me that one of the websites we're working on has a problem where the buyers can't place an order because I allegedly used the wrong database table. Which I don't remember doing. But maybe I did.8
-
My co-worker X and I worked late nights for a project every single day including weekends, and our fucking senior manager invites X to his party and not me. Seriously.. does he even know I'm in the same fucking team?.
I mean yeah X did a great job working hard and shit.. but so did I.
I really hate my manager.
Fuck Him..6 -
after having to deal with a lot of weird "rewrites" and "refactorings" by co-workers i started to add this comment into the head of my sourcefiles:
You may think you know what the following code does.
But you dont. Trust me.
Fiddle with it, and youll spend many sleepless nights cursing the moment you thought youd be clever enough to "optimize" the code below. Now close this file and go play with something else.
Found this somewhere on the interwebs and since i use it the "refactorings" and "optimizations" of my code stopped nearly completely -
So some of the C++ guys I deal with have this thing in their mind that they know all the other languages cause they're similar right, and they argue that it doesn't work vice versa.You know Java, you don't know c++
Simple advice to people out there who meet such people is to just ask them to make a Java program with the goto command
Little know it all freaks.11 -
Have you ever considered switching to IT support/help desk?
I mean, sometimes I try to analyze my own situation from a 3rd person perspective and I realize I could have a pretty much stressless job with still enough money to live a normal life.
I have a BSc and MSc(soon to have) in CS, with focus on AI/ML. I've always been a geek with a problem solving attitude, that's why I got into computers in the first place. And now I'm pondering if I should just try an IT Support position, it's the kind of things I used to do as a teenager when a classmate had a network/computer problem, it doesn't even feel like a job to me. I could call it a day, get home at 5/6pm, and spend time on my personal projects (software, infosec) with a fresh mind, going to bed (and sleep) knowing that the next day would be a nice one. No clients wanting a new feature that you gotta implement and push on a production server friday afternoon because your ceo(who is also a pseudo proj manager) just said:"Yes, we can", while you watch the technical debt rising like amazon's stocks.
Maybe this is just the burnout talking, I don't know. Maybe I should just try being a software engineer outside of Uni in the first place, and only then start pondering.
Maybe a sysadmin position...
Have a nice day12 -
When deal with webpack,
I know what I'm doing,
because I know "I know what I'm doing" is my imagination.🤦♂️ -
So it me again and loviing my life at this tech startup..... i feel like I'm actually achieving something thogh at a slow pace
I know i can give out more to this startup.....but there is this 1 manager in our technical department......FUCK the old man thinks he knows everything and so damn arrogant.... at one time he made a fucking simple error which was fucking obvius but the man you cant tell him anything
if anything goes wrong or if anything isnt working the FUCKING old man is quick to throw the blame on people which i feel isnt supposed to be a mind set of some1 in the technical department..... I get it yes sometimes it will be the person making errors but even when you do it right and its not coming out as its supposed to be the damn OLD FUCKING MAN says you are doing it wrong.....then he steps in and bang....it fels and he'll be like "WHAT? HOW WHATS GOING ON...."
and me silently will be like MAKE IT WORK FUCKING OLD GENIUS
I cant even bring in new ideas and systems into the company......hell be like WE ALREADY HAVE SYSTEMS IN PLACE.... guess what..... no fucking system is being used -
ok, i'm losing my mind...
didn't aws credentials used to need to be in .aws/config????
and now its .aws/credentials??? wtfffffffff3 -
About to go on crunch to release a feature that is late. I have my own blame to put on it, as I wasted a lot of time, but goddamn.
Every time I said we'd need to take time to test for corner cases and check for errors here and there, my boss told me I need not worry about it, it's just an MVP. Then the marketing people see the feature half-ready and start suggesting their own changes. Then the idea of the project is refined and changed, a new subfeature is added, new backend business logic is added, right as I'm about to finish the original core features. They have the full product in their heads and are already selling it to people while I'm still catching up with quite a significant number of tasks. Now I have to crunch to launch tomorrow morning.
I do mainly the backend parts, but while a frontend guy who knows his CSS does components and pages, I'm the one to figure out pretty much all logic, and how to stitch said components and pages together and how to make the frontend interact with the backend. I'm supposed to do this whole thing and also deploy it all. Hell yeah.2 -
Didn't know maps api integration...
Didn't know markers allocation..
Didn't know geolocation..
JavaScript llbit..
Still implemented...
Love you google..stackoverflow..:-p -
looking to learn a new language. I'm looking for something that can run on mobile platforms, c# maybe for cross platform capability ? not sure , any suggestions ?7
-
I want to build a program for my projects and generally to organize my different work/hobby related things.
I want to do this in a language I'd have to learn, so far I only know how to write in Bash, Python and JS(Node).
I do however, have some experience with the fundamentals of programming and are very comfortable with data structures.
So far, I've looked at using C or Rust, does anyone have some suggestions? (I've also looked at Electron but it seems too easy for this project)
The current overview of my thoughts for the application:
- Be secure
- Have a UI for visualizing projects
- Hopefully cross-platform (but I only need linux)
- Optimized for speed -
Job Interview for a vba/c# job. I'm a Web Frontend Dev normally so kinda strange when they found out I had nearly no experience (job hunter didn't tell them....)
Well he told me that he considers hiring me as a junior junior.
Should I say yes if I get the job?4 -
Someone told me I needed to get my terms straight and that Angular 1.5 is 'Angular js' and that Angular 2 is 'Angular.' I wonder when they decided that? An hour ago? Man, I'm so behind the times.4
-
!Rant
Does people add in @dfox and @trogus so that they can point out that it isn't a feature yet when/if they see the rant2 -
"Good job coworker X for making a hotfix, that fixed crashes".
I don't get it. Poor code, no tests, bad QA and at the end of the day people get praised for fixing the crash. Cool, I guess I know how you get promoted.6 -
When someone accidentally does a typo and you don't know if it is a typo or another shortcut for word(don't know how it is called) that you don't know...1
-
When your boss has you learn a new language but then doesn't listen to any of your input concern this language and acts like they know the language as well....which they don't
-
I just want to find out how single code that isn't changed can work but after that don't... :/ Hate that
-
Saw github trend is everything you know about x. I am going to create one called everything you know everything you know
-
I don't know much programming languages. I know some but I am not good at them. Going through the post here I came to know about VCS and git. I learned it, now I know git however I have nothing to implement that knowledge on as I know very few language.2
-
So I've just updated a chrome extension on an android tablet, with regex from my bed, also got said chrome extension running on said tablet...
Technology is getting good -
When you get co-workers that rant all the time.. They say they know everything but can't seem to do anything right. Can we just relax and have fun at work.
-
Who do you use for IBM stack training?
Need Infosphere Data Stage, Quality Stage, and Information Governance.