Author Topic: 10 programming languages you should learn right now!  (Read 2674 times)

0 Members and 2 Guests are viewing this topic.

Offline vezzy

  • Royal Highness
  • ****
  • Posts: 771
  • Cookies: 172
    • View Profile
Re: 10 programming languages you should learn right now!
« Reply #15 on: June 28, 2013, 01:28:30 pm »
COBAL

You mean COBOL.

And I hope you're fucking kidding.
Quote from: Dippy hippy
Just brushing though. I will be semi active mainly came to find a HQ botnet, like THOR or just any p2p botnet

Offline Darkvision

  • EZ's Fluffer
  • VIP
  • Royal Highness
  • *
  • Posts: 755
  • Cookies: 149
  • Its not a bug, It's a Chilopodas.
    • View Profile
Re: 10 programming languages you should learn right now!
« Reply #16 on: June 28, 2013, 02:12:57 pm »
You mean COBOL.

And I hope you're fucking kidding.


i do, i could have sworn i hit O again...and why would i be kidding, old doesnt mean "bad" both COBOL and RPG are old yes, but they have also been continuously upgraded over the years. Lansa was in a category by itself. It's my moms favorite language and i cant blame her for it, it deals with a whole mess of protocols, can change a program from say c# into lansa, or lansa to c#, html etc and the language itself is well structured. just because its primarily used in a business environment doesnt mean the language is bad, or unworthy of being listed. As far as i know it was the first major language to try to (and successfully) allow that kind of interchangeable language/compiling.
The internet: where men are men, women are men, and children are FBI agents.

Ahh, EvilZone.  Where networking certification meets avian fecal matter & all is explained, for better or worse.

<Phage> I used an entrence I never use

Offline Deque

  • P.I.N.N.
  • Global Moderator
  • Overlord
  • *
  • Posts: 1203
  • Cookies: 518
  • Programmer, Malware Analyst
    • View Profile
Re: 10 programming languages you should learn right now!
« Reply #17 on: June 28, 2013, 06:50:09 pm »
Just for shits and giggles, here is my list with no actual order by importance. Mine is more oriented on trying different paradigms.

1. C (the standard procedural language)
2. Smalltalk (the definitive object-oriented language)
3. Lisp (functional programming and historical significance, it pioneered such concepts as dynamic typing and recursion)
4. Assembly (low-level concepts, understanding of CPU registers and machine instructions)
5. Java (for enterprise purposes and to get a feel of the actual contemporary object-oriented paradigm)
6. Prolog (logic programming and artificial intelligence)
7. Python, Perl, Ruby or Tcl (any general purpose scripting language, preferably Python or Perl)
8. JavaScript (client-side web scripting, aspect-oriented programming)
9. Shell scripting + sed, AWK and bc (system administration, pipeline programming, general purpose tasks)
10. REBOL (language-oriented programming)

Additional/alternate picks: Haskell, Pascal, C++

I like that list. *thumbs up*

Offline str0be

  • Serf
  • *
  • Posts: 42
  • Cookies: 8
  • <!-- hi
    • View Profile
Re: 10 programming languages you should learn right now!
« Reply #18 on: June 28, 2013, 09:04:25 pm »
Oh man, COBOL. I bet a guru pulls a pretty good salary. But just look at it:

Code: [Select]
---- hello.cob -------------------------
     * Sample COBOL program
      IDENTIFICATION DIVISION.
      PROGRAM-ID. hello.
      PROCEDURE DIVISION.
      DISPLAY "Hello World!".
      STOP RUN.
----------------------------------------

Example exploit targeting GIMP:
http://downloads.securityfocus.com/vulnerabilities/exploits/45647.cob

My eyes are bleeding  :o

A few interesting languages:
  • Rust
  • Erlang
  • CoffeeScript
  • Haxe



Offline Zesh

  • Royal Highness
  • ****
  • Posts: 699
  • Cookies: 42
    • View Profile
Re: 10 programming languages you should learn right now!
« Reply #19 on: June 28, 2013, 09:58:59 pm »