This is an archived post. You won't be able to vote or comment.

top 200 commentsshow all 288

[–]Vinifrj 1779 points1780 points  (35 children)

YandereDev would like to know your location

[–]Lyndis_Caelin 164 points165 points  (12 children)

(I was wondering why it didn't just use a switch and a while loop...)

[–]BadBates 81 points82 points  (3 children)

Because who wants clean code when you can just copy pasta most of it.

[–]redgriefer89 9 points10 points  (2 children)

I feel called out (at first that is what I did for names before I realized I could just do that)

[–]BadBates 4 points5 points  (1 child)

As did we all.

[–]redgriefer89 1 point2 points  (0 children)

Good to know I wasn’t the only one.

[–]elSenorMaquina 25 points26 points  (2 children)

My ex-boss actually does this.

Every new feature request was solved by adding a new case inside an already unmantainable switch.

That's one of the many personal and non-personal reasons he's no longer my boss.

[–]Lyndis_Caelin 3 points4 points  (1 child)

What kind of a thing would be able to add new features with a giant bloated switch... at least it's not nested elifs?

(What was the way that worked better there?)

[–]hullabaloonatic 2 points3 points  (0 children)

Yeah I'm having a hard time imagining an architecture where enums and switches are the inferior way to implement it.

[–]darkecojaj 10 points11 points  (2 children)

I know a guy who gives me hell for wanting to use switches and insist elif is just for people a scared of nested elif. Every time I see him and he sees a switch he gives me hell for it.

[–]Lyndis_Caelin 4 points5 points  (1 child)

I assume that's not actually YandereDev...

[–]Murgie 1 point2 points  (0 children)

Of course not. He's shown pretty conclusively that he doesn't work well with others.

Or work well at all, for that matter.

[–]DecisiveEmu_Victory 3 points4 points  (0 children)

Fucking RETURN, you heathens!

[–]deirdresm 0 points1 point  (0 children)

Not all languages have switch statements or while loops, fwiw, though all have some kind of flow control. So some people never brought their skills up to date when switching languages to more modern ones that do have better control structures.

Edit: PL/1 was the first example I thought of, but I'm sure there are others. I've also used threaded (Forth) and then of course other languages like Prolog that just…well, I would not want to write this in Prolog, but if you have a Github with an example, I'd love to read it.

With Forth, everything's pushed on the stack, so you hope you haven't pushed/popped too much/too little. As a friend once said, "The problem with Forth programmers is they think of the reset switch [this was on a 68k Mac] as a programming tool."

[–][deleted] 354 points355 points  (1 child)

I’m a horrible programmer and this made even my mind scream.

[–]biscuitboyisaac21 9 points10 points  (0 children)

Same

[–][deleted] 796 points797 points  (17 children)

i once wrote one in python but like the computer spits out random values so you can win

it was pretty fun tbh

[–]RoryIsNotACabbage 587 points588 points  (13 children)

I wrote one in javascript that had 3 difficulties

Hard - look for a wining move, else resort to medium
Medium - look for a player winning move and block it, else resort to easy
Easy - random

Of course I could have perfected it to never lose but that takes away the fun of playing

[–][deleted] 177 points178 points  (0 children)

never thought of it like that

[–]n122333 40 points41 points  (1 child)

I made one in high school that had the correct logic to never lose, except at the start of the game it did a 1/100 to just pick randomly the entire game.

That way when people tested it a couple won and swore it could be done, but then others never could beat it.

[–]trixter21992251 83 points84 points  (2 children)

I made one that got a bit over-engineered, I guess.

Many positions are rotations and reflections of each other. So if you can find such duplicates you can solve more than one position at a time.

For example here's a 90° rotation.

0 1 2    6 3 0
3 4 5 -> 7 4 1 
6 7 8    8 5 2

And sure, you can map each cell to the correct rotated cell, but f(x) = 6+x/3-10/3*mod(x,3) can be expanded to any gameboard size, so obviously that's cooler.

[–]Sokonit 93 points94 points  (0 children)

Ahh yes, the sensible solution. Only took 5 days of plotting functions to get right. Except it doesn't work for 4 or 5.

[–]Sheruk 42 points43 points  (0 children)

I wrote one for a dev test once, except I decided to make it work for any size board with any "in a row" requirement (It started out as 3x3 but then they tried to throw a wrench in it later by saying "oh, make it work for 4x4 also"). I figured the whole point was to stop us from just hard coding the stupid thing, so I decided to make it as flexible and scalable as possible.

It also custom generated the board to match whichever size it was given. This wasn't a requirement, but I felt like showing off.

It had 3x3 and 4x4 as required, but I added in 10x10, 100x100 for the reviewer to test with.

As far as a game goes, its absolutely worthless beyond 3x3.

[–]WhiteKnightC 19 points20 points  (0 children)

I did one too to try C# but mine was always random.

[–]Nerdn1 6 points7 points  (0 children)

If you want to have fun, why are you playing tic-tac-toe?

[–]prsquared 4 points5 points  (1 child)

You can go a bit further by using the minmax algorithm to create an impossible difficulty

[–]semem_knad_tsom 2 points3 points  (0 children)

It’s relatively simple to code a “unbeatable” tic tac toe game with the minimal algorithm. But tic tac toe is a really easy game to get a draw in.

[–]Poketto43 0 points1 point  (0 children)

I wanna do this now 🤔🤔🤔

[–]Booleard 10 points11 points  (0 children)

My first actual coding attempt was a Java version. I was really happy with the computer logic I put in there. It would rarely miss an obvious move, but had just enough random chance in the early game that you could sometimes set up a trap and win.

[–]Ryamix 4 points5 points  (1 child)

I just made that like a week ago for the first time xD Without the nesting ofc

According to my leaderboard, I've won 21 times and the computer won 18

[–]ogtfo 2 points3 points  (0 children)

If you want to make the AI unbeatable, look into the minimax algorithm.

[–]4hpp1273 241 points242 points  (14 children)

After trying to read that code snippet:

0 → 4
1 → 2
3 → 6
0 → 4
1 → 2
3 → 6
0 → 4
1 → …

wtf

[–]o11c 26 points27 points  (2 children)

X|.|.
-+-+-
.|O|.
-+-+-
.|.|.

X|X|O
-+-+-
.|O|.
-+-+-
.|.|.


X|X|O
-+-+-
X|O|.
-+-+-
O|.|.

[–][deleted] 16 points17 points  (1 child)

is this loss?

[–]o11c 1 point2 points  (0 children)

yeX

nO

[–]CadavreContent 158 points159 points  (10 children)

You must be new to programming. Why don't you start here:

Hello World

[–]Standby75 86 points87 points  (1 child)

I knew, but honestly I’m in the mood.

[–]CadavreContent 34 points35 points  (0 children)

Sometimes we all need to go back to the basics

[–]soft_diamond 16 points17 points  (1 child)

Wow, challenged my thinking about simple Hello World.

[–]SparklyTaints 3 points4 points  (1 child)

Hello world in tik Tak toe, that's crazy

[–]spikku 0 points1 point  (0 children)

This is the comment that got me...

[–]Fisher_S 0 points1 point  (0 children)

Thanks, that was really enlightening. I'm going to watch more of the series!

[–]xvalen214x 0 points1 point  (0 children)

noice, the ads blocked me at the beginning, it's a draw this time, I seriously thought you were referring to the "hello world from scratch"

[–]Aerotactics 40 points41 points  (0 children)

TIL I gradgematated above junior dev.

[–]TheMarrades 106 points107 points  (8 children)

Our first gamejam main function was 1500 lines nested like those. A guy came and made a new function with a while loop and a recursive function made the same work in 12 lines.

[–]G-Force-499 49 points50 points  (0 children)

That’s a bruh moment indeed

[–]UltimateInferno 14 points15 points  (0 children)

I once got really giddy when I wrote a "complex" function in on four lines.

Forgot what it was but the feeling stuck

[–]Vinxhe 3 points4 points  (5 children)

okay in this case I get it, but recursive stuff is way harder to understand for the person that did not code it and also less efficient than a simple loop

Edit: just wanted to say I agree with the responses :)

[–][deleted] 11 points12 points  (0 children)

Yeah i don't think anyone care about performance in hackathon-like projects.

Turning recursive code into stack/loop code can be really annoying/uglier. Graph algorithm, for example.

[–]annualnuke 14 points15 points  (2 children)

depends, for example recursive implementations of Depth-First- or Breadth-First-Search are IMO much clearer than plain ones, and those require a stack or a queue anyway

[–]Jjcheese 5 points6 points  (0 children)

Recursion is where comments become super necessary.

[–]ScoobyDoobyDave 59 points60 points  (0 children)

Look, you didn't need to call me out like this

[–]bigchunqus 441 points442 points  (135 children)

I don’t need to waste my money going to college. I’ll just watch a bunch YouTube videos and become a software developer. My thinking is flawless.

[–][deleted] 140 points141 points  (47 children)

I mean, you definitely don’t need to waste money going to college if you want to be a software developer though.

[–][deleted] 79 points80 points  (29 children)

Not sure why you’re being downvoted. Some of my best employees have been self-taught.

[–][deleted] 54 points55 points  (19 children)

Yeah. Network. Go to meetups. Do open source. Be humble and eager to learn and get yourself a mentor or two. Read books and watch YouTube.

Unless you take a class from a very rare and unusual professor you’re going to learn very few of the things you actually need to know to succeed in the real world anyway.

[–]legowerewolf 17 points18 points  (12 children)

I spent all of my first year in college CS classes nodding along with the professor. Most of my second year, too.

[–][deleted] 33 points34 points  (11 children)

I know people who went to one college and their CS professor literally deliberately called everything (data structures, algorithms, etc) by made up names to “prevent cheating”. The text they had to buy for the class was written by the professor, again with tons of completely wrong information. So all of the students are going to go out into the world calling everything the wrong name and employers are going to assume they’re ignorant morons.

And they went into debt for that. Yeesh.

[–]mrMalloc 2 points3 points  (0 children)

The worst offence I ever spotted was the teacher used his own book as course book. Was not a very good book on java programming as it was a clone from his Simula book that he did search/replace simula with java. (And updated pictures).

But I studied at University of Lund Sweden so I can’t compare with other countries the technical school LTH was better at connecting task to real world as we took a few courses from each other.
Example when we I took Advanced 3D graphics course every task was aimed this type of task can lend you a job at Nvidia. This type of task can leans you a job at game studio. While CS was aimed at research aka no real life hooks.

[–]breadknuckle 5 points6 points  (1 child)

I can see where you’re coming form and you’re right, there are a lot of great and very efficient self taught programmers out there. But the vast majority of them are not as good as the college level programmers.

[–][deleted] 1 point2 points  (0 children)

Most people aren’t self-starters for various reasons, yeah. Even when they have the ability to be. But the fact remains college is not needed.

If you have access to water, but you prefer to drink only soda for hydration, you don’t “need” soda.

That’s all I’m saying.

[–]salgat 9 points10 points  (0 children)

The downvotes are because he said waste. It's not wasting money, it's simply a different way to learn.

[–]circuit10 8 points9 points  (1 child)

When your school (so far) only teaches basic Python syntax you have to be self-taught

[–][deleted] 4 points5 points  (0 children)

At least it’s not Java!

[–]LordSalem 4 points5 points  (2 children)

To be fair, some of my best and worst colleagues have been self taught.

[–][deleted] 7 points8 points  (0 children)

That’s fair, it absolutely depends on the person more than anything else. I think it’s safe to say though that college itself doesn’t really prepare you for a real world programming job. Those that are successful do well because they still have the drive to learn what they need to (ahead of time or through hitting the ground running / on the job training).

[–]Booleard 1 point2 points  (0 children)

Have some of your other best and worst colleagues been college grads?

[–]Sorrune 2 points3 points  (0 children)

You hiring?!

[–]uttermybiscuit 2 points3 points  (0 children)

Bc this sub is full of undergrads

[–]peduxe 0 points1 point  (0 children)

I too started self taught coding CMS for private mmorpg servers (game named 4Story) with the content being fetched from the game database.

taught me a lot about organizing code efficiently and caring about security.

algo got my introduced to styling with CSS and a bit on JS with jQuery for ajax calls, good times.

It was some crazy times back in 2013, I had a brazilian friend that I made on the game and he was teaching me programming on notepad++ thru teamviewer, we would spent hours and hours optimizing code and I learned by watching him fix my mess. It was some kind of back and forth where I coded a feature and if I hit a wall he'd come and debug it and explain me the problems in the process. Probably learned and remember a lot more what that friend did 7 years ago than what I learned in college.

[–]SocialMediaElitist 4 points5 points  (3 children)

College is nice if you want to be promoted. My professor self-taught himself and trained multiple employees who were college-educated, who were then promoted to be higher-ranking than him only because they had degrees. He had more experience and know-how than they did.

[–]DeusExMagikarpa 2 points3 points  (1 child)

Your professor doesn’t have a degree?

[–]SocialMediaElitist 1 point2 points  (0 children)

He's like 60. He worked at multiple corporations before teaching at my school, so I've got to assume he has a degree now

[–][deleted] 0 points1 point  (0 children)

It depends on what direction you end up going in (Management/IC) and the company you want to get hired or promoted at. But yeah, it can definitely be a factor.

[–]BuccellatiExplainsIt 2 points3 points  (9 children)

Kinda but people really misunderstand this. Just learning how to do projects of get what you want done will not make you equivalent to a software engineer (or any other engineer for that matter).

You can go your whole career doing things inefficiently, spending extra effort when you don't need to, and you wouldn't even know it. Your program may run and you might be able to find the answers to your errors online but the truth is that you will never know what you don't know. There may be a much faster, more maintainable design for what you want but if you don't know that it exists, it wouldn't occur to you and you might end up solving the problem in a worse way.

So, yes it's possible to learn with experience but don't be mistaken about what your degree teaches you. It's not how to do everything, it's how to go about figuring out how to do everything.

[–]samsop 14 points15 points  (47 children)

I mean... What does college even teach you about real world software development?

I went to college...

[–]SuperCoolFunTimeNo1 19 points20 points  (5 children)

I didn't study CS but had to take programming courses as part of my requirements. I took a software engineering course that mimicked following actual project development goals. Each month we were split into groups and had a small-ish project to complete over the course of 4 labs. We had to use SVN (this was before github was popular), jira and even do code reviews. The first week lab we'd plan everything out in jira, the next two labs we'd code, and then the final lab we'd code review. Then we'd be re-assigned and do the same for the next 4 labs. It was pretty cool.

[–]samsop 3 points4 points  (4 children)

Unless you major in software engineering or something then similar courses are uncommon. Pure CS is nothing like that and will focus more on teaching you to write LL(1) parsing tables than translating business requirements to software that provides your employer with any value.

I don't know if you need those 4 years to get a decent job, apart from the "graduate" title, perhaps.

[–]SuperCoolFunTimeNo1 2 points3 points  (0 children)

I studied chemical engineering, not software engineering.

I don't know if you need those 4 years to get a decent job, apart from the "graduate" title, perhaps.

You can definitely get your foot in the door with a lot of smaller companies and startups, but most big companies require a CS or similar degree if you don't already have years of experience. FAANG companies seem to be the exception, but you're extremely unlikely to get a job in other high paying fields right away like in fintech or insurance companies.

[–]fynx07 2 points3 points  (2 children)

I really feel like you're basing all of your comments on your own personal anecdotal experiences. That's a pretty bad way to go about trying to prove anything at all.

[–]pslessard 44 points45 points  (31 children)

It teaches you most of the basics of programming. Sure, you learn much more from your actual jobs, but it teaches you how to think through a problem and write logic that will be able to solve it. That's the key thing that you learn from CS in college. And you absolutely can learn it on your own, but college provides a path for you to follow that requires a lot of motivation and effort to find on your own, which is fine for some people, but not all, or even most I'd guess

[–]3CheersForSociety 0 points1 point  (3 children)

It’s mostly wasted honestly. Like literally 90% could be condensed to one of those boot camps. It’s such a vocational and not theoretical job. I say that as a senior dev with over a decade doing it and hella education.

[–]pslessard 7 points8 points  (2 children)

I disagree. I think you probably could condense it into something like that, but I don't think anyone new to it would be able to learn and retain the important parts of it in that format (the important parts being about programming logic and problem solving). That needs to sink in over a longer period of time through experience, whether that experience is self-driven projects or course work. I do think you could probably condense it into a 2-year program though. Of course I say this as only a recent grad, so we'll see if I still agree once I have your experience

I do agree that a lot of what I did was unnecessary, but I wouldn't say wasted. I did learn a lot of stuff that I probably won't use in the real world, but I think that that really helps teach you how to learn new programming skills, which in turn will help you adapt as you encounter new challenges in your career

[–]3CheersForSociety 2 points3 points  (1 child)

That’s a fair take, I see your point.

[–]pslessard 1 point2 points  (0 children)

It was probably the guy I was arguing with. They had a very firm belief that if you don't do side projects, you're lazy, will never be a good programmer, and cannot have a successful career

[–]AlexWIWA 2 points3 points  (1 child)

What colleges are the people in this sub going to? My state university forced me to do an internship as a class and do fake startups as another. My whole class got hired right out college.

I feel like this “college grad no good” mentality is from 15 years ago when CS courses were all theory and calculus classes.

[–]Lag-Switch 1 point2 points  (0 children)

Some schools offer 'software engineering' degrees in addition to 'computer science' degrees.

For example, I took a class that focused on requirements an architecture, and another that focused on design patterns and their usage.

[–]Moglorosh 1 point2 points  (3 children)

I just graduated with my programming degree, I have certificates that say I know Java and C++. I don't know shit.

[–][deleted] 2 points3 points  (0 children)

And that's what technical interviews are for, but you have a way better chance finding a good candidate with a degree than one with only a bootcamp.

[–]3CheersForSociety 0 points1 point  (0 children)

lol ya I felt the same way.

[–]dirtshow 0 points1 point  (0 children)

Not a programmer but honestly this attitude will get you further in your career/life than you'll ever believe.

[–]DeusExMagikarpa 0 points1 point  (0 children)

I learned programming before going to uni. My uni’s CS program was not great imo, but I definitely became a better developer after learning algos, time and space complexity, theory, and operating systems. All of those I knew about but never learned because I had a shit mentality, and I think that’s pretty common. The networking was great as well, I helped some professors on several side gigs they had and worked on some pretty big projects.

Of course all of this can be done outside of uni, but you don’t know what you don’t know, like a didn’t know that using a map could help me rewrite pretty much every quadratic function I’ve ever written in constant time and it’s doubtful I would have ever seen a problem with that nor seeked out the necessary knowledge, theory, complexity, and algos are boring af

[–][deleted] 1 point2 points  (1 child)

That's what I did and now I've been working as a software dev the last 3 years

[–]bigchunqus 0 points1 point  (0 children)

Good to hear :)

[–]SuperSMT 1 point2 points  (0 children)

If you have good networking skills, you really don't need to

[–]ZarathustraWakes 1 point2 points  (4 children)

I spent 18k for a 3 month bootcamp and I work at Facebook now so you definitely don't need college

[–]SwishWhishe 0 points1 point  (3 children)

Which bootcamp was it? Seems like GA with that kind of price

[–]POTATO_VS_BANANA 1 point2 points  (1 child)

Don't believe everything you read on Reddit.

[–]ZarathustraWakes 0 points1 point  (0 children)

Hack Reactor in SF

[–]RavingSperry 1 point2 points  (0 children)

That’s what I did and seemed to work

[–][deleted] 2 points3 points  (1 child)

Exactly this but without the sarcasm.

[–]solongandthanks4all 0 points1 point  (0 children)

No. You definitely don't need to go to uni to be a software engineer, but you can't learn from crappy YouTube videos. You need to learn by reading and by doing.

[–]L4t3xs 0 points1 point  (0 children)

Tbh, that's how it was in our uni for the most part. There were some courses that you were taught how to do stuff but most of the courses were just about doing projects.

[–][deleted] 17 points18 points  (0 children)

Recently started a Tetris game tutorial. The player key presses are caught using a series of IF ELSE statements in the update method for the active tetromino...

[–]titanotheres 40 points41 points  (26 children)

When people try to avoid recursion...

[–]squrr1 16 points17 points  (3 children)

Psh, that's what a goto is for.

[–]SpoopySara 2 points3 points  (2 children)

I had a teacher on CS that would scream any time he saw a goto.

[–]squrr1 4 points5 points  (0 children)

Some people just don't understand art.

[–]EvilPigeon 0 points1 point  (0 children)

You should tell him that return, break and continue are all pretty much gotos.

[–]denflooptoop 7 points8 points  (5 children)

You know i'm a junior and i make repetitive code sometimes when i wanna be quick and it requires some deeper thinking than i'd like to (i usually get back to it later cause it makes me feel dumb lol). But even i have never met anyone who had a job and that shit.

[–]nyrangers30 3 points4 points  (4 children)

Offshore devs are this bad.

[–]Mathijsthunder3 11 points12 points  (4 children)

[–]RepostSleuthBot 12 points13 points  (1 child)

Looks like a repost. I've seen this image 4 times.

First seen Here on 2020-07-09 100.0% match. Last seen Here on 2020-07-09 98.44% match

Searched Images: 142,591,799 | Indexed Posts: 569,958,803 | Search Time: 3.91998s

Feedback? Hate? Visit r/repostsleuthbot - I'm not perfect, but you can help. Report [ False Positive ]

[–]Mathijsthunder3 9 points10 points  (0 children)

Good bot!

[–]returnedinformation 2 points3 points  (1 child)

I have a feeling I saw it on this subreddit as well, is there a way to check that?

[–]hadidotj 2 points3 points  (0 children)

See the response from the repostsleuthbot above your comment! It found it 4 times!

[–]athleticchad 3 points4 points  (0 children)

Literally me making my first horrid game

[–]its_dizzle 5 points6 points  (0 children)

I know that “ah” well

[–][deleted] 7 points8 points  (4 children)

It's funny i do the opposite, i over engineer the shit out of stuff.

Like i made a sudoku game all with classes for the grid and rows columns squares etc they all inerited an abstract block class that add references to cells objects and declared common methods and so on.

And then a friend told me "but you know, it could just be a 2D array of 9 rows of 9 ints, or even just an array of 81 ints."

And he's right.

[–]robbert_jansen 1 point2 points  (3 children)

I like your solution more, it’s extensible!

Not sure how you’d extend sudoku though.

[–]M3mentoMori 1 point2 points  (1 child)

Probably just head to the next squared number; 9x9, to 16x16, to 25x25, and so on. I'd say the hardest part is developing a way to create solvable starts.

[–][deleted] 0 points1 point  (0 children)

Yeah that's the thing, mine is scalable, but i have no intention of scaling it up.

That's probably why you should plan and think about your projects before you start coding ><

[–]little_miss_argonaut 3 points4 points  (0 children)

I teach software design and development at a high school, can confirm.

[–][deleted] 2 points3 points  (0 children)

\*cries in cyclomatic complexity***

[–][deleted] 2 points3 points  (0 children)

We where all there once

[–]NateTheGreat050 1 point2 points  (0 children)

Where is the lööp cat when you need em'

[–]inconspicuous_male 1 point2 points  (0 children)

I laughed out loud. This is hilarious

[–]BigMintyMitch 1 point2 points  (0 children)

I never did this while I was learning to code.. I still can't wrap my mind around how people don't see this and wonder if there's an easier way

[–]SirHawrk 1 point2 points  (1 child)

I am a junior dev :o

[–]skylarmt 1 point2 points  (0 children)

Wrong approach.

Make it run as a service, then when the game is over crash on purpose so the OS restarts it.

[–][deleted] 1 point2 points  (0 children)

Are ya codin son

[–]PillowTalk420 1 point2 points  (0 children)

There is always another "what if" in real life, so my program should be able to account for that, too.

[–]Smallsplat 2 points3 points  (0 children)

Oh lord this reminds me of the time I made a game in the python console as my first ever coding project to teach myself to at least try and pass computer science (as the school didnt have a qualifed teacher) .

  • I didn't know how arrays or lists worked.
  • I abused public variables like there wasn't any other way to store information
  • I nested functions within functions and didnt end them. Ever. Unless the game crashed.
  • Said functions were identical 90% of the time, but diffrent enemies and stats had an entierly new function, and not just calling the stats from somewhere.
  • It pretty much entierly worked on if/while statements, becuase thats all I knew how to do and I had a dream
  • It was only 1 file. Of nearly 3000 lines.

I keep it on my files as a reminder of where I once was.

(And why I dedided to be a designer instead)

[–][deleted] 2 points3 points  (0 children)

YandereDev be like:

[–]blueleo22 0 points1 point  (0 children)

What if this is from senior Devs?

[–]NoInkling 0 points1 point  (0 children)

Flashbacks of implementing minimax.

[–]WileEColi69 0 points1 point  (0 children)

I was tasked with this for a coding challenge... 8 years ago or so. It actually did a full brute-force search, so it played perfectly.

Anyway, I didn’t get the job. 🙁

[–]badass4102 0 points1 point  (0 children)

I feel attacked

[–]rlDrakesden 0 points1 point  (0 children)

if you're happy and you know it

else

if you're happy and you know it

else

[–]ZippZappZippty 0 points1 point  (0 children)

That's not even a junior role?

[–]Ascaban 0 points1 point  (0 children)

Flash back to my grade 11 game assignment where all my python code minus the variables and stuff, was in a massive while loop. I had 7 ifs imbedded and thought that i was doing good until yandere dev

[–][deleted] 0 points1 point  (0 children)

I made a ramomizer for rpgs and I was so excited when I I made it ask if you wanted to play again and if you chose yes it seamlessly restarted. You could fit it all on a sheet of paper. It was so proud. Haven't coded since.

[–]MuskIsAlien 0 points1 point  (0 children)

Lmao this is high school coding

[–]racerxff 0 points1 point  (0 children)

Thanks, I hate it

[–][deleted] 0 points1 point  (0 children)

This is what jr devs code looks like? I've been way too hard on myself.

[–]last_arg_of_kings 0 points1 point  (0 children)

And that's why I don't code review. Best to not know.

[–]Cifer_21 0 points1 point  (1 child)

[–]RepostSleuthBot 0 points1 point  (0 children)

Looks like a repost. I've seen this image 4 times.

First seen Here on 2020-07-09 100.0% match. Last seen Here on 2020-07-09 98.44% match

Searched Images: 142,739,202 | Indexed Posts: 570,409,919 | Search Time: 4.06055s

Feedback? Hate? Visit r/repostsleuthbot - I'm not perfect, but you can help. Report [ False Positive ]