Adobe Flash |
0 |
|
Not in use, dead language. |
AutoIT |
4 |
|
Good for small Windows GUI programs or windows automation programs. |
BASH |
3 |
Bourne-again shell |
My favorite shell scripting language on Linux. |
Blitz Basic |
1 |
|
Not in use, the worst BASIC like language for game programming. |
C++ |
3 |
|
Currently, my most favorite programming language, used for cross-platform purposes, game programming and everything that must be ultra-fast. |
C# |
3 |
C-Sharp |
Easy to learn, very much the same as Java, but allows things that are forbidden in Java. |
CSS |
3 |
Cascading Style Sheets |
The number one for content styling on webpages. |
Delphi |
1 |
|
This language is a pure time waste, because of its licensing model. |
GLSL |
1 |
OpenGL Shading Language |
I'm using this to create post-processing shaders for games. |
HLSL |
0 |
High Level Shading Language |
Very similar to GLSL, but for DirectX and not cross-platform. |
INI |
5 |
INItialization file |
My favorite configuration format, easy to read, easy to use, easy to process (Wrote libraries for this in few programming languages). |
Java |
3 |
|
This is the language I can recommend to anyone who wants to learn programming. |
JS |
4 |
JavaScript |
This is the best language I know, f.e. stuff like this is possible:
<code>function(){return function(){return true;};}();</code> |
JSON |
5 |
JavaScript Object Notation |
This data format is my first choice, because it has a very small structural overhead and can be processed by JavaScript directly. |
MongoDB |
2 |
|
A scheme-free, document oriented NoSQL database system. |
MySQL |
3 |
|
Most common relational database system. |
PHP |
4 |
PHP: Hypertext Preprocessor |
That's what I use for website programming, when HTML, CSS, and JavaScript isn't enough. It's the first language I've learned to program. |
Postgres |
0 |
PostgreSQL |
This is an object relational database system I want to learn in the future, because it seems to combine the advantages of SQL and NoSQL. |
Rust |
2 |
|
C was the language from the past 40 years, Rust will be the language for the next 40 years. |
SQLite |
4 |
|
Very much the same as MySQL, but ultraportable, because it's just one file. |
TOML |
1 |
Tom's Obvious Minimal Language |
The INI format on steroids. |
Windows Batch |
4 |
|
Most chaotic and confusing syntax i know from a non-esoteric scripting language. |
(x)HTML |
5 |
(Extensible) Hypertext Markup Language |
Website development from HTML4 up to HTML5. |
XML |
5 |
Extensible Markup Language |
When I can do HTML, I can also do XML. I don't like it, because of its structural inefficiency. |
XPath |
3 |
XML Path Language |
This allows me to select XML content similar to how I select styles with CSS. |
XSLT |
3 |
XSL Transformation |
If I want to display XML data in a human-readable format (f.e. as Webpage), I will use XSLT. |
XSPF |
4 |
XML Shareable Playlist Format |
My favorite data format to describe music playlists. |
YAML |
4 |
YAML Ain't Markup Language |
The data format I use when human readability and usability stays on foreground. |