this post was submitted on 03 May 2024
68 points (94.7% liked)

Ask Lemmy

26916 readers
1591 users here now

A Fediverse community for open-ended, thought provoking questions

Please don't post about US Politics. If you need to do this, try [email protected]


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 6 months ago

Fluent in c#, c++ and elixir, know a lot of other ones. I'll be to get back to python in a few months for a new job.

[–] [email protected] 3 points 6 months ago* (last edited 6 months ago)

Know:

  • Python
  • Matlab
  • Halcon
  • VPM
  • basic
  • C/C++
  • C#
  • JavaScript/Typescript
  • SQL

Want to learn:

  • Rust
  • Go
  • Kotlin
[–] [email protected] 1 points 6 months ago

I'm a retired programmer. A recent attempt at writing a Python script showed me that I have forgotten a LOT of the syntactic details. With that in mind, these are the langs that I have used professionally. "Know" might be an exaggeration at this point. HP basic Fortran C C++ C# Java Perl Python HTML (if that counts) Awk/sed

[–] [email protected] 3 points 6 months ago
[–] [email protected] 1 points 6 months ago

Don't know any, don't want to know any. Not a good field for my brain or soul.

[–] [email protected] 2 points 6 months ago
[–] [email protected] 1 points 6 months ago
  • C#
  • Java
  • Kotlin
  • JavaScript/Typescript
  • Python
  • Go
  • Ruby
  • SQL

I'm sure I'm forgetting some.

[–] [email protected] 3 points 6 months ago* (last edited 6 months ago)
  • CL
  • RPG II
  • RPG III
  • RPG400
  • RPGILE
  • PL/SQL
  • SEQUEL
  • SQL
  • Assembler
  • This line intentionally blank
  • Basic
  • Visual Basic
[–] [email protected] 3 points 6 months ago (1 children)

I can do enough HTML to customize my MySpace profile

[–] [email protected] 3 points 6 months ago

Can you teach me how to add a midi file?

[–] [email protected] 1 points 6 months ago* (last edited 6 months ago)

Can reliably code in: Swift.

At some point in time have written code in: C++, Java, Python, ActionScript 3, Objective-C, C#, Lua, GDScript.

[–] [email protected] 1 points 6 months ago

A dozen flavours of BASIC, a few of C, Fortran, Pascal, and one or two others.

[–] [email protected] 3 points 6 months ago

I know Python, R, the STATA ado-language (a horrible proprietary progamming language), MATLABs language, Javascript and some minimal C++. What I know really well though is R and Python. So typical profile for a (data) scientist.

[–] [email protected] 2 points 6 months ago* (last edited 6 months ago)

I'm fluent in C#, C++, C, Rust, Java, Python, and JavaScript, plus Sass/CSS, HTML, and SQL, although I'm not sure they count as full languages. I've also worked with Dart, Kotlin, Assembly (various flavors), Bash scripts, F#, Perl, and Lua.

I've probably done more but can't remember them all offhand.

[–] [email protected] 1 points 6 months ago

I know that they're not really "programming languages" but I've used a little bit of Batch, HTML and CSS in the past and I also use a little bit of Bash occasionally.

I use/used Bash and Batch mostly for creating desktop shortcuts or for running games/apps with specific parameters.

For HTML and CSS I used to maintain my own website a few years ago through Neocities but I deleted it after about 9 months because I never got any positive feedback from the people who viewed it and I lost interest. I do occasionally think about creating another website under a different name but I have no idea what I'd do with it.

[–] [email protected] 2 points 6 months ago* (last edited 6 months ago) (1 children)

Can code in without code completion or checking the docs: C, C#, Scala, F#, SQL (ms server), js/ts, Erlang, Elixir

Have a general idea of but may need to check things about the standard library every so often: Kotlin, Python, OCaml, C++, prolog

Have used in the past but would need to look up the syntax to use again: Go, Rust, Haskell, Java, Gleam

I'm probably missing some from each category though

[–] [email protected] 1 points 6 months ago (1 children)

What's your thoughts on Gleam vs Elixir?

I just started learning elixir last month then I read about gleam, watched some video introductions, it looks good, but I think Elixir is still the better language to learn right now to choose one.

[–] [email protected] 3 points 6 months ago (1 children)

So personally I prefer Erlang to Elixir - the language feels more like it was designed around the programming paradigms it supports (message passing, everything's one of about 6 types for efficient serialisation etc), whereas Elixir feels like "what if we made a language with syntax like Ruby that worked like (and with the backend of) Erlang?" - there are some aspects I like, such as how the vast majority of things, even def, are a function call, and the parameter lists, but it feels very much like there's a lot of workarounds of the design principles of the language to get it to work

I also prefer Gleam to Elixir - it brings much nicer functional programming than either Erlang or Elixir and of course typing, which feels very missing from Elixir but not from Erlang, which is far clearer that something is one of very few types and lets you handle multiple types in a very natural feeling way. It also feels more akin to modern "full featured" (as opposed to scripting) languages than either Erlang or Elixir does.

Basically if you're learning something for employability, learn Elixir. If you're learning something for a potential business idea, use Gleam. If you're learning something for personal projects, see if Erlang is intuitive for you - if it is, I can guarantee you'll love it, if not, use Gleam.

[–] [email protected] 1 points 6 months ago

That's a great perspective, thanks for sharing that and it makes me want to reconsider using Gleam, but even more so makes me want to properly learn Erlang. And actually I'm not really a fan of Ruby, so that's not something I'm attached to in Elixir.

I certainly appreciate the introduction of typing in Gleam, but one criticism I've seen of Gleam is the lack of function overloading, that is such a core feature of both Erlang and Elixir.

[–] [email protected] 4 points 6 months ago

Enough that I can code in pretty much anything. I think the typing point was when I coded professionally in my 4th or 5th language some time in the early 90s.

[–] [email protected] 1 points 6 months ago

C#, F#, Visual Basic, SQL, Powershell, JavaScript, Regex, a little Bash, Vimscript and Haskell

Knew, but haven’t used in the last 20 years: C/C++, Java, Object Pascal, Ada

[–] [email protected] 1 points 6 months ago

Python, C#, Rust

Used a bit of C++ and Matlab, but saying I know them is a stretch really.

[–] [email protected] 1 points 6 months ago

Python, but we're more just acquaintances, I wouldn't say I know them well or anything

[–] [email protected] 7 points 6 months ago (1 children)

I find this question very interesting. What does it mean to "know" a programming language. They map to certain paradigms for how to solve problems, in various degrees, with different tradeoffs there for surrounding tooling, libs, and what not.

A bunch of the most familiar ones are procedural with different sprinkles on top, and they pretty much do the same things when it comes to the "language" side. So, "knowing" one, or another, IMO, has little to do with the syntax, parsing and keywords, and is much more if you have suffered through cryptic compile errors, figured out good debugging tooling, etc.

Which is to say, if we compare these two list

  • C++, Haskell, Prolog
  • C++, Java, Python, Rust, Kotlin, Objective-C, Dart, etc

I'd consider the first one much more impressive in terms of diversity in "knowing programming languages". And, I say that as someone belonging squarely in the latter.

[–] [email protected] 2 points 6 months ago

Yeah this question seems weird. Isn't programming less about knowing and more about solving?

[–] [email protected] 4 points 6 months ago* (last edited 6 months ago)

I'm not great at any language but I know mainly Python, PowerShell, and some Bash. I don't like Bash.

The first Programming course I took was in C++ which I actually like the syntax of. Unfortunately I have not used it in years. The course was also pretty simple with exclusively simple CLI programs so I never had to worry about anything like garbage collection or optimization. So the only c++ programs I have written are quite similar to something similar in Python or PowerShell.

The second course was in C# but I don't really remember anything except that classes exist.

It's not a programming language but I also know HTML and CSS.

I really should learn JavaScript someday. Rust also seems to be pretty good.

Perl is supposedly pretty good too, so I should learn that for scripting.

[–] [email protected] 1 points 6 months ago (1 children)

Python, C, and FORTRAN are my main languages. Some projects have also led me to write code in Java, C#, C++, Javascript, and Lua.

[–] [email protected] 1 points 6 months ago

High, how performane?

[–] [email protected] 1 points 6 months ago

Can reliably code in - Python, Lua, R (if it counts)

Can badly code in - C++, Prolog, Visual Basic

Can read the syntax of - Java, JavaScript, GDscript, Basic, SQL

Will never touch - PERL

[–] [email protected] 2 points 6 months ago

Python, Rust and Lua. SQL if that counts as well.

[–] [email protected] 2 points 6 months ago

I've dabbled in a LOT more, but if I had to give an honest answer to languages I could write whatever I want with it the answer is probably C, C++, Python, JavaScript, Java, C#, Bash.

I've been meaning to learn Rust, and all of the people here claiming it's their favorite language is very interesting, but I haven't found the time because it's just not relevant to what I do for work (and not likely to change anytime soon).

[–] [email protected] 2 points 6 months ago

Java/Kotlin and JavaScript/Typescript primarily now. I used to know Visual Basic, PHP, C/C++, and COBOL; but I haven't touched any of them in almost 20 years now.

[–] [email protected] 1 points 6 months ago* (last edited 6 months ago) (1 children)

Order of learning:

  • Garry's mod Wiremod Expression 2
  • C#
  • C++
  • C
  • Rust
  • Nim
  • Lua
  • Python
  • Javascript/Typescript
  • POSIX Shell Script
  • Elixir

It's very easy to change languages once you learn the fundamentals. I've worked with more languages but those are the ones I worked with the most with my favourite and goto being Rust.

[–] [email protected] 2 points 6 months ago

Does that statement apply to someone who uses python with the finesse of a woodchipper?

...asking for a friend.

[–] [email protected] 1 points 6 months ago

Javascript, Bash and Python. Learning Rust

[–] [email protected] 1 points 6 months ago* (last edited 6 months ago)

Python

If you count being able write passable snippets: Java, JavaScript, C,C++,maybe Matlab and bash

[–] [email protected] 1 points 6 months ago

In no particular order: C C# C++ Perl (been a long time, would need a refresher) Python Rust (favorite) TCL (kill it with fire) JavaScript Typescript Java Kotlin X86 assembly Arm assembly Riscv assembly Bash (shell scripting in general) Dart

Might be some others I haven't touched in while.

I also had the unfortunate experience of having to write windows batch scripts for a month. I can't decide whether I hated TCL or batch more.

[–] [email protected] 3 points 6 months ago* (last edited 6 months ago) (1 children)

C, C#, C++, BASIC, and Java.

I see others mentioning PHP and HTML but when I learned those way the hell back in high school, most nerds would get up your ass for calling them "programming languages." If those count, I know those too.

Would VBS (Virtual Battle Simulator) scripting be a programming language? I know that best from the 3,000+ hours spent making missions for Arma 2 and 3.

[–] [email protected] 3 points 6 months ago

Php has gotten fairly advanced compared to what it used to be so it counts. Html doesn't count since it's a markup language not a programming language. You can't control logic with it, but JavaScript does count.

[–] [email protected] 2 points 6 months ago

I know Python well, but I could build basic things with C++ and Fortran. I use bash a lot too. I know the basics of html and css if those count. And I barely remember some stuff from Matlab

[–] [email protected] 5 points 6 months ago* (last edited 6 months ago)

proficient at some point in the last 20 years:

  • C
  • ladder logic (for PLCs - dont take this from me)
  • Verilog
  • VHDL
  • C#
  • C++
  • PHP
  • Go (this is my daily driver)

I would hate to count JavaScript and friends.

load more comments
view more: next ›