Bananas Development Blog: Archives

Joe Armstrong. Analyse der aktuellen Programmiersprachen-Welt

Joe Armstrong hat Erlang erfunden und hat eine lange Zeit der Programmiersprachen-Entwicklung miterlebt.

Hier ist mal eine aktuelle Einschätzung über die vielen Programmiersprachen die es heute so gibt.

Hier zum gleich lesen und als Backup:
Old timer here ...

When I learnt programming (1967) ,
I could choose between FORTRAN and (it was rumoured, Algol)
but nobody knew anything about Algol so it was FORTRAN.

The turn round time for a program was three weeks

week 1 - write code on paper forms - send to computer center to be
turned into punched cards
week 2 - review punched cards, if ok send to machine
week 3 - results

The compiler helpfully stopped at the first syntax error which got you back
to week 1 -
so if you had say ten errors in your program it would take 30 weeks to get
it running.

This is a pretty good environment - teaches you not to make mistakes and to
think first.

By about 1970 I was at university and turn round times were down to 4 hours
and you could punch your own cards - it was still FORTRAN

By 1974 I got access to a computer -- a honywell DDP516 - with a colossal
32 KB memory.
So the 474 pass FORTRAN compiler could compile a hundred line program in
less than a week
(or so ...)

Things improved - I went to CERN and used the CRAY1 this could compile 100K
lines of
FORTRAN in 1 picosecond (ie about a zillion times slower than my mobile
phone today)

Still Fortran.

In 1974 (ish) I got to play with a DEC10 - Now I could write FORTRAN,
Basic, assembler
and it had time-sharing (wow) turn round times of seconds. If I'd been In
the USA I'd be Bill Gates,
but this was Edinburgh.

In 1976 I got a job programming a NORD10 in FORTRAN/Assembler and it was
really fast
turn round times of seconds.

In 1980 ish I was still programming in FORTRAN - I forget the name of the
machine
all files were in one directory, no full-screen editor, no revision control
system,
I wrote about 150K lines of FORTRAN for it.

1985 I joined Ericsson - wow a VAX11/750 - new languages to learn. Bye bye
FORTRAN

I learnt (with various degrees of proficiency) Lisp, Prolog, awk, bash,
smalltalk, TCL,
and became proficient in Prolog (aggghhh - the beauty ....)

I also played with just about any language I could get my hands on (ML,
forth, ...)

Then I (1986) got into my Erlang Phase (I couldn't really learn Erlang,
'cos it didn't exist,
so I invented it) - it was really an outgrowth of Prolog+Smalltalk with a
bit of error recovery
concurrency and distribution throw in.

Then I learnt (badly) C - But Mike Williams said my C was crap and looked
like Fortran so he
binned my C ... (why use malloc and free and pointers anyway ...)

I saw C++ coming and read the book - or at least tried to read the book -
there's a dent
in the wall behind my piano, where the book hit the wall - Improvements to
C should make things
easier not more complicated, I thought.

Time passed.

I tried Java (not impressed, ok it's better than C++, but oh so verbose, I
used to get
programmers "white fingers" when programming FORTRAN you have to write
hundreds of lines
to do the smallest thing - Java seemed similar - so verbose) - I also
(later) tried
Python (ok), Ruby (ok), Lua(better), Javascript(I like :-)

It's actually taken me quite a long time to learn all these languages, and
they didn't
all come at once. I had a good 15 years of FORTRAN - long enough to get
good at it,
10 years of Prolog, 20 years of Erlang etc.

I also had a long time to assimilate the new ideas - the ideas in
programming come pretty slowly
- once every twenty years or so somebody has a really good idea,
programming
today hasn't improved much in the last 20 years - it was mess then and it's
still a mess.

IDE's and revision control systems have just made matters worse - now you
have all the
old versions of the mess as well as the mess itself, and the IDE means you
can't even see the mess.

The best IDE in the world is your BRAIN - it's a zillion times better than
these
clicky things.

What's this got to do with education?

Suppose you're starting off.

You can choose between twenty odd languages (all of them good for one
reason or another)
what took me 40 years to learn, you must try to understand in 2-3 years,
this is just not possible.

What languages should a beginner learn, what languages should a school
teach?

Now we get to the paradox of choice - because there are so many
alternatives it becomes
impossible to choose.

Old timers say "choose the language appropriate to the problem" when you
know 20 odd
languages (with varying degrees of proficiency) this is easy to say - but
If you know
two languages Java and C then this isn't much help.

There are literally problems where the solution in a CLP language is a few
lines
and is thousands of lines in C.

What would I recommend learning?

- C
- Prolog
- Erlang (I'm biased)
- Smalltalk
- Javascript
- Hakell / ML /OCaml
- LISP/Scheme/Clojure

A couple of years should be enough (PER LANGUAGE).

Notice there is no quick fix here - if you want a quick fix go buy "learn
PHP in ten minutes"
and spend the next twenty years googling for "how do I compute the length
of a string"

The crazy think is we still are extremely bad at fitting things together -
still the best
way of fitting things together is the unix pipe

find ... | grep | uniq | sort | ...

and the fundamental reason for this is that components should be separated
by well-defined protocols in a universal intermediate language.

Fitting things together by message passing is the way to go - this is basis
of
OO programming - but done badly in most programming languages.

If ALL applications in the world were interfaced by (say) sockets + lisp S
expressions
and had the semantics of the protocol written down in a formal notation -
then we could
reuse things (more) easily.

Today there is an unhealthy concentration on language and efficiency and
NOT on how things fit together and protocols - teach protocols and not
languages.

And teach ALGORITHMS.

Cheers

/Joe

(The dates in the above are approximate)

© Joe Armstrong 2013

Neues aus dem Maschinenraum

Endlich mal wieder Zeit gefunden um Neoterisch ein wenig polieren und mein CMS weiter zu entwickeln.

Neoterisch:
Bereich Wissenschaft mit besonderen Hochschulen und Forschungseinrichtungen Deutschlands. ( Wenn jemand noch weitere Vorschläge hat, nur her damit. )
Optisch habe ich die Schrift verändert. Hoffe es lässt sich nun ein wenig besser lesen.

WordPulse:
Arbeiten im Usermanagement und Umstellung der Passwortspeicherung in der Datenbank auf bcrypt.


Verlustfreie JPEG-Kompression

Endlich mal was Neues und Konkurrenz zu PNG:

Die Independent JPEG Group (IJG) am Leipziger Institut für Angewandte Informatik (InfAI) hat eine neue Version der Software-Bibliothek libjpeg veröffentlicht, die Fotos im JPEG-Format verlustfrei komprimieren können soll.

Bibliothek für verlustfreie JPEG-Kompression

getElementById und jQuery

Warum muss jQuery da eine eigene Suppe kochen ?

Normales JS:
if(document.getElementById('theID')) {
// do stuff
}
else {
// do stuff if not there
}


Das Gleich mit jQuery:
if($('#theID').length == "0") {
// do stuff
}
else {
// do stuff if not there
}


Darauf muss man erst mal kommen !
Warum kann da jQuery nicht einfach false zurück geben, wenn NICHTS gefunden wurde ?

Insipid 1.5

Insipid bietet nun die Möglichkeit Screenshots für einen Bookmark zu erstellen. Bei Anlage und auch nachträglich.

Verwendet wird dazu phantomJS
PhantomJS is a headless WebKit with JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.


Dazu muss phantomJS seperat installiert werden. Sollte aber keine Problem sein. Es gibt Builds für Windows, GNU/Linux und OSX

Download insipid version 1.5



The Humble THQ Bundle

Das aktuelle Paket von Humble geht noch für 12 Tage.
Enthalten sind:

Saints Row The Third
Darksiders
Metro 2033
Red Faction Armageddon
Company of Heroes
Company of Heroes Opposing Fronts
Company of Heroes Tales of Valor

Und zahlen kannst du was du willst ;-)

Doom History

Schöner Artikel über die Geschichte von Doom. Entstehung und die Rolle als Vorreiter.


Doom History
20 Jahre Ballern aus der Ego-Ansicht, 20 Jahre Kontroverse! Id Softwares Ego-Shooterserie feiert Geburtstag und wir huldigen der Arbeit der Texaner mit einer Doom-History.


Weiter so Nexgam !

Missing map pictures in HLStats ?

If you have missing map pictures from a common map, check the other game map folders.
Some maps are duplicate and share the same name on different games. Just copy the image to the new game maps folder and you are done.


HLStats 1.65

HLStats version 1.65 available.

This is a maintenance release without any new features. Bug important bug fixes are included.

Download , Changelog , Feedback

Dem Internet den Saft abdrehen

Ganz einfach, zieh den Stecker bei Amazon.

Amazon Web Services has confirmed that its Elastic Block Storage (EBS) service is experiencing degraded service, leading sites across the Internet to experience downtime, including Reddit, Imgur and many others.
(...)
AWS's massive computing footprint has been estimated to generate 1% of all Internet traffic, with nearly one-third of Internet users accessing sites that use AWS daily, according to a report from DeepField Networks, which provides cloud mapping capabilities.


Razor-qt. Auch auf Gentoo

Razor-qt | The free and open source lightweight desktop environment

Macht einen guten Eindruck und ist schon für viele Distributionen verfügbar

Finde ich eine schöne Alternative zu Gnome oder XFCE. Mal sehen ob dies auch "besser" als Gnome-Mate ist.


Browsing Reddit safely as a coder

http://coderedd.net/

Or as a "worder"
http://www.msworddit.com/

or as a "outlooker"
www.msoutlookit.com


WhatsUp WhatsApp ?

Lesen die keine Nachrichten ? Sind die da taub ? Warum machen die nichts ?
Was muss den noch alles passieren, damit die mal reagieren ?

Webseite erlaubt Whatsapp-Nachrichten im Namen anderer