vote up 31 vote down star
16

For me I think it has to be the scripting language of an old proprietary telephony platform I used in the early 2000s. The language itself was not so bad, but the fact that it was meant to be edited with a drag-and-drop GUI, which did not expose all the functionality I needed, was quite frustrating. I also remember having to manually implement many common functions, such as calculating the length of a string.

Whenever I wanted to use "custom" or "advanced" functions, I had to edit the script files in a text editor, but as soon as I opened the files in the GUI again they were reformatted and restructured, which usually resulted in broken code. And, of course, this was an interpreted language, so I would not know it was broken until I actually ran it—oh, and did I mention that it did not run the same in the simulator as in the live environment?

So, what is the strangest programming language or environment you have used, and why did you use it?

Note that I'm interested in languages and environments that you have actually used for "real-world" situations, so Whitespace, Brainf***k and friends are not valid—unless you have used them for something "real", of course.

flag
show 5 more comments

121 Answers

1 2 3 4 5 next
vote up 21 vote down

My second job (circa 2003) had me programming web surveys in a scripting language called Quancept. Although the product it was currently in was designed to do web surveys, the language supposedly had its roots in the 1960's, doing phone surveys. Whether this was ever true I never followed up on but it clearly was an ancient language - no functions, no way to reuse code, etc. Every "question" and "answer" you asked people had to be hardcoded into the script. And it was very limited, but it never failed that the client wanted something herculean done with the presentation of the questions that no amount of scripting or CSS was going to be able to pull off (the resulting HTML had no useable pattern). It had some neat stuff, like how it could randomize answers (to offset people who just picked "C" and moved on) but keep track of where the responses go, but I was dying for a "real" language.

Interestingly, the way I moved up in the company was to make a C# program that would generate code for it. Clients would send us the survey in the form of a Word document. I could paste the question into the "question" textbox, paste the answers into the "answers" textbox, click a button and voila - the necessary script was generated, with all the Word stuff (like the apostrophes and dashes and so forth that the compiler would choke on) stripped out. It would even add it to a running script in the bottom pane and increment question numbers automatically.

When I offered it to my coworkers, they declined to use it. They said that they didn't really trust it but I think the real fear was that it might underscore how trivial a job it was and how unnecessary it was to have them sit there and do it.

And since doing this and some other stuff in C# got me noticed, I advanced in the company. And the scripting job I used to do got offshored (all the aforementioned coworkers saw the writing on the wall and jumped ship by then).

So the happy ending to the story is that I automated myself out of that shitty job and into a better position.

link|flag
1  
Interesting story. Exactly the kind of "war story" I was looking for. :) – Anders Sandvig Sep 15 '08 at 16:28
1  
I just left a market research job... quancept - and it's processing companion Quantum - are special little languages – mabwi Sep 15 '08 at 16:56
1  
thinkgeek.com/tshirts-apparel/unisex/… This t-shirt fits very well. – Ólafur Waage Feb 7 at 5:40
vote up 16 vote down

I'm inviting a flame war, but Perl! Craziest freaking language in the world! I know!!! Its powerful. Yeah, yeah. I get it. But I still think its a crazy, weird language. Just trying to figure out your execution context at any point in a perl script will make you go postal (no offense to any of our fine postal carriers out there).

Also, can't remember the name of it, but there was a dos-based mortgage processing system I used years ago that had its own precompiled language and database format. It was a screwy system. Somebody help me out who knows.

link|flag
show 1 more comment
vote up 15 vote down

APL. I used it in a programming course I took in high school around 1980. Quite mind boggling.

To back up my case, here are some samples from Wikipedia. See if you can guess what they do without reading the wikipedia article:

↑6?40

X[⍋X+.≠' ';]

(∼R∈R°.×R)/R←1↓ιR

link|flag
show 3 more comments
vote up 15 vote down

XSLT is a very strange language.

It is purely functional (no side effects) as Haskell, but has a very clumsy syntax (XML) and has a very limited set of abstraction mechanisms. It's a useful template language for text based and XML based output formats.

It is quite readable (to the extent XML can be called "readable") and it's easy to adjust existing XSLT templates. However, creating new XSLT templates from scratch is a real pain.

link|flag
5  
I actually thought that XSLT was a very elegant way to transform one xml document into another. I used it do do just that as a batch process with a large number of UI pages defined in XML for a (now published) game I was working on. I also created XSLT to create shcmeas from similar component defs. – Tom Leys Nov 5 '08 at 2:10
1  
It's also Turing complete: unidex.com/turing/utm.htm – jleedev Jun 5 at 3:25
show 1 more comment
vote up 14 vote down

Prolog

I have enjoyed it though :)

link|flag
show 3 more comments
vote up 14 vote down

MUMPS is a very good candidate : 1 letter commands. They never heard of something like mnemonics. You can put as many letters ( errr, commands) in a line as you like. Have you ever heard the term letter soup? Well, this is a MUMPS program. Very probably, one can make all calculations to send a rocket to the moon in a couple of pages program. MUMPS is an Operational System and language at the same time. Because of this it is EXTREMELY power-full and compact, but ABSOLUTELY weird. Is mostly used to control medicines, stocks and everything related in hospitals, but, due to its size and speed, it is good for any kind of inventories control. Currently it also can be found as an object oriented language with GUI's and all, and not only in the old "DOS" or text stile

link|flag
show 2 more comments
vote up 14 vote down

Definitely LOLCODE

Example lolcode program:

 HAI
 CAN HAS STDIO?
 I HAS A VAR
 IM IN YR LOOP
    UP VAR!!1
    VISIBLE VAR
    IZ VAR BIGGER THAN 10? KTHXBYE
 IM OUTTA YR LOOP
 KTHXBYE
link|flag
4  
But did you really used this language? – romaintaz Jun 11 at 6:52
show 1 more comment
vote up 10 vote down

FORTH - bonkers. Brilliantly bonkers.

link|flag
show 3 more comments
vote up 9 vote down

Definitely Prolog. Learning that language broke my brain and forced me to completely rebuild my programming skills from scratch, and I'm a better programmer for it.

I had to learn it while working on a control system for a hypermach windtunnel -- thousands of sensors and a complex web of constraints designed to keep the whole thing from exploding. Prolog was the perfect language for it, and actually the system was quite elegant. Just with a terrible UI. :)

I have to say, though, ChucK is awesome, and my canonical example of a domain-specific language done exceedingly right.

link|flag
vote up 8 vote down

DOS batch. It's a pain to do anything significant at all.

link|flag
1  
I'm not saying you can't do anything -- only that it's painful. – Joel Coehoorn Jun 4 at 13:42
show 3 more comments
vote up 6 vote down

Actually used and not just seen as a curiosity? RPG (RePort Generator) on IBM System/38 and AS/400 systems. Strangely, it worked a lot like relay ladder logic used to program control systems.

link|flag
show 3 more comments
vote up 6 vote down

I did a report in college on Icon. Very powerful, yet strange language.

http://www.cs.arizona.edu/icon/

link|flag
show 1 more comment
vote up 5 vote down

AppleScript is pretty weird I think. Examples

link|flag
vote up 5 vote down

PERQ microcode. (Example of RT13 in microcode) 40 some bits of instruction and you got to hand code them all. If you did it wrong, the machine crashed. If you didn't call the Video interrupt service routine often enough, the machine crashed. For debugging, there was a three digit LED on the front that you could increment (not set!). Beyond that you either used PDP-11 Link boards to hook the machine to another PERQ where you ran the kernel debugger, or you leased a $50k logic analyzer and used that......

Fun!

link|flag
show 1 more comment
vote up 5 vote down

Sed is the strangest language I ever used in real-world situations.

If you just use it for regex search & replace, everything is fine. However, that's just the "s" command. Sed support many more one-letter commands with subtle differences between e.g. "n" and "N". Writing bigger sed scripts is a pain. Reading foreign sed scripts is practically impossible.

link|flag
1  
Speaking of sed, someone managed to implement Tetris in it: uuner.livejournal.com/55238.html -- quite impressive, indeed. – Anders Sandvig Sep 26 '08 at 19:35
vote up 5 vote down

RDML/RDMLX is by far the weirdest I've ever used. Conditional statements must be wrapped in single quotes IF they contain certain types of content. This means that literals in conditional statements must have two single quotes around them.

This is a valid statement:

 If COND('#POLN11 *EQ *BLANKS')

As is

 If COND('#POLN11 *EQ ''ABC12345678''')

And that is just the beginning. There is no concept of scope - ALL variables are global. And, like RPG, if you read a file that contains fields of the same name as the ones you're working with, you lose whatever value you had stored. Unlike RPG, there is no facility to prefix a file (prefixes the field names with what you define) to make the field names unique.

link|flag
show 1 more comment
vote up 5 vote down

PostScript.

And ever since I've denied knowing anything about it. :P

Horrible.

link|flag
show 3 more comments
vote up 4 vote down

I use to use the R language (and S) for statistical analysis and modelling.

R is open source and there was no set way of doing things. The way functions were called varied greatly depending on the library used. A lot like PH I suppose.

link|flag
vote up 4 vote down

ChucK, which is the first 'strongly-timed' programming language I've used. It's a music programming language, so you need to have individual threads play 'on the beat'. Because of this dur (short for "duration") and now are as fundamental to the language as int and 0 are to most languages.

impromptu is a similar language, although I haven't had a chance to play around with it yet.

link|flag
show 1 more comment
vote up 3 vote down

I used LabView once and found it pretty unusual to me. It's a very graphical, sort of drag and drop, programming language. Wikipedia: LABVIEW

link|flag
show 1 more comment
vote up 3 vote down

FOCUS for Mainframes is the weirdest one I ever used, I think. Scary to see that it's still in active development.... http://www.informationbuilders.com/products/focus/ibm_overview.html

link|flag
show 1 more comment
vote up 3 vote down

I once worked for the IT department in a telemarketing company (I know, it's evil, that's why I'm not there anymore, ok?).

They had a proprietary scripting language called "Magellan" that had special hooks into the dialing system, so you had events firing for "On Pickup" and "On Hangup"... But as a language it was like some kind of hybrid between Excel and Visual Basic 6.

The company that made it went out of business, but you can still see a few references online: http://www.google.com/search?q=melita+magellan

link|flag
vote up 3 vote down

Gotta be APL (a TLA which stands for "A Programming Language"). Here is an example from another thread. My actuary friend says it's very powerful, but I always called it "The Martian Language".

link|flag
show 1 more comment
vote up 3 vote down

TinyMUSH. It is (was?) a pretty complete language, for the problem space. Later, they added Tcl embedding to it, but that was well after my time. I "worked" on a World of Darkness roleplaying game, and we needed a really good set of objects to represent weapons. I spent a few weeks building a new weapons system, and was really proud of it.

All the code (the routines) gets put in object attributes, and those have to be entered by hand in one line. Some people used a program to convert well-formatted code into single lines and then dumped it into TinyFugue, but for some reason that never appealed to me. I entered all my code, branching statements and all, in single lines.

Programming in such a bizarre environment was actually a lot of fun, but after I became a professional programmer and tried to go back and do it again, I was pretty horrified and unable to keep at it.

link|flag
vote up 3 vote down

Prograph which was a visual programming language.

link|flag
vote up 3 vote down

REXX on OS/2 Warp. I don't even know where to start with that explanation.

link|flag
show 3 more comments
vote up 2 vote down

So far the weirdest languages I have worked with tend to be proprietary scripting languages for various business and scientific languages. In some cases the languages are similar to and older version of Visual Basic for Applications or a more advanced version of BASIC which tends to be fairly easy to pick up and work with. While others tend to be extremely bizarre languages that are less of a "macro language" and more of a way of scripting reports.

So far the worst thing about most of these scripting languages is that they are for one off projects, once I figure out how to write something useful with the language I end up never having to use it again.

link|flag
vote up 2 vote down

Occam is the strangest language I ever used. It is a parallel language, designed to work on more than one processor, and written in an age when that meant lots of computers chained together, which reminds me of the Replicators from SG-1, actually.

link|flag
show 1 more comment
vote up 2 vote down

TRAC. Only language I've ever used where you're supposed to write self-modifying code.

link|flag
vote up 2 vote down

We have a production order management system for convertible bonds in K:

http://en.wikipedia.org/wiki/K_(programming_language)#Examples

link|flag
1 2 3 4 5 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.