Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-

FINISH THIS TIER LIST

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

Name: Anonymous 2010-10-04 23:08

Name: Anonymous 2010-10-04 23:32

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

Name: Anonymous 2010-10-05 0:07

God tier - Being able to program in any language necessary.

Shit tier - Anything else.

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

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.

Name: Anonymous 2010-10-05 0:50

>>7

You're stupid, shut up.

Name: Anonymous 2010-10-05 0:56

>>8
I'm not your mom.

Name: Anonymous 2010-10-05 1:25

>>9
That's what she said.

Name: Anonymous 2010-10-05 1:42

>>10
I can see the smoke from here. The BURN.

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.

Name: Anonymous 2010-10-05 2:03

GOD TIER
Avisynth scripts, ZZT OOP, PostScript

MEDIUM TIER
Clairvoyants, prophets

LOW TIER
DNA programming

Name: Anonymous 2010-10-05 2:18

Hemisphere tier: magnifying
Subunits tier: flatfoot
Tempter tier: burrows
Cotangent tier: temerity

Name: Anonymous 2010-10-05 3:49

Less of this.

Name: Anonymous 2010-10-05 4:13

More of ``Less of this.''

Name: Anonymous 2010-10-05 4:28

Less of ``More of ``Less of this.''''

Name: Anonymous 2010-10-05 6:24

More of ``Less of ``More of ``Less of this.''''''

Name: Anonymous 2010-10-05 6:26

>>16,17
Go back to reddit.

Name: Anonymous 2010-10-05 6:28

>>19
Fuck.

Name: Anonymous 2010-10-05 8:16

>>19
Fuck you, they were quite funny.

Name: Anonymous 2010-10-05 8:55

>>21
I'm sorry. I didn't realize this was /comedy/.

Name: Anonymous 2010-10-05 11:55

>>19
A true redditor would have been offended at 99.9% of /prog/.

Name: Anonymous 2010-10-05 12:44

>>23
Ah, the True Redditor fallacy.

Name: Anonymous 2010-10-05 15:31

>>22
Get that stick out of your anus.

Name: Anonymous 2010-10-05 18:14

>>24
On top of that a True Redditor is a .NET faggot.

Name: Anonymous 2010-10-05 21:38

GOD TIER: C#
GOOD TIER: PYTHON, JAVA, PHP
MID TIER: C
SHIT TIER: BBCODE
C++ TIER: C++

Name: Anonymous 2010-10-05 22:29

C++ TIER: C++
Good one.

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
IAMA from reddit AMA.
And not offended.

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.

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.

Name: Anonymous 2010-10-06 14:15

>>27
Reddit fag

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

Name: Anonymous 2010-10-06 14:28

>>30-32
u jelly cause /prog/'s inferior or cause you yourselves are inferior?

Name: Anonymous 2010-10-06 14:32

>>33
3/10

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

Name: Anonymous 2010-10-06 14:52

>>36
Your list is reversed.

Name: Anonymous 2010-10-06 15:19

>>37
Your face and ass are reversed.

Name: Anonymous 2010-10-06 15:22

>>37
Common Lisper faggot detected.

Name: Anonymous 2010-10-06 15:50

>>36
God tier: C, Python
Hahahahaha... No.

Name: Anonymous 2010-10-06 16:26

>>40
Hahahahaha... Yes.

Name: Anonymous 2010-10-06 16:39

>>40
So wrong. So very wrong. Just plain ignorant, really.

Name: VIPPER 2010-10-06 17:00

FULL O JEWS

Name: Anonymous 2010-10-06 20:54

SEPPLES? C AND RUBY ARE ALL YOU NEED.

Name: Anonymous 2010-10-06 21:11

Wizard tier
Scheme
BBCode

Animals tier
Python
Haskell
LOGO

Terrible! tier
Other languages

Name: Anonymous 2010-10-06 23:47

>>39
SYNONYMS DETECTED

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;
}

Name: Anonymous 2010-10-07 4:52

>>47
oops wrong thread

Name: Anonymous 2010-10-07 5:06

>>48
[x] wrong thread
[x] lack of sage.

Congratulations. You've just have won "moron of the week" special prize.

Don't change these.
Name: Email:
Entire Thread Thread List