Unison Cloud
11–20 of 158 posts
Re: Unison Cloud
#12Re: Unison Cloud
#13Re: Unison Cloud
#14Whoa, I just started building something similar for scrapscript! Curious: Who is the target demographic for this service? Hobbyists? I'm also interested in what benefits unison touts specifically. Is the only reason to choose unison over Cloudflare's workers the conveniences of functional typing and other ergonomics?
Unison is an actual language with many cutting edge features. Im fairly sure Unison was created for a mix of practical and theoretical concerns, especially the intersection thereof. My gut tells me Cloudflare workers are some type of low-code solution.
Cloudflare Workers hosts servers written in JavaScript / Wasm.
Re: Unison Cloud
#15Is Unison something I can easily self host? I wouldn't want to be vendor locked to Unison Cloud.
Re: Unison Cloud
#16For example: is the storage layer, mentioned in the landing page, open source?
I'm tempted to use it, even as a hosting service.
Re: Unison Cloud
#17Looks really cool. I hope they wrap their language with a variant of python or typecript or something, as I think a lot of the former programmers would embrace this type of deployment model. I'm just not sure they'd want to learn haskell style syntax.
[1] https://github.com/unisonweb/unison/issues/499
... that said, the language semantics and libraries are still going to be different, so even if we have a python-ish or typescript-y syntax, there'll still be new things to learn. :)
Re: Unison Cloud
#18(It is not the only language to do so - see old.reddit.com/r/nosyntax)
I hope this catches on, because parsing strings of text is a monumental waste of complexity.
Re: Unison Cloud
#19Re: Unison Cloud
#20Whoa, I just started building something similar for scrapscript! Curious: Who is the target demographic for this service? Hobbyists? I'm also interested in what benefits unison touts specifically. Is the only reason to choose unison over Cloudflare's workers the conveniences of functional typing and other ergonomics?
This may be more of a comp. sci. answer than you're looking for, but the thing I find most unique is the content-addressed functional language underlying it. Content-addressed meaning that definitions can be identified with "a hash of the AST", which is used as the building block for distributed programming: https://www.unison-lang.org/docs/the-big-idea/ I see the unison.cloud service itself as more of a first large-…