Fork me on GitHub
#off-topic
<
2021-06-29
>
ericdallo00:06:02

We created a GitHub repo dedicated to brazilian who want to discuss, learn and know from other people 🙂 for more information check #clojure-brasil https://github.com/wandersoncferreira/clojure-brasil

🔥 3
13
sova-soars-the-sora02:06:39

"3. There is no step three"

2
Adam Helins06:06:30

Hi everyone! This is not a formal announcement yet as we are currently open-sourcing our repos, revamping our website, and planning for alpha. However, I share it with you since we need a little boost 🙂 A few years ago, Mike Anderson (creator of core.matrix) started working on something that closely ressembles Clojure on this very efficient "blockchain". It aims to be inclusive, green and eco-friendly, seeing all the intolerable excesses this industry has sprouted. A good chunk of our toolset is written in Clojure and it has brought us a decisive advantage. I am keen to share all that with you "soon" and get your feedback. Meanwhile, we would appreciate a little vote to push us forwards. We are a very small team of devoted people, with limited means, so any help matter. Here in the "Digital Assets" section, there is a demo video as well: https://t.co/wS9idAG1if?amp=1 And if you want to get a hang of it, Convex Lisp is very similar to Clojure and you can hack in the "Sandbox": https://convex.world/documentation/tutorial Cheers!

13
2
parens 4
❤️ 2
borkdude15:06:07

Reminds me of the Stuart Halloway tweet about refactoring... https://copilot.github.com/

👍 2
Apple15:06:57

what did he say?

Endre Bakken Stovner15:06:01

I avoid twitter. Can you summarize?

Endre Bakken Stovner15:06:35

Lol, summarize XD Repeat what he said would be better

Jeff Evans16:06:55

that really is something that demands a bit of substantiation. to be specific, I mean the statement “refactoring tools do more harm than good”. anyone found it?

naomarik18:06:47

I can imagine in practice someone trying to program with this copilot by constantly editing their comments to get it to autocomplete what they want until they give up and use google to find a snippet to copy from stackoverflow.

sova-soars-the-sora19:06:44

:rolling_on_the_floor_laughing:

Juλian (he/him)09:06:17

Copilot sounds horrible... what about licenses? What about code quality?

mauricio.szabo20:07:52

There's a huge discussion already about licences. Even on Github, they explicitly told that sometimes copilot copy-pasted the full GPL license on an empty file

mauricio.szabo20:07:46

(that, after saying that copilot will not copy, but derive, code. Typical Microsoft talk, to be honest, to make incomplete, false, or confusing statements)

lread17:06:12

And that reminds me of Gene Kim quoting Rich Hickey describing some refactored code: > It looks like someone took a wedding cake and then smashed it against a wall https://www.cognitect.com/cognicast/159 at ~24:50

Ian Fernandez20:06:09

Someone on the internet summarized some of mine thoughts ;; I don't like QI comparison, this should be like Clojure experience or something like this

clojure-spin 11
😄 5
👍 4
dgb2323:06:21

Many of the most powerful libraries use macros. Also it is interesting that runtime generated (DSL) code is very common, just in the form of maps and vectors rather than quoted lists. It’s essentially meta programming in a slightly different shape. Honeysql, malli, datomic/datascript come to mind.

✔️ 3
teodorlu08:06:04

Macros can transform code, much in the sense that code can transform data. And data is simple to query and transform 🙂

Ian Fernandez14:06:58

You don't want to use macros most part of the time

Ian Fernandez14:06:13

It's better to not build another DSL

nate sire15:06:22

many developers will give you pushback on using meta programming... I think it is best to keep any DSL contained how a micro service approaches things... small and rebuildable.

nate sire15:06:42

versus 100k line code base of a DSL

nate sire15:06:34

meta programming can save you though... if trying to refactor a difficult code base

dgb2315:06:37

there is a very thin line between a rich data structure and meta programming / DSLs

✔️ 3
Ian Fernandez17:06:00

build effective programs that does stuff instead of making things too generic?