Hacker Newsnew | past | comments | ask | show | jobs | submit | orangetuba's commentslogin

Please take your activism elsewhere...


Thank you! That is definitely an interesting language. However, it seems like development has stopped. The GitHub page says: "Note: For personal reasons, I'm on an extended break from the coding side of Vale, feel free to DM me on discord for details. - Evan Ovadia"


I always wondered why you brilliant people who "get Lisp" never actually released anything written in Lisp.


Right, and those C programmers talk big but there's no software written in C, where do they get off?

...I really don't understand this comment, there's so much Lisp code out there being used for everything from airfare search to video games, it seems willfully ignorant to say nothing is released in Lisp. I know, lucky 10,000, but still...


No there really isn't. Naughty dog used it 30 years ago, but lisp is not used in gaming


There's Cake Lisp, which was used by its creator to make an iPhone game for his girlfriend one time.


No one pays me to.


Norway is not nearly as woke as Sweden, so I doubt it.


Are you somehow equating unions with wokeness?


Certainly workers that advocate against unions don't seem too awake for sure.


Norway has a very similar labour market as Sweden, it's the Nordic model after all.

Define "wokeness" before we can continue.


Typical swedes. It is probably the most woke country in the world... but they are paying a price for that now.


What price are they paying?



Excellent, that's precisely the thing I was looking for! Thank you! I see that there are some tricky issues that would have to be solved with regards to ergonomy, even with an imagined subset of Rust.


It is a closed source programming language, yes.


Compiled using electricity from coal power, yes.


Nvidia on Linux is more like running Windows 95 from the gulag, and you're covered in ticks. I absolutely detest Nvidia because of the Linux hell they've created.


I just switched to AMD Radeon as well to get away from the nVidia hellscape that is nVidia and Linux.


So if you take a Python program and you add the mental effort of having to deal with static types, lifetimes, the borrow checker and performance considerations, and this added mental effort actually allows you to write the program faster?

That is incredible. It's like being able to carve- and install a door from a slab of wood faster than installing a prefabricated door.


Ongoing maintenance and feature development on top of an existing code base is easily 10x the amount of time and effort of starting a new project greenfield. Even modest improvements in long-term readability and maintainability have disproportionately beneficial effects, even if the initial cost is somewhat high.

In my personal experience, once you're proficient in Rust, the initial cost is not somewhat high because those improvements in your ability to reason about your code base start snowballing quickly. And the long-term effects are enormous. I have literally picked up a project I hadn't worked on in years, made sweeping changes to the internals, and had every test pass in a pretty comprehensive suite the very first time it compiled.


This line of reasoning is utterly alien to me. If your types add mental overhead, you’re doing something wrong. You should be able to rely on the typechecker to check invariants for you, decreasing mental overhead. You have to think about types anyway, especially in an untyped language, where you can’t rely on the typechecker.


The leap from thinking about your program with inheritance to thinking about your program with traits is large and cannot be overstated.

It's one of the reasons why Python developers don't like working in Ruby, for example.


Having types lets you get better editor completion and such; I'd say Rust pushes you into bottom-up design, which I find significantly more productive than top-down too; doing bottom-up design is much trickier in a dynamic language, though, because changes to one of your "bottom layers" break upper layers in a way that the compiler/interpreter can't see


Depends, maybe time to first run is lower in python, but time to a robust/quality solution could be a very different story.


I code faster in types languages. I find typed code easier to read and understand. A lot of writing new code is just reading and understanding existing code.

So the claim doesn’t sound so crazy to me. For me at least, types remove mental overhead, they don’t add to it. I can’t count the times I’ve been reading through untyped (or inaccurately typed) python code and have had to jump a dozen levels deep just trying to figure out if a function can or cannot return null.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: