this post was submitted on 10 Sep 2023
65 points (93.3% liked)

Technology

57418 readers
3487 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

hi, i was interested if perl is still relevant in this day and age. Perl has been on the decline for a very long time now. Perl 6 (now named 'raku) not being backwards compatible with perl 5 code made the already small perl community even smaller by splitting it in half. A good example is lisp with it's thousands of different dialects.

Is it still worth using or is it bound to legacy software forever? Like cobol.

you are viewing a single comment's thread
view the rest of the comments
[–] Muffi@programming.dev 28 points 11 months ago (4 children)

Even if you're writing JavaScript, you should be using proper indentation. What an odd thing to keep you from learning it.

[–] aard@kyu.de 8 points 11 months ago

I write code, indentation is something that the editor just does automatically. If I want to change indent settings I just mark the complete buffer, press tab, and magic happens.

I've been using python for various stuff for a few years now as well, and the indent thing still annoys me.

[–] elbarto777@lemmy.world 4 points 11 months ago (1 children)

Sometimes I want to write a quick oneliner or a quick algorithm to test things out. Or not worry about indentation when trying a solution I might discard in five minutes.

With Python, I don't have that choice.

[–] tsz@lemmy.world 2 points 11 months ago (1 children)

If it is actually a single line ID argue that you do.

[–] elbarto777@lemmy.world 1 points 11 months ago* (last edited 11 months ago) (2 children)

Single line ID? What do you mean?

Edit: I got it now.

So I can place multiple for loops and conditional statements in one single line in Python?

[–] tsz@lemmy.world 3 points 11 months ago (1 children)

List comprehension can actually do that, yes. This is one of the scripting aspects of python I use most commonly, and is probably one of its best-known features for creating "one liners".

[–] elbarto777@lemmy.world 1 points 11 months ago* (last edited 11 months ago) (1 children)

I read about it since I was curious. It seems like you have to craft your code in a certain way for it to be a one-liner. Whereas with many other languages, you don't need to do such a thing. You just put everything in one line and off you go.

Having said that, from a challenge-seeking perspective, writing python oneliners sound fun (I really mean this.)

[–] tsz@lemmy.world 0 points 11 months ago (1 children)

Absolutely bizarrely incorrect take on like everything you've stated as though it were fact. This is some classic reddit hole-digging and I'm loving it.

[–] elbarto777@lemmy.world 1 points 11 months ago* (last edited 11 months ago) (1 children)

You brought me to the middle of the road in an interesting discussion about oneliners and you shove me back to the start. Way to go, buddy.

"Hurr durr u wrong u redditor!!"

Instead of feeling offended, why don't you continue the conversation? Give me some proof that the stuff I read os wrong. Give me some examples, I'm curious!

[–] tsz@lemmy.world 0 points 11 months ago (1 children)

I'm no offended. It's just weird listening to someone make shut up about something they clearly have no experience with outside of memes, while talking like it's complete fact. It's a strange thing to do.

[–] elbarto777@lemmy.world 1 points 11 months ago* (last edited 11 months ago)

At this point you're making a lot of assumptions, and you haven't address the main point. Keep going down that red herring. I did a bit of research, I thought my sources were legit. But oh no... instead of continuing a productive discussion, you had to go down the "u suck, meme boy."

I was curious about python, with my reserves, and you're not really helping. I hope you're not a troll; just a fanatic, which is almost as useless as a troll.

I'll give you one last chance. Otherwise, I'll conclude that the python community on lemmy is not that welcoming.

[–] JTskulk@lemmy.world 2 points 11 months ago (1 children)

I think it's an autocorrect typo. Should be: If it is actually a single line, I'd argue that you do.

[–] elbarto777@lemmy.world 2 points 11 months ago
[–] dukk@programming.dev 2 points 11 months ago

Things get messy though, when you have to break the rules of indentation once in a while or when you have “improper “ indentation. Whitespace is a stupidly messy thing. Indentation should be a style guide, not part of the language semantics.

[–] AA5B@lemmy.world 0 points 11 months ago* (last edited 11 months ago)

No, it really is horrible. I’m an old timer who learned on FORTRAN and other languages that were still suffering from the punchcard era. Making logic based on character positioning, and adding unnecessary restriction, is just so frustrating and tedious. We got away from such constraints by the 1990’s. Let’s not go back.

Sure enough, my kid’s Comp Sci teacher tried to use Python because he read how easy it is to use, but no one succeeded because of the formatting. No one succeeded except my kid, who also became a rock star by helping kids reformat. Anyhow, back when computers were primitive and limited, such restrictions were understandable. They’re not anymore.

Currently I’m a fan of Groovy. All the capability of Java without silly requirements like semi-colons. All the simplicity of Python without silly formatting restrictions