Remix.run Logo
kens 8 hours ago

My knowledge-gap confession: even after many years with the languages, I can't write a main() in Python or Java without looking up the format.

kbelder 7 hours ago | parent | next [-]

So many things like that!

I don't know if I could tell you with confidence the proper way to get a string length in any language. Is it a global function or an object method or property? Is it length or count or size? I have to look it up or rely on intellisense every time. I do too much bouncing between languages.

Well, I know it in BASIC. Len().

DrewADesign 5 hours ago | parent | prev | next [-]

No purpose in memorizing something that doesn’t meaningfully improve your understanding of the language, you only need it every now and then, and you can find it nearly instantly.

p2detar 7 hours ago | parent | prev | next [-]

With Java 24 it’s now:

    void main() {
   
    }
e12e 7 hours ago | parent [-]

Not if you want to handle arguments?

another_twist an hour ago | parent | prev | next [-]

IntelliJ completes the format for me. I never write it by hand. Also I have never coded in something other than an IDE.

vunderba 7 hours ago | parent | prev | next [-]

I’ve spent so much time in both the .NET and JS worlds that I can't even begin to count how many times I’ve typed `Where` when I meant `filter` or vice versa.

stavros 7 hours ago | parent | prev | next [-]

What, `def main():`? Or do you mean the __name__ == "__main__" thing for distinguishing whether the code was imported?

kens 7 hours ago | parent [-]

I can successfully type "def main()" and not "function main()", unless I'm switching between JavaScript and Python and forget which language I'm in :-). It's the if statement with all the underscores that I need to check every time.

stavros 6 hours ago | parent [-]

I actually made that a keyboard macro because, even though I remember the syntax, I can't be bothered with all the special characters all the time.

vjvjvjvjghv 7 hours ago | parent | prev | next [-]

I set up some .NET services years ago. Since then it was just adding new stuff. If I was asked how to set up another service, I would have no idea how to do it

taberiand 4 hours ago | parent [-]

That's what `dotnet new webapi` (and all the other dotnet new templates) is for.

They don't even have a main() any more, it's great

the__alchemist 6 hours ago | parent | prev | next [-]

In python, it's trivial:

def main(): # code

The dunder syntax you see around isn't required.

mulquin 7 hours ago | parent | prev | next [-]

Continuing the confessions: I do php.net/<function_name> at least twice a day

1718627440 7 hours ago | parent [-]

Is that a bad thing? I also call man <libc function> several times per day, most times I think I already know the calling semantics, but there is always some nitpick about the calling semantics or a bug description, that I didn't had in mind.

nicoburns 7 hours ago | parent | prev | next [-]

It's the main benefit of Rust ;)

(obviously it's not but it is super nice that main in Rust is just:)

    fn main() {
    
    }
dboreham 6 hours ago | parent | prev | next [-]

LLMs are wonderful for this. I can't write hardly a line of shell script without looking something up. And then there are three different ways to do <thing> so I spend time beard-tugging as to which way to do it. Now I just tell the LLM what I want changed about this shell script and look at what it comes up with. 100% of the time it's fine.

croes 7 hours ago | parent | prev | next [-]

"Knowledge means knowing where it is written down."

andrewmcwatters 7 hours ago | parent | prev [-]

[dead]