Spyke
feddit.nl

"Gods, that's stupid. Why is it being done this way? Have they never heard of naming conventions? Is the language really that awfully designed?"

Learns PHP to find out more.

"Yup..."

64
Anticorpreply
lemmy.world

HEY! Is PHP ugly? Yes. Does it use stupid naming conventions? Also yes! But it's an awesome language when you want to get shit done. There's no other languages out there where you can just write some code in VIM directly on the server through SSH and immediately see your results without any further setup. No frameworks required, no packages, no imports, no buzzwords and hubub, just pure unadulterated utility.

8
neidu2reply
feddit.nl

Incorrect. Perl does the same just as well, and it's a language that actually makes sense while also being uglier.

20
lemmy.dbzer0.com

In my experience Perl is a write-only language. Coming in behind someone else and fixing or writing their code is often slower than just rewriting it

6

Perl is partially readable, provided that it's your own code. The one thing perl coders hate the most, is other people's code.

Source: Am a perl coder

2

I'll admit, I have zero experience with Pearl. I do like the uglier point you made though. 50+ DKP

2
programming.dev

Nonsense, there are tons of systems like that now. I've been playing with Deno & Fresh, it's great. Trivial to install, a pretty great language, Fresh doesn't force everything to be client side - you can easily write old school completely server side rendered sites if you want but you get to use TSX which is waaaaay superior to the old text based templating systems we used to use (Handlebars, Jinja, etc.).

It also has built in hot reloading by default so even faster than PHP. Literally hit save and you see the results.

7
Anticorpreply
lemmy.world

What's this install nonsense? I just looked up Deno and it's part of an NPM stack. With PHP you just

  1. Open an Apache server

  2. Write code

  3. ???

  4. Profit!

3
programming.dev

I just looked up Deno and it’s part of an NPM stack.

It's not. It supports NPM modules for backwards compatibility, but the whole point is that it doesn't inherit the NPM tooling mess. You can go from a new Linux install to a running Fresh project in 3 commands.

5
Anticorpreply
lemmy.world

Okay, I'm interested. What stack is it part of? What kind of servers does it use?

1
programming.dev

There's two things:

Deno: this is a replacement for Node and NPM and prettier and some other tools. So one aspect is that it's a more modern Node, using standard web APIs instead of Node specific stuff. And the other aspect is it is more streamlined modern tooling - no node_modules, no complicated build steps, built in Typescript support, etc. In fact you can use a single file as a script, similar to Python.. but unlike Python you can use third party dependencies, which makes it fantastic for stuff like CI scripts, etc. where you might have suffered with Bash or Python before.

Fresh: this is just a web framework targeting Deno. Honestly I haven't used it much but I really like what I've seen so far. I always found React to be confusing and overkill for most sites, which should really be rendered server side, but also I really like the way you can compose components with JSX/TSX in a real language with full type checking. Fresh gives you both!

3

but unlike Python you can use third party dependencies,

In what sense does python not have third party dependencies?

2

no other languages out there where you can just write some code in VIM directly on the server through SSH and immediately see your results without any further setup

laughs in coldfusion

1
Nighedreply
feddit.uk

PHP is native in Linux then?

How is that different to something like powershell?

1

You can't run a website off powershell. PHP can render HTML to the browser, so it's perfect for website development. 99% of the web was PHP back in the wild West days.

2

PHP is a scourge. I wish less server software were written in it. You'll stumble upon some opensource project with a cool UI, run into a problem and find out the docker container has apache, postgres, and PHP in it. Debugging PHP is such a pain and setting up a developer environment is such a hassle because they haven't discovered docker for dev envs yet.

Terrible experience all around.

Anti Commercial-AI license

2
Anticorpreply
lemmy.world

Well, were you able to hack into the porn site? Python seems like an odd choice for hacking a website.

14

I almost did this for a different reason, people choose python because it has some pretty good web automation/scraping libraries to work with.

10
lemmy.world

This was over 10 years ago, maybe 20. I wanted to pick up a new language and I seemed pretty driven, at the time, to hack a certain site. I think I gave up on it and as usual I enjoyed writing the code more than using the app.

It didn't use webscraping or anything too sophisticated. I just applied a few dictionaries I found online and ran everything through a series of anonymous proxies. Very brute force.

6

Ha! I tried the same thing with some random sites like 20 years ago. I managed to get into a few of them and emailed the registered owner that they needed better security.

3
lemmy.ml

Because I wanted to listen to music while doing the dishes.

The Jellyfin Roku client didn't support audio playback, so I wrote it myself... while learning Roku's proprietary language 🙄

39
Flatfirereply
lemmy.ca

It occurs to me I've literally never tried to play my music library through Roku. I usually just cast to a speaker with my phone. Is it part of the main branch?

3
1hitsongreply
lemmy.ml

Yep. That code was merged and released roughly 2 years ago.

2
Flatfirereply
lemmy.ca

Well I thank you for your contribution regardless. Roku is all I've got, so it helps to have people like you annoyed enough, and knowledgable enough to contribute.

3
lemmy.world

I had totally forgotten until this post reminded me: I originally started to learn Python in order to fix a crossword puzzle program.

38

That’s a good reason. I used my Java skills to crack a shareware (a solitaire game) because I had no money.

10

I was playing this really simple mobile phone game, where you basically go on these mining trips, then you tap the screen as quickly as possible. So, I thought to myself, I wonder if there's a way to simulate screen taps, to tap at superhuman speeds.

I found an app for that, this app had its own scripting language. Admittedly, there weren't many concepts to learn in this language, but wait, there's more.

Then I thought, maybe I can also automate the menus, between the mining trips.
But this language didn't have support for multiple files, nor functions, you couldn't even use labels in your goto statements, meaning my code started to get quite complicated.

So, I actually sort of implemented support for goto labels / shitty functions within my program.

Basically, at the start of the file, I had an if-else block, which read the value of a variable and based on that, it would select between different goto statements.
So, if I wanted to "call a function", I would set the variable to the function/label name and then goto 0.

If I remember correctly, I did still need to manually update the line numbers in that lookup table at the start, but at least, I didn't have to do it everywhere in the code anymore.

And yes, I did manage to completely automate grinding that game, using this shitty scripting language.
It was an offline game, and not a good one, I didn't actually care about making progress in it. But scripting it was significantly more fun than playing it myself.

38
mkereply
lemmy.world

That is such a sweet reason! Whimsical decisions like this can be some of the best. Life demands a bit of whimsy every now and then.

Edit: I don't know if you're still interested in this, but have you considered WSL? Assuming you're on Windows, that is. I haven't looked into it, but I don't see any obvious reason why it wouldn't work.

14

Hey, thanks for the suggestion! I was considering firing up a VM just for Hare, but thanks for bringing this option to my attention.

6
sh.itjust.works

God. I didn’t knew that Drew was such a language nazi. If you want to write a Go clone, it must be useful for everyone. Even Emacs is available on Windows officially.

-4
mkereply
lemmy.world

What a harebrained comment.

...Sorry, it felt like such a waste not to say it! The puns!

But, language Nazi? Don't you think that's a bit much? And it must be useful for everyone? Why? I also think it hinders growth, but it's their project. It's well within their right to choose whether they put in the effort to support a platform or not, regardless of the reasoning and how much effort it'd actually take.

They don't even seem to be against the idea, they just don't care enough to be the ones to do it:

According to DeVault, while there's currently no plan to support non-free platforms like macOS or Windows, a third-party implementation or fork could try to make that work. The Register

Even Emacs is available on windows, you say? I think some context is needed, here. See what GNU has to say about the availability of Emacs on proprietary systems:

However, GNU Emacs includes support for some other systems that volunteers choose to support.

Emphasis mine.

To improve the use of proprietary systems is a misguided goal. Our aim, rather, is to eliminate them. We include support for some proprietary systems in GNU Emacs in the hope that running Emacs on them will give users a taste of freedom and thus lead them to free themselves.

Taken from the official download and install page.

12

Sure, and that matters because...? What negative effects is this choice having on hare that go against hare's objectives?

You seem to be treating hare as something it doesn't want, nor care to be.

I like to describe Hare as a simple, conservative, modern update to C, with a FOSS ethos. It doesn’t try to break computer science ground, or promise to solve a million dollar problem.

Guess you could say they're probably not friends of million-hares. Ha, ha.

And upstream Hare will not support non-libre operating systems. That’s a lot of conviction, but Hare isn’t trying to take over the world. It will coexist with the diversity of languages out there, and thrive in its own niche. In short, the Hare project develops for a libre future and for the deliberate programmer, not the corporate, the ephemeral and the reckless.

From Torres, one of the core contributors.

Their wants and metrics for success aren't the same as yours.

11

Not really a dumb reason, but back in the day I was stuck in the WordPress developer loop and tired of it. I was pretty familiar with a handful of languages, but wasn't doing much more than setting up themes and building out pages with builders.

One day I heard the CTO talking about a tool he would love to have but couldn't find anything that worked how he needed it to. The CTO was a big buzzword guy and recently shared an article with my manager at the time about how C++ was "the best language". So naturally I chimed in and told him I could build that tool easy peasy and I would use C++ obviously because it's the best language.

It was such a simple tool, basically just matching phrases and categories and spitting out a list of options. It took me months to make, but I learned a lot and it kind of worked for the most part and everyone was happy. I eventually got a de-facto department in the company where I would just build internal tools and handle some legacy codebases that they were previously outsourcing.

I later on got my current job because of that leap.

TLDR: I learned C++ because I was bored and lied that I already knew it.

22
lemmy.world

I started learning Lua for a WoW add-on. Not even making my own add-on, just tweaking someone else's.

22

I learned Minecraft's data pack language for the same reason. 20w14infinite needed a Portal gun, I found a working one, but tweaked it to my liking

3

I, as a teacher, have had to learn several languages, but that's not the dumb reason bit. The dumb reason bit was WHY I had to teach Python, which once I learnt it (so I cold teach it) I could see right away was NOT a suitable language for teaching to Year 7 (who up to now have only used Scratch). I was teaching the U.K. curriculum, and I found out that teaching C# was also allowed - still not ideal, but better than Python for learners -but pretty much all schools were teaching Python. When I dug into it I found I was far from alone in not wanting to use Python... and I also found out the reason schools were teaching Python. It was because from an ADMINISTRATIVE point of view it was much easier for the schools to have us teaching Python. In other words, the office-workers who didn't have to teach it, only had to admin it, were forcing everyone to teach Python because they wanted the lower overhead that came with installing/maintaining that vs. C#. ARGH! All the teachers who wanted to teach C# were running into exactly the same road-block.

21
kuretareply
lemmy.ml

I'm really surprised to hear that teaching C# to 7th graders is easer than teaching them python. Python was invented to teach. It looks like pseudo code. I have almost zero experience in teaching so I trust your experience. But can you elaborate a little? What makes teaching C# easier?

38
ebits21reply
lemmy.ca

Surely an unpopular opinion lol.

Python is a great first language.

18
kuretareply
lemmy.ml

Pascal was my first language. Self-taught. It was pretty good.

5

As it is, when we had to teach them HTML, the resources we were given were using PHP at the same time, so I scrapped that and just taught them HTML myself. We never teach more than one concept at a time, so I don't know how these other things found their way into the curriculum/resources.

4
apolo399reply
lemmy.world

I hate having to cater to the lowest common denominator, I had to struggle with un-engaging classes all throughout elementary and middle school. I've seriously thought about becoming a teacher so I'd like to ask, in your experience, what happens to the children that are able to process more advanced information? Can something be done to keep them engaged and nurture their development too?

Edited an unfortunate typo

5

Oh definitely! Different students have different learning styles - some learn by memorising rules (ROTE), some learn by understanding the rules (Constructivist), some are visual learners, some are better at learning in group activities, etc. - and we have to cater to them ALL, to keep them all engaged (here's WHY we have this rule, here's a video about it, here's a group activity about it, here's a worksheet to practise it). But I was referring to the TOOLS that we use with class. We can't use a tool that the advanced students have no trouble with but the less adept students struggle with - we have to use a tool that the whole class can use, and that's what I meant about catering to the lowest common denominator.

Also some (not all) schools have special classes for gifted and talented (G&T) students. And in fact one class I've had in my time is a class which was comprised of half the students had various learning difficulties (such as being dyslexic), though they weren't told that (these days it's all about trying to keep them in the mainstream as much as possible. So in this class the dyslexic student had a regular student sitting next to him for immediate help with reading anything, which left me free to only need to help him with actual educational issues).

2

it looks like pseudo code

Does it though? I imagine most pseudocode looks like the language the writer is most familiar with. My pseudocode definitely doesn't look like python.

6
JackbyDevreply
programming.dev

I've always seriously questioned why python has become the defacto beginner language. Sure, a simple print hello world is short, but I feel like static languages are easier to see what's going on.

15
lemmynsfw.com

I'm curious why you think Python is unsuitable. Both of my kids picked up Python pretty easily.

10
  • object-oriented (this is their FIRST proper programming language - they don't even know how to write loops yet and you want us to teach them OOP at the same time?! And as it turns out, I had one student who literally could NOT work out how to use a loop - kept writing 20 variables for 20 iterations. i.e. her variables never varied!)
  • variables are weakly-typed (use it for anything, whether it's what you first used it for or not, Python doesn't care)
  • indentation has to be exact (i.e. no brackets, just exact indentation). I had one student whose program wasn't working, and it even took ME a while to find what was wrong with it (a missing space).

I think there was more, but that's what I remember off the top of my head. If it was up to me then I would've used Pascal - that's what it's designed for! But at least C# has strongly-typed variables, and doesn't care about your indentation (and unfortunately there was no non-OOP language choice available - I'm not sure how this got in the curriculum when every teacher knows you only teach one concept at a time). As I said, many other teachers felt the same way, but couldn't get it past their school admin's.

17
jjjalljsreply
ttrpg.network

You can use types in Python and your tools will generate warnings

def something(a: int) -> int: return "potato"

will turn yellow in an IDE more advanced that notepad.

Most editors will also show a red line where the indentation is wrong.

3
jjjalljsreply
ttrpg.network

If you're writing any language in like notepad, you're going to have a bad time. I accept your point that school administration may be making questionable choices about what software is installed, but that's not a problem unique to python.

3

that’s not a problem unique to python

No, but it's a bigger problem for C# than is is for Python (though this is changing now), so all the U.K.-based schools were teaching Python, rather than the more-appropriate C#. That was my original point - that's the dumb reason I had to learn Python, school admin's wanted the lower overhead of the worse language.

3
uthrediireply
programming.dev

object oriented

Python does have OOP but you are not at all forced to use it. You can write code in a functional or even procedural style.

typing

I do hate that python doesent have proper support for typing but I think weakly typed variables will actually help beginners as it is less to think about to start off with.

indentation

I think there are pros and cons here. In other languages it is considered good style to use indentation anyway.

I'm sure it is difficult to teach a large class like that though. It was hard enough for me to learn with a much more favourable teacher to student ratio than you probably have. Sorry but honestly I do sympathise with admin as well.

3

Python does have OOP but you are not at all forced to use it.

Not as an individual, but I'm talking about a situation precisely where the individual choices of teachers are ignored, in some cases by school admins, in some cases by faculty choices. Fortunately I also ran a computing club, in which I was autonomous with how I ran it, and I taught my computing club students C#/MAUI... but even then still saw some of the issues you run into with teaching students. e.g. I told them to install Visual Studio ready for next week, showed them where it was, what workloads to install, and then the next week one of the students had installed Blend for Visual Studio, not Visual Studio. "Look, it has Visual Studio in the name!". (sigh)

I think weakly typed variables will actually help beginners as it is less to think about to start off with

No, that's exactly the problem to start with. Another rule of teaching (see below for the full list I'm quoting these from) is "never let the first impression be a wrong one". If you let students think they can use variables for anything, then you run into problems when they can't. This is why teaching them with strong types first is better - they learn you need to be careful with how to use them, THEN maybe you can let them have some more freedom like Python allows.

In other languages it is considered good style to use indentation anyway

Yes, but in those languages it's optional. In Python it's mandatory, and if someone's code isn't working it's far easier to spot a missing bracket than a missing space.

6
JackbyDevreply
programming.dev

It's odd to me that you're disagreeing with their actual experience teaching.

5
Nighedreply
feddit.uk

Lots of us have the experience of being the kid in that situation though. I learnt python in secondary school.

-1

have the experience of being the kid in that situation

Which kid? The gifted one, the one who didn't understand loops and used 20 variables for 20 iterations, the one who didn't understand how to write pseudo code, the one who was dyslexic,.....?

I learnt python in secondary school

Which Year? I didn't say it wasn't appropriate for high school, I said it wasn't appropriate for Year 7 as a first programming language.

3

Lots of us

Also, who do you mean by "us"? Programmers? Not all the kids in class want to be programmers, and this isn't a programming class - it's Computer Science. We cover topics like hardware, the Internet, Cybersecurity, the history of computers, data analytics, etc. Not only do not all of them want to be programmers, not even all of them want to be in I.T. - they're just, you know, interested in computers (or in some cases they're in the course because their parents think they should be in it - I've had a couple of those students). We only spend 6 weeks on programming (we spend 6 weeks on each topic), or sometimes we might do it twice and spend 12 weeks on it, and that's it for the year! You can't teach Year 7 kids algorithms, pseudo code, basic programming concepts (variables, branches, and loops) and OOP as well in one year. Especially when not even all of them are interested in programming. It's just one topic we cover. OOP is something that shouldn't be covered until at least Year 8, preferably Year 9 (by which stage students have decided if they want to continue on this path or not, and the ones we still have left we start getting more hard-core... which is where the "us" I presume you're referring to come in).

2
programming.dev

Why do you even have to mention OOP? C# is object oriented too. Would you start explaining OOP too when teaching C#?

Python is comparatively easier as it's nearly literally pseudo-code. There's no need to even write a main function or functions at all. It uses less characters too e.g no need for semi-colon, brackets in for loops and if statements

As for indentation being exact, IMO that's on you. Beginners should be given a proper development environment to work in that helps them as much as possible. Modern editors and IDEs point out syntax errors and indentation errors are incredibly basic. If they are working in an environment that doesn't even point that out to them, they have been setup incorrectly.

Anti Commercial-AI license

2

Why do you even have to mention OOP?

Because I was saying why it's a bad choice to teach to Year 7. I already said if it was up to me I'd teach them Pascal.

C# is object oriented too

Yes, I know, but in this case it's the lesser of 2 evils, for the other reasons I gave.

Python is comparatively easier as it’s nearly literally pseudo-code

And as I just said to someone else, students even struggle with pseudo code.

e.g no need for semi-colon, brackets

And I already said that's one of the drawbacks - indenting has to be EXACT or your program doesn't work anymore.

As for indentation being exact, IMO that’s on you

It's not on me - it's in the language itself to begin with. I have no control over it.

Beginners should be given a proper development environment to work in that helps them as much as possible. Modern editors and IDEs point out syntax errors and indentation errors are incredibly basic

Now see if you can get the school admin's to install those ones. As I said, that's the root issue to begin with - the school admin's.

If they are working in an environment that doesn’t even point that out to them, they have been setup incorrectly

Now see if you can get the school admin's to fix it. Welcome to the struggle the teachers face in teaching what WE want to teach them.

7
Eezyvillereply
sh.itjust.works

It seems you did the best you could with what you had to work with. It's a shame the other users don't understand that you didn't get to choose the tools your students could use and instead went with what they, in their freedom to choose and install what they want, would have used to teach. I can imagine you only had notepad and Idle to use.

5

Thanks. From memory we were using repl.it, or something very similar. This made it easy for me to look at their code when they had problems (and even then, as I said to someone else, it was quite a while before I realised one of them simply had the wrong indentation on one line - I kept looking at the code and thinking I couldn't see anything wrong with it, then eventually I realised there was a wrong indentation. If it took me that long to realise, then of course that's something students are going to struggle with).

2
Nighedreply
feddit.uk

I learnt to program in python (in year 12). It was pretty good:

  • less intimidating than the languages full of braces/brackets.
  • as it's also a scripting language, you can ignore OOP and just write code.
  • has lots of kid friendly drawing libraries (tortoise.py anyone?) so they can make things they can see on screen etc
0

P.S. the students aren't going to have any tests where it matters until Year 10, and the curriculum even says that at least 2 languages must be taught (in my case we chose HTML as the second language, because...), and so even though many teachers would like to teach their students C#, the schools simply aren't LETTING them do that. They don't want the admin overhead that comes with teaching C#, so it's Python and.... nope, it's just Python (and so then you have teachers opting for a second language like HTML, cos they can't get their school/faculty to buy-in on teaching C#, simply because they don't want the admin that comes with it. The fact that it's a better language to learn isn't even considered).

1
Nighedreply
feddit.uk

Is the fact that C# produced executables also a problem? With python you can 'protect' non lab computers at the school by just not installing the python runtime on them. Teach them c# and I guarantee they will be making executables to cause trouble.

Generally agree with you that teachers should be able to choose at least one of the languages to teach. basic web dev stuff is probably pretty useful to them though if it includes JavaScript?

1

Is the fact that C# produced executables also a problem?

Trust me, the conversation never even gets that far.

just not installing the python runtime on them

We weren't! We were using repl.it (or something very similar). I don't know what the story was at other schools, other than many other teachers also wanted C# but had to do Python (it was when I came across this that I finally accepted defeat in trying to get another language in instead of Python. I wanted to start with Pascal and then do C#. In the end I had to do HTML and Python. i.e. the status quo).

Generally agree with you that teachers should be able to choose at least one of the languages to teach.

We're supposed to be able to choose both languages, but school admins are taking away one of our choices.

if it includes JavaScript?

I wouldn't do that at the same time as HTML - maybe later, separately. As I've said, as teachers we only teach one concept at a time.

1
Nighedreply
feddit.uk

I leant from scratch as my first programming language in year 12.

They tried to teach OOP in year 13, but I didn't really get it until university.

This was years ago at this point, I think they introduced the programming GCSE the year after I did my A-Levels.

A scripting language like python is the ideal language to start with because you can JUST learn the programming bit without worrying about OOP, project structures, compiling etc.

1

I think they introduced the programming GCSE the year after I did my A-Levels

I was teaching the IGCSE, to students all over the globe.

you can JUST learn the programming bit

But NONE of the resources which have been provided to schools do it that way - they ALL use OOP. If that's what your faculty has chosen to use, then that's what you have to use. It comes back to what I've been saying all along - the schools are dictating to the teachers what they are to teach, and it's NOT based on what's best for the students educationally, but what has the least admin overhead for them. That's the stupid reason that I had to learn Python - admin concerns!

3

Oh, ok, that's annoying then. One of those cases where it feels like the person putting the course together has never actually interacted with children?

2
programming.dev

Honestly, I taught myself JS in like 2009 as my first programming language. My high school taught Java, but I didn't get OOP. I understand functional programming though, so after JS I taught myself Elixir, then OCaml and Haskell. I really wish I was just taught Clojure or another lisp-like in school though. Python is... okay... I need expressions in my language, though, and Python is not that.

2

I wanted to make a scripted version of pinochle because my friends and I play it a bunch on tabletop sim and there was nothing available, so I learned LUA

18

I learned pinochle as a kid, but can't remember how to play now.

I learned Lua as a programming student but can't remember how to use it now.

1
programming.dev

I was a teacher's assistant in beginner's programming at university for a bit. I expected them to learn C, which I knew enough of, but I got assigned to a group that learned Python instead. I had never used Python at the time. I ended up having to speed learn it while trying to teach it, to not be completely useless.

18
Ogeonreply
programming.dev

That's silly. Luckily, I don't think this was the same situation. This was at a university and they had classes with other languages. The beginner classes were split into two variants, where some students (mostly CS students) learned C, and other students (economy, etc.) learned Python. I suppose they figured it was more useful to them or something.

5

It's hyperbole, but I learned my first language because I wanted to be a god.

I saw these magic windows that popped up, that had buttons, and I was jealous of these godly creators holding the power to make them do as they wanted. So, I learned it myself. I peeked at another program I was using, it was using python and PyQt so that's what I set out with to become my own god of the desktop.

My first program was a GUI wrapper around the YouTube-dl CLI, and I still use it frequently.

17

Hey, that's similar to me! Except I'd call it a wizard rather than a god. I wanted to learn the cryptic combinations of words that willed things into existence in the digital world. 23 years later I'm a senior professional, doing the same thing, and still learning too.

8

Lemmy UI constantly pissed me off, Photon didn't quite do what I wanted, so I forked it and learned Svelte. lol

16

I inherited a C# code base that had a custom runtime loader for APL modules. Over half of the app was actually written in APL with C# just hosting the API.. so yeah, had to learn that. I don't recommend it but some people seem to really love the language. Those people are often statisticians, not programmers.

13

I was trying to rank up in Codewars, and there was a 1kyu (hardest and worth the most points) kata only available in OCaml, so I learned it in order to solve.

12

I wanted to see what the COBOL job market looked like. So I learned the superficial basics of COBOL in a day or two, just so I wouldn't be a complete fraud when I put it into my linkedin profile as a skill to see what happens.

12
infosec.pub

Didn't get a single reqeust, so this had less impact than expected. Thought there was more old rusty companies looking for a non-retired engineer.

10

Yeah I think that's mostly a myth. When I looked up salaries they were definitely good (for programming; amazing for the average person), but not "I would write COBOL for that" good.

There aren't really that many old COBOL systems around. I think it's mostly just over-reported because you can write an article about how some government department still uses COBOL but you can't write about one that switched to Java.

10

We found a RCE on a server during pentest. In KOBOL.

Learning how to make a reverse shell in KOBOL was pretty unique experience. Thankfully, we found another path to DA ajd didn't have to continue, but maan, learning KOBOL, especially of your use-case is niche, is borderline esoteric.

12
sh.itjust.works

Arduino and Python to create a sexy machine that syncs up to videos. Oh I also made the sex machine part, like machining metal parts and soldering electronics.

12
bambooreply
lemmy.blahaj.zone

please tell me you created a dick object for the project which is exactly the same as a dict object.

6

Maybe not dumb but I've definitely been forced to at least partly learn a few terrible languages so I could use some system:

  • PHP so I could write custom linters for Phabricator. Pretty successful. PHP is a bad language but it's fairly easy to read and write.
  • Ruby so I could understand what the hell Gitlab is doing. Total failure here, Ruby is completely incomprehensible especially in a large codebase.
  • OCaml so I can work on a super niche compiler written in OCaml. It's a decent language except the syntax is pretty terrible, OPAM is super buggy, and I dunno if it's this codebase or just OCaml people in general but there are approximately zero comments and identifiers are like ityp, nsec, ef_bin... The sort of names where you already need to know what they are.
11

I learned a bit of FORTH because an old Minecraft mod (Redpower 2) had a computer that could run it.

10

Had to learn Javascript for web development class.

In all seriousness, I found out about Nim from the debug log of a discord bot and decided to give it a shot. It's now my favorite programming language.

9

I learned lolcode in college because we had to write a sorting algorithm in assembly and "any other programming language."

9

No idea, if this was the case for you, but learning how the magic works can definitely make it less magical...

5
Okareply
sopuli.xyz

I became a Game Programmer. Job market sucks right now, so I'm cleaning toilets and taking out trash at a grocery store.

But hey, on my days off I sometimes have time to work on games.

3

I wanted to get into creating video games.

I ended up in software engineering for financial companies. It killed my hobby love of programming but the salary is worth it. Exceptionally lucrative, and I have never struggled for work, with great pay, bonus, benefits, equity

3

Ruby because it was the first popular Japanese language. I wrote a few useful scripts and it was nice. Then it was swallowed by Rails, and killed by Python. No one uses it around me but it was fun.

8

I learned a bit of KOBOL after hearing it was the weirdest, hardest, and most unused programming language back in highschool. But only really enough to do a hello world and other very simplistic programs. More because finding resources at that time was difficult.

7

I tried to learn some back around 2019. I don't remember why, but there was something going on relating to it at the time? Maybe it was as simple as me reading an article about Cobol devs retiring.

1

Objects weren't properly saving in a game, so the developer showed me what code I could copy paste to enable objects to save. Much like Thanos, "fine, I'll do it myself".

7
sh.itjust.works

Perl because a system I worked on was just a bunch of Perl scripts in a trench coat pretending to be a program.

I learned it because the ancient beast kept breaking because it just a bunch of Perl scripts in a trench coat cobbled together over generations.

7
ssmreply
lemmy.sdf.org

because a system I worked on was just a bunch of Perl scripts in a trench coat pretending to be a program.

Hmm... OpenBSD ports system and package manager?

2
lemmy.ml

I learned bash instead of python because my 8 year old brain saw all the parentheses and thought "ew no"...

7

Experienced me sees a language where parentheses are optional and I think "ew no"

4
feddit.org

I was forced to do it during my conscription service to implement an excel merge in VBA because that was the programming installed on the system. Fuck VBA and the integraded VBA Editor in Excel

5
aluminiumreply
lemmy.world

Österreich oder? Hab ich damals auch bei einem HTL Praktikum gemacht.

3

Ja genau war während des GWDs befohlen worden VBA zu lernen um die ganzen Excel und Access Anwendungen zu erweitern, wo hast du VBA geschrieben?

1
andioopreply
programming.dev

This feels like me wanting to learn Hare because I like rabbits, which I bring up because someone left this reply for me and I think it applies to you too:

That is such a sweet reason! Whimsical decisions like this can be some of the best. Life demands a bit of whimsy every now and then.

5

We should be able to figure this out. Which year, month, date and hour of the day was it?

18

Might not be dumb, but I learned programming to create things and learn how things worked. Started with entering in hundreds of lines of BASIC printed in magazines, including debugging font typos.

Then learned MUF, or Multi-User Forth, a stack-based text language for creating text based dungeons, and managed to stop some malicious users spying and people's privacy in the server.

Every so often, I pick up a new language to test it to see if it does cool stuff or help me further learn more about how things function.

5

Because I couldn't find any dev to help me make the game I wanted to make.

4

Needed to write a syntax highlighter for VB.Net but I couldn't find any weirdly written edge cases online, so I had to make some myself.

4
lemm.ee

To have an easier time with another language (which the first language’s valid syntax is a superset of) which it papers over the faults of. And usually it’s pretty thin paper.

4