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 - "just code"
-
I just can’t imagine it.
( ._.) “Hey dude, I code. Do you?”
(.-. ) “Same”
( ._.) “Friends?”
(.-. ) “Friends”125 -
80% of coding is just staring at the code thinking about how to implement a particular feature into the code...6
-
Debugging someone else's code and having the thought: "Am I better off just writing the code again from the start?!"6
-
Designer: The design is done and approved by you. Set the launch date. We just need to put some code behind it and the shop project is finished.
After the meeting the programmers heard what the designer said to the customer in the meeting.
Programmer: *facepalm*
PM: *facepalm*6 -
Don't mind me, just writing maintainable, legible, commented and documented code. What's that, an email validation? Let me just
/^(([^<>()\[\]\.,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i11 -
Please for the love of god name your variables in a sensible way! How the FUCK am I supposed to read your shitcode if you decide to write 6 (!!!) nested loops with variables each named by exactly one character. With no comments whatsoever!
I would rather crack password hashes than this nonsense.13 -
Shouldn't be necessary if you just write understandable code xD..... Some people just write stories in between 2 lines of code....15
-
If I had a dollar every time a non software engineer used the word "just" in a sentence...
"Just" convert this Matlab code to C++
"Just" make it faster
"Just" have it done in a week8 -
How to fix an error?
Just comment out the code in the actual framework which throws the error, than fixing your code.😂😂4 -
Code isn't just something that you can just learn in three months. Stop the clickbait articles plz.6
-
My VS Code extension just got 100 downloads! It just makes me so happy to know that people like what I've made. ☺️3
-
Friend: Hey can you check my code, can't seen to find this one error, and i have been trying for hours now.
Me: Just one error?
Friend: Ya, just one. And it i am not in a hurry, check it whenever you can.
Me: *understanding the pain of not finding that one fucking error*
Cool, just send me the code i ll check it tonight.
Later that night i check the code, debugg that error, shit ton of more error pop up.
Me: Well i have solved the one error, now i can just hand over the rest of the code to the guy so he can take care of the rest, its not like i am responsible or aything. HOWEVER, maybe i can solve few more, just for fun, i can't just let this code get the better of me.
*ends up clearing all the error after a lomg night*4 -
Im kind of a backend guy now
client says I have the "view" of website, and backend code. just plug the view to the backend...
Sends .jpg files an tells me "oh, its just photoshop yet. can you quickly pull the frontend code from it?" 😑6 -
3 off the most dreadful things to do as a developer
1) Documentation
2) Testing (Multiple device/browser)
3) Wearing formal clothes7 -
Me today at class, doing a group work, while suddenly I saw my colleague’s code looking very odd.
Me : “Why is your code like that?”
Her : “Like what?”
Me : “Its not spaced correctly... look its way over there”
Her : “Oh well, I just like it like that, its my style”
Me “...”
And im just like, if she post her code at SO, she wouldve been eaten alive...22 -
This just makes me mad every time.
I have a friend who asks for help in coding and just reads and copies my whole code, doesn't even understand what's going on and just copies the whole damn thing (the variable names too). Also, says I don't know how to do it properly because I indent the code and he wants it all in a single line.
If there is any error in the code, just tells me that there is a problem and does nothing and keeps nagging me if I solved the problem every 2 minutes.
Once I solve the problem, just copies the stuff again and then brags to others about the code and takes all the credit.
After bragging, if someone asks him for help he just tried to match the code line by line and worry by word. And tells them their code is wrong if they are using a different method of solving the problem and asks them to do it like him.
Being an introvert, I don't go shoving my stuff in others faces and criticising their code.
But the professor knows I am good, so that works for me. :)17 -
Cutting corners just creates two new corners.
Likewise, cutting corners in code just creates more bugs.3 -
Shit code. I've done it, you've done it, we've all done it. Just keep working hard and improving. Eventually, you'll be writing better... shit code.4
-
Just found this while trying to understand some code:
```
bool ok = true;
if(ok) {
// lots of code here
} else {
// even more code here
}
```
I thought this was worth my first rant...6 -
Just tested my GPU code vs my non-GPU code.
Its a simple game of life implementation. My test is on a 80 x 40 grid running for 100,000 cycles.
The normal code took 117 seconds.
The CUDA code took 2 seconds.
Holy fuck this is terrifying.3 -
An open letter to those who think lines of code == a decent metric for productivity:
NO!!!
Just because I wrote 10 lines of code all day (yes just 10 very well thought out, many times rewritten) lines doesn't mean my day was unproductive. Quite the opposite, while other devs pad their shit with:
//Adds 1 to I
I++;
Yup. Quality code. LOC doesn't lie.10 -
Me @ people having code trouble : haha, relax! It's not the code's fault nor computers, it just does what you tell it to.
Me @ code giving me trouble : I fucking know code has ancestry and you bring dishonor to yours, fucknuckle.2 -
The code im writing is so ugly that i am tempted to pay for github pro, just so i can hide it from society :D
I never thought that not coding for six months could do this much damage9 -
Refactoring someone else's code (the dude's a senior).
I'm a junior, just updated my linkedin, burnout activated, I can't deal with this kind of shit no more.
Outro: this is the nicest piece of code from him, every other line of code just .... just.... D:14 -
Team member just requested a code review in French (s'il vous plaît)
Yea, I'm not reviewing your code you pretentious prick5 -
Sometimes when I can't find an error, I just rewrite the problematic code. Often I end up solving the error and having cleaner code. Win win.3
-
The CI just errored out with no explanation.
Like nothing...
Just code 127 on bash...
I think the CI hates me5 -
There is clean code. There's spaghetti code. And I just discovered there's spaghetti after being thrown up code.8
-
All I've been doing at work last few days is code review. Damn, I feel bored. Just give me something to code already!3
-
Code it in binary
(My friend claims to code in binary, is this an actually applicable thing or just a novelty thing to impress people?)17 -
Just found this HTTP response.
Status Code:
200 - OK
Body:
{
status: "success",
response:
{
status: "error",
}
}13 -
Biggest sin is writing code without taking into account clean coding and just doing what ever is necessary to make the code work6
-
!rant
Just wrote my first piece of code using neural networks. Even explaining it to people is fun: "So you wrote a program that writes code?" "Exactly!"3 -
When you get stuck on a problem and you just stare at your code until you don't see any code.
You only see the woman in the red dress....1 -
!rant
just wanted to share with you guys,
instead of spending 1hr writing shitty code to fix a bug quickly, i just spent tha last 10 fucking hours and finally fixed it
I'M FUCKING PROUD OF MY CODE, IT BELONGS TO A MUSEUM8 -
Forgot my laptop charger in the hotel, flight leaves in 10 minutes, and my computer is at 2% battery life.
I just need to build this code and push! Will the code be pushed in time? Stay tuned to find out!!
... nah jk it just died. 😧 -
Serverless!! because its just too much hassle to manage a shitload of servers when you can just sit back and write code!3
-
Just taken over a project from a "high end" London agency to find their code is just poorly copy/pasted examples from the WordPress codex.2
-
I've just read my code from project finished 16 month ago. Let's just say that was an eyes opening experience.1
-
What do you do on days when you are just lost ? When you just don't find any motivation to code ?15
-
The fact that there are code editor apps for android just changed my life. Now I can buy a small bluetooth keyboard and code on the go.5
-
Code is not the only thing I do. Sad but true.
Sure, sometimes I just want to scream "JUST LET ME CODE", but internal hackathons and PO 1-on-1s make me feel like there's a meaning beyond my 34 open tabs.2 -
I guess this happens to everyone but damn, hate it when dreaming about code, and not just any code, but the code your enthusiastic about, somehow everything seems to work, so that when you wake up and sit in front of the computer you just go blank... what was that code again, it was so sleek, so simple, yet so robust...
12 hours later dream about it again to wake up realizing you wont ever be able to wake up remembering the code in the detail...1 -
The feeling when you just want to code code code but you have tons of other work 😥
Wish I could just program those tasks (laundry, dogwalk etc.)
Might as well build a robot, uh?!1 -
I have been trying to understand why my student's code isn't working just to find this piece of code. Checking out code early in the morning is definitely not my thing.3
-
We actually had a small "code on paper" test (more like a recap test) yesterday, but we didn't have to write much rather than just have a basic understanding how classes and instances of those work. It was like 6 small lines of code to insert. I don't mind coding on paper as long as you don't have to write a big program with it as a 1-hour test.2
-
Every time I read some code of the rust standard libraries or code of other popular rust crates, I feel ashamed of the code I produce ... their level of documentation is just outstanding, mine is ... hardly existing?
Guess a rant about myself :D -
Dear fucking good why must I code in VBA in 2017 when there's a perfectly good (and better) alternative?!
I'm considering just porting the fucking code and hang it off.6 -
I've got a confession to make. I.. I just love hand-obfuscating JS-Code. Not because, i would prefer working with obfuscated code.. I just find it extremely satisfying watching the code shrink and being the only one being able to understand it..
It's out. I feel better now.4 -
Freaking love it when devs from other teams work on you code base and implement components you already have ... Don't talk to each other, just submit your awsome code and leave a mess behind. But OK ... Just a simple click on Pull Request -> Denied!1
-
When i think
I cant fuckin do shit right
When i just code without thinking
I fuckin code it right
Fucc oyu4 -
just saw a production level code, all the fucking variables in the code are in capital letters🤪😵😵😵2
-
When I just spent 45 minutes ripping my code apart clueless why something so simple won't work, just to find out that the problem is spelling event.keyCode as event.keycode.. maybe don't code while tired at 1am rookie. Complete moron over here5
-
So after joining devRant I discovered that some people have an issue with people touching "their code"...
This hasn't been a problem anywhere I've ever worked, with any person (that I know of).
Is this a vocal minority, or have I somehow avoided this subset of people through sheer luck?5 -
*Opens tutorial video*
Ok, today we are going to create x using x and we are going to use code::blocks as our ide
*Closes tutorial video and continues searching*
Anyone else just have an indescribable hate for code::blocks or just me?9 -
i have exam in less than 12 hours but i am just trying to type LOL in Morse code.
https://lcwo.net/transmit
NO its not Morse code exam :( -
So I've been just assigned a code review. For a complete new feature.
It's over 20k lines of Code.
Time to quit -
Actual production code:
while(1):
//A few lines of code here with a conditional break.
while(1):
//More code.
Have you ever just had nested infinite loops...4 -
Protip: proposing a "simple yet beautiful" login form on Bootsnip with absolutely no knowledge of Bootstrap whatsoever, making it not responsive and centering it with hardwritten margins (such as: 'margin-left: 170px'), AND THEN proudly display "theme developed by WhoGives AShit" at the bottom won't make you any publicity at best. At worst, I'm gonna travel to India and won't leave before I erased the code you wrote by smashing your face on the "erase" key.1
-
I'm so happy that I have the first working version of the program. Just couple of bug fixing and unit testing and I'll push the code to production.
Day 1: Just couple of bug fixing and unit testing and I'll push the code to production.
Day 2: Just couple of bug fixing and unit testing and I'll push the code to production.
.........
Day 200: Just couple of bug fixing and unit testing and I'll push the code to production.
😞 -
I just went through a node.js code for ChatBot. The person was excited and said, he can train the bot and AI blah blah. Well, I then just smiled seeing the "Switch Statements" in the code.1
-
Programmers after Writing some successful code be like:-
"Chill, chill just chill"
When that code went into Testing phase:-
"Where are you now? Under the sea.. Under the sea..."1 -
Just got to experience this classic (again):
99 little bugs in the code, take one down, patch it around, 127 little bugs in the code... -
Goddamit now that school's started I don't have time to code any more. Why can't I just not do school and code all day gahhhhhhhhhhh5
-
Software development isn't just about code
Software development isn't just about code
Software development isn't just about code
Software development isn't just about code
Software development isn't just about code
Software development isn't just about code
Software development3 -
that BS thing you do when your too lazy to code and just copied a code from an existing class and renamed the vars even if it does not work or not being used just to show your boss that your working hard as f*2
-
Lesson of the day:
<If a section of your code keeps on bringing errors, just comment it. The code is likely to work./>4 -
PHP code that didn't use sanitize, but manually checked if strings contained ' or ". Not even in a function, but manually implemented whenever the person writing that burning dumpsterfire thought it was a good idea to check for that.
Code also didn't report, it just exited without error code. Users would just get a white screen if that spaghetti code "security" system got tripped. -
One of my colleagues just tried to deny a buggy code change was his on the grounds that the new code contains logging and he never uses logging.2
-
There are people who push code to GitHub and there are people who just fork your code on GitHub, and that's it. They don't do anything else with it.3
-
Just make a program that spits out random strings, run it as code and see if it compiles. If not, repeat. That way, just like the apes typewriter thing, you find the most amazing code that is so complicated, nobody would have thought of, but it solves all of humanities problems, especially the power problem you created by running this code 1000000000000000000000 times parallel.9
-
I'm writing c# code, does not work, wrote the same code in python just to see if I'm thinking the wrong way, nope, it worked in python then fixed the c# code...
I might be a c# racist or I don't know.2 -
I always try to break my code when it works without errors the first time.
Just to be sure that the code I wrote is being used.
Anyone else? -
Cappuccino, Espresso, Espresso Doppio, Latte Macchiato...
Oh just basically caffeine... Makes the code more shiny!1 -
When having to fix parts from an other programmer's code, do NOT concentrate on the small code expected to be wrong, instead read and understand the whole program around it!
Best practice:
1) Why is this code here
2) What does this code do
3) How does the code solve the problem
(just happened to me 😅) -
that moment when you code for two days just to find out that your manager asks you to refractor the whole code
-
The problem: callback hell. Code would be indented by three hundred fucking spaces just to do some async work. Your code would end with thirty lines of closing curly brackets
Solution: async and await.
The problem, reborn: NoSQL. Code is indented by three hundred fucking spaces just to run a query. Your query ends with thirty lines of closing curly brackets.4 -
FUUCCK! These two lines of code just cost me 6 hours of debugging... At least I learned I need to fix my Deserialization code too.
servicePassword: this.APIUsername,
serviceUser: this.APIPassword -
"Code monkey not say it out loud. Code monkey not crazy just proud."
-Jonathan Coulton
Regarding many of my rants and, I would suspect, many rants on here. -
I just love it when the management/project office make decisions regarding code language and frameworks and such... just ignore the devs with actual experience...4
-
Not commenting my code just to return 2 weeks later to wonder what kind of special asshole wrote the code. And what the heck it does.1
-
I just realized that I subconsciously believe more lines of code means slower code.
It's not intellectual. I understand that little lines of code often are just calling other code. That this is not how Big O works or does not replace benchmarking and that some data structure requires a lot of code for immense speed up. E.g: B-Trees with sizes at page size for big amounts of data read from a secondary storage location.
But still, when I see a function with just 3 to 5 lines, my inner monkey believes it must be fast.
Know your biases, I guess.3 -
Just wanted to work on some of the weekend ideas... I thought let's just install vs 2017... While installing I found out that I can't open any other vs... Not to worry, I thought, vs code may save the day...opened vs code... "Hey... There's new update... since it's normally very quick to update vs code lemme just install the update while vs 2017 is getting installed".. BAM!!! ... Vs Code update process got stuck for 20 mins..."Can I cancel the update? ".. BAM AGAIN!!! now vs code won't open.3
-
Reading code takes time!
Everytime I read:
"var" or "auto" Add: 10s
- Just use the type
Everytime I read:
if(Expression1 && Expression() ? GetNumber() : 0 > 0) Add: 30s
- Just write two if statements or create two bools the line above.
Everytime I read:
delegate = () => {} Add another 5 minutes of reading time.
- Just write a separate function for it. It helps with searching and understand what it does
Please code like the person that needs to check your code or change it just knows basic coding skills and logics.
I do know all these concepts I just never use them because it makes the code unreadable. hard to follow, mistakes that can happen everywhere. difficult to search.
And it frustrates that I need to read 10 extra lines to understand code flow or hover my mouse in an IDE to figure out what type object it is.
It's properly just me... I just like clean readable code. that is logical and failsafe and strict and deterministic with its behavior9 -
Someone just told me he writes c++ code and wrap it with swig so that he doesn't need to learn Python. Why man, just why!?
-
I just saw this:
"can someone convert a PHP code to VB code ? i want to make a small application , *.exe file which can do stuff"1 -
Having a meeting to decide, when to have other meetings...
Scrum, scrum of scrums, workstream, planning, pm ,design review, architecture review, Sprint review on and on....on and on on...why can't i simply code:(4 -
Most of the mockery and derisive talk at lunch was directed towards: middle management. - even if they were present at the table.
I too, have struggles with our PO: he was developer but is totally out of our development, what he kinda accepts and lets us do our stuff... BUT from time to time he wants to meddle with our architecture even though he is not even capable of writing more than a sentence into our ticket description, and his only "vision" is the KISS principle. Totally triggers me.
On the other hand I am also part time working as a scrum master and thus get to know the shit show from the other side: sitting between all parties with their particular, contradicting interests - all that shitty "politics" you don't have have to care about if you just code.2 -
Finally decided to do some planning before writing code but now I feel like I'm just procrastinating around writing the code.
The struggle is real.2 -
The dev behind me just send some code changes to another dev because those two dont want (or are just too stupid) to merge their code with git...2
-
Just curious what people's opinion is on paying for source code?
Not going to do it but just a random question that popped into mind...8 -
After debugging my embedded code for five hours my teammate just sent me a message "I just commited the latest PCB". Well thanks, after looking at the new layout I got the initial code working by just changing one variable!
-
All summer I've been working at a company doing some full-stack development. Starting my last year in university, I really wanted some real life experience that ties into my studies.
I did not expect to find horrible, undocumented, code that has been written 5 years ago, where the senior developer who wrote it doesn't even know what it does. The worst part? They are STILL not documenting! I tried to document, but got this in return "you don't have to document everything. Especially if it is understandable". But they don't even understand their old code!
Monday morning, we had a meeting and they asked what I thought of working here, seeing as I am done this week. I respectfully told them that their code is not readable, and it will make it hard for new employees to understand. The boss in return says "you're the third newly hired employee this summer to say this... Maybe we do have a problem then"..
No shit. Please for the love of God, comment your code!2 -
I just noticed the code in the docs of Vue.js contains no semicolons... I literally can't find a single semicolon in their code :O2
-
To be honest, me starting to code is just a moment when I suddenly decided that yeah, let's code. Then I learned HTML and Javascript, basically just bulldozing through whatever tutorials I can find before ending up choosing IT in university.
-
I find it interesting that most of the devRant profiles I look at only put the languages they know in the skills section, not the things they do with those languages.
Why is that?5 -
Anyone playing screeps?
You know the Moment when you just want to check if your code is running, just 10 Minutes, and then you find yourself spending the whole night on rewriting your defence or mineral processing code? -
Bugs are just undocumented features...
Im that case, all the code i have ever written is all just one huge bug. -
Don't you just love when you try to recycle code you wrote 2 years ago just to find that the modules you used haven't been updated and your code has gone to shit ;)3
-
I just discovered that Go needs a very long time to compile a 120MB source code file. Beside the fact that the file was very big, it just contained a big amount of byte arrays.
Did anyone had ever such big source code files?5 -
It's frustrating when you tell your teammate after code review that they have to rework their code a bit to capture certain scenarios they've missed and they just scowl at you.
I'm just trying to make it easier for us in the long run! -
Thanks VS code for randomly deciding to fuck up over 1000 lines of saves yet uncommitted code.
I seriously just want to cry8 -
Hey guys! Hear out, I just code and it works on first compile!
And its not just code, its also interact with database query!3 -
Does anyone have any advice on how to deal with teaching interns that you have to teach them the same thing over and over and over again? Starting to get a little annoying.4
-
Just figured out "code map" and "code clones" on VS 2015 (don't ask me why I didn't know these features)
Thought I should try it on my newly created application for a client (+/- 1500 lines of code C#)
Came across 1 duplication, 0 unreferenced classes or members and no circular references
I'm just awesome -
I have the misfortune of reading the source code that there are comment on who change what line of code at "actual source file" instead of just using version control.2
-
Why I love to code?
1. The only thing I feel like I have control over (thanks to control loops XD).
2. Feeling like god when my code works.
3. I just love it, no reason needed, just pure love for it.1 -
Why every single modern-looking code editor built with electron? I just want a code editor that has a good UI and doesn't run as a web page.2
-
I was halfway through repairing my Visual Studio, when it suddenly stopped without providing any info on why it happened...1
-
You can call me a noob developer, but I still think its magic when your code doesn't work. So you step through your code to see what's wrong. But you can't see it. So you just hit continue just to see your code is now working3
-
Wanted to work as a Dev being busy writing code. Got into an MNC and just deploying applications and rarely writing code. :(
-
Starts a new project in school with a colleague. Write some code, a lot of code, just to find out, that he "optimized" my code and now all of my code looks completly different but does the same thing wiht same performance.
Colleague: The code is now better
My Face: 😫 -
Code == business ideology. That's why corporations love obfuscated OOP; it's just like their power structures.1
-
Do you 'draft' your code?
I'm just really curious, as I'm not a developer; but I've been doing dev work for the last 8 months...
I just realised today, that 'drafting' my code on paper makes my workflow 10^10 times better and intuitive.
Like, just writing a rough code block with what function I'm going to use and how I'm going to form an equation, etc...
Or do you guys just jump straight ahead and start pushing out code?2 -
In finals, I was prepared to write code for any given problem. Instead, the professor gave code snippet itself for all questions and asked to write output. No comments, nothing. Just pure spaghetti code. Wasted so much time in analyzing the code that I had to leave a couple of questions unattended. Moreover each question weighted for around 8 marks. So, just one miscalculation means 8 marks is into the void. I'm feeling like I'd get just enough marks to clear the subject.1
-
Just like we have code developers there serious code breakers (if all is well, they atleast change the variable name)
-
What would you choose between 'clean code but just completed half of the tasks' or 'messy code but completed all of the tasks' ?5
-
We were learning how to code circles to light up in sequence. As it's similar to how code works for Arduino. Cool. Go back to c# in Unity and teach what the code does not just copy.
-
A colleague just posted code online for students for a practical with lots of bugs in it. Tomorrow the student will need to use this code to do analysis.2
-
The single most asked question when you're a unwitting 'code archaeologist' working on an inherited code base:
'Why in the Lord's name can't I just start from scratch!?' -
!rant
Just looking at Cap'n Proto. Too impressed by the code, Kenton Varda... Feeling so dim, just a little light. -
Just discovered font ligatures in vs code with the new font Cascadia Code.
I didn't know I could love coding more.
https://omgubuntu.co.uk/2019/09/...4 -
Anyone wanna see me code?
https://codesandbox.io/live/8r6zr1t
ya just open the link and watch me code there is a chat avallible to speak in and idk how to run my code , feel free to add stuff or whatever just a live session forever? idk but ya see ya9 -
I just realized.....
All code is good, all code is bad.
When you say "Wow that is super code!"
Zen master (from Charlie Wilson's War) says:
"We shall see!!" -
Be open to other people's code and read a lot of it. Also just trying out new things. Code to learn and improve don't learn to improve code.
-
I just made a complete list of 185+ excellent no-code tools you can use to build your next million-dollar app.
Visit: https://zerobizz.com/p/...7 -
You have coworkers who talk to code everyday. There are times you are looking at code that you just want to scream at... but it's not your style.
-
Is it just me who finds coding so relaxing? In all the messy crap flying around it's just me and code..my precious!
-
Baeldung.com has the just worst guide to Java Spring Websockets. They even mix up endpoints and show just the wrong code.2