More of these

...

Other urls found in this thread:

thedailywtf.com/
thedailywtf.com/series/code-sod
devhumor.com/category/code
twitter.com/SFWRedditImages

Are the people that make these bitter they didn't go to college and get a degree and get a job?

No. We're bitter that we have to work with people who have college degrees but still can't code worth shit.

This. I got an on campus job where code quality fucking mattered, I self document like a mofo (Clean Code by Robert C Martin is a fucking godsend)

I join groups for classes where they don't even know how to use git and use redefine variables, copy/paste code everywhere, horrible performance, 2 letter variable names. I fucking die it's horrible

...

Lmao

I don't get it..?

>OO""""""P""""""

I have the feeling that these code snippets are being created for only these kind of threads.. No one in the entire world would ever write this code

>knows how to properly throw the correct exception
kinda ruins it

I've seen
>returning null (because it wouldn't compile otherwise)
>creating a new exception and doing nothing with it
>RETURNING an exception

it's funny because (widely-used) dependency injection removes 90% of the arrows on the right

you're pretty clueless aren't you

OP is a faggot, and is trying to meme

You'd be surprised. See thedailywtf.com/

...

Well I mean he did what the comment wanted I guess

no fucking shit that's the entire point of the meme

>2 letter variable names

>tfw I name my variables after what they store so I end up with names like inputRadius_inputVertexCount_inputRotation

oh you poor naive child...
>thedailywtf.com/series/code-sod
>devhumor.com/category/code

You lil cheeky cunt mate, I see that NSA code.

>void main

>TripsofTruth

Where?

person learning how to program here, how would you actually do this best?
int product = 0;
for(int i = 0; i

forgot to return the product, but I doubt that's the only thing I fucked up here.

bit shifting and addition, like how it's done at the hardware level

Loops are an indication of code smell. It's 2016 we don't need to program everything in C anymore.
class Multiplier {
private List multiplier;
public Multiplier (int multiplicationFactor) {
this.multiplier = new ArrayList(multiplicationFactor);
}
int multiplyBy(int baseNumber) {
int result = 0;
multiplier.foreach(() -> result += baseNumber);
return result;
}
}

...

Loops are an indication of code smell. It's 2016 we don't need to program everything in C anymore.
class Multiplier {
private List multiplier;
public Multiplier (int multiplicationFactor) {
this.multiplier = new ArrayList(Collections.nCopies(multiplicationFactor, 0));
}
int multiplyBy(int baseNumber) {
multiplier.replaceAll((i) -> i = baseNumber);
return multiplier.stream().mapToInt(Integer::intValue).sum();
}
}

>Tfw some of my code has been used for these
>Tfw not even mad
>tfw terrible programmer and I know it
>Tfw just graduated, b.s. In comp sci w/ a minor in math
>Tfw I never have to write a single line of code ever again
>Tfw get to he a pilot

My teachers know I sucked, but I was really good at sucking up. I can post some more of my code if yall want. Give everyone a few laughs.

but that just feels 100% more complicated and unreadable and you're screwing with me.

>I can post some more of my code if yall want
do it

If that's all you're taking off my post, then maybe coding isn't for you.

this is horrible and you should feel bad

it also took him three posts

please do, I want to cringe.

kek

>tfw I'm a coding pleb with a CS degree

I want to get more into networking anyway, but I have been coding more recently, it's fun to learn what college didn't teach/I didn't bother to learn.

Sometimes I suspect that the degree for CS is just a money hurdle, not an actual proof of ability, and that you'd be better off just teaching yourself. Shame that those of us here in the US have to pay the money wall to get anywhere. Thank god I was born rich so I could fuck off in college.

I just freehanded it the first time, which apparently I can't do because I don't program garbage Java much.

:^)

>trying this hard to save face

You don't belong here, friend.

You're absolutely right, but there are some concepts that are much easier to grasp with the help of someone experienced.

I have no doubt a committed person that's at least mildly intelligent could self-study all they need to know and succeed. That said, most people are lazy and stupid, so the degree helps to weed some people out.

> XDDDDDD they tested all the cases instead of writing a more general statement

test

Shit he's onto us

If your language supports TCO recursive addition works as well but that's essentially just a recursive version of what you wrote

Ah, variable names. Length is not a virtue in a name; clarity of expression is. A global variable rarely used may deserve a long name, maxphysaddr say. An array index used on every line of a loop needn't be named any more elaborately than i. Saying index or elementnumber is more to type (or calls upon your text editor) and obscures the details of the computation. When the variable names are huge, it's harder to see what's going on. This is partly a typographic issue; consider for(i=0 to 100)
array[i]=0
vs.
for(elementnumber=0 to 100)
array[elementnumber]=0;
The problem gets worse fast with real examples. Indices are just notation, so treat them as such.
Pointers also require sensible notation. np is just as mnemonic as nodepointer if you consistently use a naming convention from which np means ``node pointer'' is easily derived. More on this in the next essay.

As in all other aspects of readable programming, consistency is important in naming. If you call one variable maxphysaddr, don't call its cousin lowestaddress.

Finally, I prefer minimum-length but maximum-information names, and then let the context fill in the rest. Globals, for instance, typically have little context when they are used, so their names need to be relatively evocative. Thus I say maxphysaddr (not MaximumPhysicalAddress) for a global variable, but np not NodePointer for a pointer locally defined and used. This is largely a matter of taste, but taste is relevant to clarity.

I eschew embedded capital letters in names; to my prose-oriented eyes, they are too awkward to read comfortably. They jangle like bad typography.

As it fucking should do you're not lost when you look at it a month later.

The people that just go like

> int a,b,c,d,e;

And then on to a complicated block makes my blood boil

(0 == b) ? 0 : ((int)((double)a / (1.0 / (double)b)));

...

>We're
You're, fixed

If you're bitter and you DO know how to code, it is your (our) moral obligation to teach them how to code properly

Isn't that kind of the point of a higher education? You know all the complicated shit and can efficiently plan out projects, whereas the uneducated code monkeys do the manual labor. There's no need to actually code yourself.

Manager detected. Take your magic wand and fuck yourself.

I made one of these after realizing how needlessly complicated one of my "solutions" was while another guy literally did it in one, 10 character line.