FINISH THIS TIER LIST
1
Name:
Anonymous
2010-10-04 23:05
out of the programming languages I know
God Tier
Ada, Assembler
mid tier
sepples, html
low tier
Visual basic
shit tier
java, javascript
2
Name:
Anonymous
2010-10-04 23:08
3
Name:
Anonymous
2010-10-04 23:32
4
Name:
Anonymous
2010-10-04 23:52
God tier - Python, C/C++
Mid Tier - Perl, PHP, Objective-C,
Low Tier - Lisp, Haskell, Ruby
Shit Tier - Java, VB, Tcl
5
Name:
Anonymous
2010-10-05 0:07
God tier - Being able to program in any language necessary.
Shit tier - Anything else.
6
Name:
Anonymous
2010-10-05 0:46
God tier - write excellent and well-documented code in any language, release
Mid tier - write tuned and working, somewhat-documented code in any language, release
Low tier - write shitty, barely working code in any language, without any documentation, release
Shit tier - don't release any code or binaries
This means you, /prog/tards
7
Name:
Anonymous
2010-10-05 0:48
>>4
C/C++
Just a pet peeve, but don't bundle C and C++ together like that. All the graduates at work have "C/C++" in their CVs, but they know nothing about C++. C and C++ do not go hand in hand.
8
Name:
Anonymous
2010-10-05 0:50
>>7
You're stupid, shut up.
9
Name:
Anonymous
2010-10-05 0:56
10
Name:
Anonymous
2010-10-05 1:25
>>9
That's what she said.
11
Name:
Anonymous
2010-10-05 1:42
>>10
I can see the smoke from here. The BURN.
12
Name:
Anonymous
2010-10-05 1:51
>>1
I find it odd that you know assembler and C++ well enough to feel justified in ranking them somehow, but aren't familiar with C.
13
Name:
Anonymous
2010-10-05 2:03
GOD TIER
Avisynth scripts, ZZT OOP, PostScript
MEDIUM TIER
Clairvoyants, prophets
LOW TIER
DNA programming
14
Name:
Anonymous
2010-10-05 2:18
Hemisphere tier: magnifying
Subunits tier: flatfoot
Tempter tier: burrows
Cotangent tier: temerity
15
Name:
Anonymous
2010-10-05 3:49
Less of this.
16
Name:
Anonymous
2010-10-05 4:13
More of ``Less of this.''
17
Name:
Anonymous
2010-10-05 4:28
Less of ``More of ``Less of this.''''
18
Name:
Anonymous
2010-10-05 6:24
More of ``Less of ``More of ``Less of this.''''''
19
Name:
Anonymous
2010-10-05 6:26
>>16,17
Go back to
reddit .
20
Name:
Anonymous
2010-10-05 6:28
21
Name:
Anonymous
2010-10-05 8:16
>>19
Fuck you, they were quite funny.
22
Name:
Anonymous
2010-10-05 8:55
>>21
I'm sorry. I didn't realize this was
/comedy/ .
23
Name:
Anonymous
2010-10-05 11:55
>>19
A true redditor would have been offended at 99.9% of /prog/.
24
Name:
Anonymous
2010-10-05 12:44
>>23
Ah, the True Redditor fallacy.
25
Name:
Anonymous
2010-10-05 15:31
>>22
Get that stick out of your anus.
26
Name:
Anonymous
2010-10-05 18:14
>>24
On top of that a True Redditor is a .NET faggot.
27
Name:
Anonymous
2010-10-05 21:38
GOD TIER: C#
GOOD TIER: PYTHON, JAVA, PHP
MID TIER: C
SHIT TIER: BBCODE
C++ TIER: C++
28
Name:
Anonymous
2010-10-05 22:29
C++ TIER: C++
Good one.
29
Name:
Anonymous
2010-10-05 23:42
God tier: c++0x
Mid tier: C, asm, python, ruby
low tier: c#, java, ecma, j, smalltalk
shit tier: c++03 and lower, basics, cobol, prolog, sql, perl
shitter than shit itself tier: lisps, haskells, coqs
>>23
I
AMA from reddit
AMA .
And not offended.
30
Name:
Anonymous
2010-10-05 23:49
>>29
You don't belong here. At all. Please return to Reddit at once
! Never come back here again. Ever.
31
Name:
Anonymous
2010-10-06 2:37
>>29
Why did you list cocks on the top tier and on the bottom tier?
Also, go back to reddit.
32
Name:
Anonymous
2010-10-06 14:15
33
Name:
Anonymous
2010-10-06 14:23
God tier: Python, PHP, C, Javascript
Mid tier: Java, Pascal, QBasic
Low tier: x86 real mode assembly, old BASICs
Shit tier: Scheme, Perl, Visual Basic, MIPS R2000 assembly
34
Name:
Anonymous
2010-10-06 14:28
>>30-32
u jelly cause /prog/'s inferior or cause you yourselves are inferior?
35
Name:
Anonymous
2010-10-06 14:32
36
Name:
Anonymous
2010-10-06 14:40
God tier: C, Python, assembly, Scheme, Lua
Mid tier:
Low tier: Pascal
Shit tier: C++, Java, C#, Common Lisp
37
Name:
Anonymous
2010-10-06 14:52
>>36
Your list is reversed.
38
Name:
Anonymous
2010-10-06 15:19
>>37
Your face and ass are reversed.
39
Name:
Anonymous
2010-10-06 15:22
>>37
Common Lisper faggot detected.
40
Name:
Anonymous
2010-10-06 15:50
>>36
God tier: C, Python
Hahahahaha... No.
41
Name:
Anonymous
2010-10-06 16:26
42
Name:
Anonymous
2010-10-06 16:39
>>40
So wrong. So very wrong. Just plain ignorant, really.
43
Name:
VIPPER
2010-10-06 17:00
FULL O JEWS
44
Name:
Anonymous
2010-10-06 20:54
SEPPLES? C AND RUBY ARE ALL YOU NEED.
45
Name:
Anonymous
2010-10-06 21:11
Wizard tier
Scheme
BBCode
Animals tier
Python
Haskell
LOGO
Terrible! tier
Other languages
46
Name:
Anonymous
2010-10-06 23:47
47
Name:
Anonymous
2010-10-07 4:52
EXPERT C SOLUTION
// pipe output through sort -n
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int ispalindrome(char *s) {
char *sr,*p,*pr;
int r;
sr = strdup(s);
pr = sr + strlen(s);
*pr-- = 0;
for(p=s;*p;p++,pr--)
*pr = *p;
r = strcmp(s,sr);
free(sr);
return !r;
}
int main() {
int x,y;
char s[64];
for(x=999;x;x--) {
for(y=999;y;y--) {
sprintf(s,"%d",x*y);
if(ispalindrome(s))
printf("%s\n",s);
}
}
return 0;
}
48
Name:
Anonymous
2010-10-07 4:52
49
Name:
Anonymous
2010-10-07 5:06
>>48
[x] wrong thread
[x] lack of sage.
Congratulations. You've just have won
"mo ro n of the week" special prize.