TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

I still Lisp (2021)

127 pointsby mgraysonover 2 years ago

8 comments

gazeover 2 years ago
I have a suspicion that outside of the 10 people writing lisp seriously—shirakumo, stylewarning, lispm, and some others— there’s more characters of prose praising lisp being written than lisp being written. It’s a great language. I really like it and am using it for some projects. I just want people to actually use it rather than talking about using it.<p>Edit: I’m wrong in the present case! Author has some cool projects on GitHub under themetaschemer. Still though I’m struck by the ratio of lisp project articles vs lisp praising articles hitting HN’s front page.
评论 #34863299 未加载
评论 #34863141 未加载
评论 #34863486 未加载
评论 #34863542 未加载
评论 #34865337 未加载
评论 #34863518 未加载
评论 #34869721 未加载
评论 #34866344 未加载
评论 #34868576 未加载
评论 #34864051 未加载
评论 #34863742 未加载
评论 #34863057 未加载
评论 #34863499 未加载
评论 #34863065 未加载
评论 #34864326 未加载
tmtvlover 2 years ago
I vehemently disagree with <i>dynamically typed</i> being a winning point of Lisp. SBCL&#x27;s strong support for type checking is the main reason I was drawn from Scheme to CL, and Coalton (<a href="https:&#x2F;&#x2F;github.com&#x2F;coalton-lang&#x2F;coalton">https:&#x2F;&#x2F;github.com&#x2F;coalton-lang&#x2F;coalton</a>) is one of the most interesting Lisp projects I have encountered.<p>Type checking can remove an entire class of bugs from even being a consideration. Yes, it could be argued that type mismatches are a trivial class of bug, and yes, proper testing should catch any issues... but catching problems <i>before</i> you go to testing can save you precious seconds, especially when coding in the typical interactive style of Lisp. Lisp lets you code at amazingly high velocity, good support for type checking helps increase that velocity even further.
评论 #34867733 未加载
askonommover 2 years ago
Been doing Clojure for the past 5 years and while the language itself is great, the ecosystem really isn&#x27;t. The tooling is subpar, editor support is clunky at best, everything is for some odd reason much harder to set up and explained in a more difficult way. A ton of libraries don&#x27;t even provide documentation, they just expect you to REPL their functions to find out what they do.<p>The older I get the more I realize that what makes something great to use isn&#x27;t all about the language, but the surrounding environment, and how pleasant _that_ is to use. Personally I think I will most likely not Lisp for much longer because I&#x27;m seeing many other languages have much nicer to use ecosystems, even if they probably pay less.
评论 #34863414 未加载
评论 #34863727 未加载
MrLeapover 2 years ago
I haven&#x27;t used a lisp for a few years, but I still remember after it finally &quot;clicked&quot; the weird _velocity_. Code just flooded out.<p>In other languages I hop around from class defs to class defs, different files. Just richocheting all over the file system. Something about LISP removes a lot of the ricochet. It&#x27;s a weird sensation.
评论 #34863097 未加载
mythzover 2 years ago
As author of #Script Lisp [1] I&#x27;d say LISP really shines as an embeddable REPL language where you can use it to script larger compiled code-bases like Unity3D games while it&#x27;s running [2] it&#x27;s also been useful to open a TCP REPL on a deployed .NET App to inspect its running state and execute its configured dependencies [3].<p>But I don&#x27;t use it outside of Scripting .NET Apps anymore other than when needing to perform quick calculations while I&#x27;m already in the command-line, I can bring up a quick LISP REPL with `x lisp`.<p>[1] <a href="https:&#x2F;&#x2F;sharpscript.net&#x2F;lisp&#x2F;" rel="nofollow">https:&#x2F;&#x2F;sharpscript.net&#x2F;lisp&#x2F;</a><p>[2] <a href="https:&#x2F;&#x2F;sharpscript.net&#x2F;lisp&#x2F;unity" rel="nofollow">https:&#x2F;&#x2F;sharpscript.net&#x2F;lisp&#x2F;unity</a><p>[3] <a href="https:&#x2F;&#x2F;sharpscript.net&#x2F;lisp&#x2F;#lisp-repl-tcp-server" rel="nofollow">https:&#x2F;&#x2F;sharpscript.net&#x2F;lisp&#x2F;#lisp-repl-tcp-server</a>
florenover 2 years ago
I&#x27;ve been digging into Common Lisp again lately. I&#x27;m really enjoying some parts: CLIM is weird but interesting, and the fact that I&#x27;m basically developing inside a debugger makes testing and iterating on stuff pretty straightforward. On the other hand, library documentation frequently feels more like the programmer was making notes to himself rather than illustrating how the code might actually be used. I was also pretty shocked when, after using a quick shell script to generate a file containing a big list (~80MB on disk, 800k items) defined in s-expressions, reading it into SBCL exhausted the heap. After telling SBCL it could allocate two gigabytes I was able to read the file, but <i>doing</i> anything with it was a sure-fire way to run out of memory again. I would never think twice about reading an 80MB file into a Go program!<p>I sort of feel like I&#x27;m walking through an abandoned alien city and wondering what size they were, how many limbs they had, and if we share the same 5 senses or not.
评论 #34863274 未加载
评论 #34863437 未加载
评论 #34864646 未加载
评论 #34866235 未加载
xbpxover 2 years ago
Lisp feels more creative. You can bend the language, it&#x27;s malleable. Rust may be the new Engineer&#x27;s best friend but to me, Lisp remains the tool for the artist. Use Rust to Do It Right. Use Lisp to have fun.
nathantsover 2 years ago
for clojure&#x2F;jvm, there are a lot of good competitors and not an obvious winner.<p>for js&#x2F;react, there is nothing even close to reagent&#x2F;shadowcljs.<p>lisp is thriving on frontend, and doing just fine on backend.
评论 #34867800 未加载