Title pretty much sums it up.
I work using a kind of unusual proprietary language (in the sense that it has a niche audience), and am wondering what the strangest language y'all have used is. 😄
Title pretty much sums it up.
I work using a kind of unusual proprietary language (in the sense that it has a niche audience), and am wondering what the strangest language y'all have used is. 😄
For further actions, you may consider blocking this person and/or reporting abuse
Evotik -
Jimmy McBride -
Scott Reno -
Ben Halpern -
Top comments (37)
I dabbled in Rockstar for fun - codewithrockstar.com - I guess that makes me a rockstar developer! 😛
I've also written in Z80 assembly language which I guess is quite unusual
Woo Rockstar is hilariously cool. I think my weirdest assembler coding is ARM RISC on an Acorn Archimedes.
Elixir. Not super esoteric, but the least used language that I use on work.
But I use a PHP framework called Phalcon and that I consider to much esoteric
viml, clojure and bash for me
I have a couple of colleagues who love Clojure, and it's on my list to check out if/when I ever get enough time outside of the other projects in my queue. The language I currently use is also LISP-inspired, but Clojure is more like a true LISP 😄
Oh yeah, I love clojure. But lisp is super esoteric when you first go in for most programmers
Maybe for most, but I think it'll be pretty easy for me to pick up tbh. I use a symbolic functional language that has a lot of similarities
For sure.
For real applications, I think my most esoteric programming languages I have used have been: Prolog, Adam, Eve0.8, Eve2.
Prolog is a declarative language of relations, which solves for queries. I used it when I was a linguistics major. It was created by Alain Colmerauer and Robert Kowalski.
Adam is a declarative language of relations and constraints, which solves for state. It was created by Sean Parent.
Eve0.8 and Eve2 are declarative layout languages, for describing where static text, buttons, edit fields, pulldown, columns, rows, et cetera all go. They have similarities to WPF XAML. Both were also created by Sean Parent.
For toy programs, I've used quite a few of the well known different (and silly) programming languages.
I used Prolog in a programming languages course in college.
The class was supposed to introduce us to how different languages approached similar problems. I was able to make the switch to functional programming with Haskell pretty easily, but Prolog did not click.
POP-11, which I used for a few years at university. It's an extraordinarily flexible language which is now a mostly forgotten relic of old AI departments. It had its own editor, Ved, which was primarily distinguished by being even harder to exit than Vim (I remember resorting to kill -9 on more than one occasion).
Depends on your definition of “use” but I try to complete as many programming challenges as I can in Befunge, or Funge++ my procedural extension.
I wrote a template engine called Candle that was inspired by Razor, but used CSV files as the view model and wasn’t specific to html. A company I worked for used that all the time for data conversion jobs in a smattering of ways. I originally developed it to take CSV output from one system and project it onto an XML template for upload into another system. Saved the company like $40k in consulting fees and they ended up using it for a whole bunch of stuff.
Wish I still had the compiler for it, it was pretty handy given the amount of data that lives only in spreadsheets...
That sounds incredibly useful, I really hope you got a hefty raise for saving them so much $$
Does XSLT count? I've never seen anyone else actually use it, but I used to use it quite a bit for documentation; same documentation needed to be on an internal wiki in wiki format, then html and markdown for a blog. Using XML and XSLT seemed logical at the time.
I've also used it to turn a custom content format sent for i18n into SQL statements to re-import into a DB.
Not how I'd do it now though.
Yes, absolutely it counts! 😄 I work on documentation tools, and I've worked with my fair share of obscure document formats lol
I have used Brainf**k, Arnold C and Piet.
Exploring the ArnoldC programming language
amananandrai ・ Apr 11 ・ 1 min read
Piet is a language whose code looks like an abstract painting.
Wow, I had no idea a language like Piet existed 😮, I'm definitely going to check it out--it's right up my alley!
This great talk mentiones a few fun ones, like a Hello World that is also a tasty Chocolate cake recipe written in Chef.
Ok, this video is straight up amazing, thanks for sharing!
Definitely bash
ngl, I always thought bash was well known/widely used. Maybe it's less common than I thought, or maybe just decreased in use over the years
This is just my perspective, but despite bash (and POSIX shell scriptt in a more general sense) being widely used and relatively well known, I'd actually still consider it a somewhat esoteric language simply because of how drastically different it is from most mainstream programming languages.
There are all kinds of strange quirks and odd holdovers from the largely organic development of the language which make it difficult for people to learn and use in a lot of cases. Examples of this that come to mind include:
!
in the context of the conditional in anif
statement for a really good example, depending on the exact shell and how you put whitespace around it, it's either a command history lookup, a negation of the condition, or a syntax error).Loved reading this comment, thanks for sharing all this!