marianoguerra / future-of-coding-weekly

repository to work on future of coding weekly newsletter
https://tinyletter.com/marianoguerra/
32 stars 3 forks source link

Future of Coding Weekly 2023/01 Week 3 #170

Closed marianoguerra closed 1 year ago

marianoguerra commented 1 year ago
marianoguerra commented 1 year ago

๐Ÿ— Structured Lisp & Effect Types ๐Ÿ“ข Unison Cloud Beta ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ Visual Prolog ๐Ÿ’ก Interactive Visual Syntax in Textual Code

Two Minute Week

๐ŸŽฅ 09/01/2023, Effect types via Peter Saxton

๐Ÿงต conversation

Vimeo Thumbnail

And here's the finished editor, in this video I'm demoing using effect types that I added to the language

marianoguerra commented 1 year ago

Content

๐Ÿ“ข Unison Cloud Beta is Open via Mariano Guerra

๐Ÿงต conversation

Unison Cloud is looking for beta users, fill out this short questionaire if interested

Unison Cloud offers a managed pool of cloud-based Unison nodes that can execute distributed computations. There's no separate packaging or deployment step. To use it, just call a function, passing it the distributed computation you want to run. For instance, the below example forks two parallel computations on randomly chosen locations in the default pool. Calling cloud.run will serialize this computation, sync any missing dependencies on the fly, and run it in the cloud.

main = do

 r = cloud.run do

  t1 = Remote.forkAt !pool.default '(1 + 1)

  t2 = Remote.forkAt !pool.default '(2 + 2)

  Remote.await t1 + Remote.await t2

 printLine ("Result was: " ++ Nat.toText r)

The current unison.cloud API is tailored for batch computations (as in Hadoop or Spark or miscellaneous ETL jobs), but we plan to add support for launching async background jobs, recurring or scheduled jobs, resilient long-running workflows (as in Temporal), and autoscaled resilient microservices .

We'd like to work with folks who have ideas for use cases in any of these areas and who are willing to work with us on some pilot project using Unison and Unison Cloud.

marianoguerra commented 1 year ago

๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ An online IDE for visual programming in Prolog via Christopher Shank

๐Ÿงต conversation

marianoguerra commented 1 year ago

๐ŸŽฅ Adding Interactive Visual Syntax to Textual Code via Kartik Agaram

๐Ÿงต conversation

Youtube Thumbnail

Nice use cases and solutions for adding just a tiny amount of visual notation to mostly text programs.

๐Ÿ“ Introducing Visual and Interactive-Syntax realized (VISr) for ClojureScript (and JavaScript)

marianoguerra commented 1 year ago

๐Ÿ’ป MNT Reform: The Much More Personal Computer via Andreas S

๐Ÿงต conversation

Hello ๐Ÿ‘‹ everyone. I came across this nice looking thing. anyone tried something like this? Some experiences to share?

marianoguerra commented 1 year ago

๐Ÿ›ธ ไฟบใฎlisp via Ivan Reese

๐Ÿงต conversation

Youtube Thumbnail

Not sure if this work by Yasuyuki Maeda has been shared here before, but it has a ~delightful~ aesthetic.

marianoguerra commented 1 year ago

https://tinyletter.com/marianoguerra/letters/future-of-coding-weekly-2023-01-week-3