Fork me on GitHub
#announcements
<
2021-02-24
>
lambduhhh03:02:00

Ever heard of [[networked thought]] or [[zettlekasten]]? Super fascinating and effective ways to keep track of your brilliant ideas! :) Check out our awesome tool for organizing and easily referencing all your most useful thinker thunks. The ones that flutter by, escaping our brain right when we most need them. Locally hosted, open source desktop app built in .cljs, reagent, reframe and datascript. The Gates of Athens are open! Free desktop available to everyone, with additional tiers through OpenCollective. Try the web demo (no changes saved) at https://athensresearch.github.io/athens Desktop download links: - Mac: https://tinyurl.com/athens-mac - Windows: https://tinyurl.com/athens-windows - Linux: https://tinyurl.com/athens-linux

🏛️ 39
nice 18
seancorfield03:02:01

This is the open source "competitor" to Roam?

jeff tang03:02:27

One way to put it @U04V70XH6

Steven Deobald03:02:53

I'm curious what warrants the scare quotes.

seancorfield03:02:22

Because I don't know enough about either project to know whether they are truly competitors or not.

Steve Lombardi06:02:10

Besides Roam and Athens, are there any other similar solutions out there?

Steve Lombardi06:02:13

Reading up on this stuff, I'm reminded of Notion. https://www.notion.so/product

Steve Lombardi06:02:59

Not quite the same problem space but there's definitely overlap.

emil0r09:02:29

Does Athens support exports?

Aleksander09:02:13

re Athens exports: you can have a db backup, so I guess that counts as export

dharrigan09:02:32

I think athenresearch is pretty nice and lovely! A good showcase for another thing possible with clojurescript! well done @UMA337M3P!

Jakub Holý (HolyJak)10:02:22

Where do I find some intro docs for Athenresearch? E.g. to learn what ((block references)) is? Is there any support for formatting (e.g. markdown)? thanks!

Jakub Holý (HolyJak)10:02:10

Ok, found the Welcome page in the app 🙂

Chase15:02:21

Athens was recently accepted into Y-Combinator too. It'll be neat to see how they approach open source with commercial success which is a big topic in the zeitgeist

jeff tang17:02:26

looking to make seamless interop between datascript<>markdown. currently just datascript 🙂 @U0545PBND @UA2R84M28

jeff tang17:02:15

support a subset of markdown right now @U0522TWDA. it's likely we go for full markdown but also many users are non-developers, in which case a WYSIWYG would make more sense for them

👍 3
Jakub Holý (HolyJak)17:02:27

One thing I did not get - can I post links to external content, as I would in .md do with [my title]() ?

jaide17:02:03

I had made a visual to help explain zettelkastens more https://clojurians.slack.com/files/U8WFYMFRU/F01N8D0SX5F/zettelkasten.pdf (still a rough draft) and there’s some other discussion about it in https://clojurians.slack.com/archives/C03RZGPG3/p1613078474271900.

👍 3
jaide17:02:36

@UR0KX1MRT I use Notion for my zk but org-roam is another great option for emacs using org-mode.

👍 3
jonpither09:02:14

Crux 1.15.0 is out 🚀 🎉 • We've made the Java API for submitting transactions much more IDE-friendly - Java users can now construct transactions programmatically through the new Transaction APIs. • Another oft-requested feature: queries can now return maps, using the `:keys`/`:syms`/`:strs` syntax • Bugfixes - and more details at https://github.com/juxt/crux/releases/tag/21.02-1.15.0 Thanks 🙂 Have a scout of the #crux channel for more on this release.

🎉 42
crux 3
3
kimim09:02:09

Just create a very simple ECharts lib, welcome to have a try: https://github.com/kimim/re-echarts

🎉 9
borkdude11:02:45

deps-infer: Infer mvn deps from sources. https://github.com/borkdude/deps-infer Thanks @hiredman for the idea. For now this is just a POC but I thought it would be cool to share in case anyone wants to contribute.

babashka 21
p-himik11:02:44

I'm curious - what might be some of the use cases? I can only think of somehow losing deps.edn.

😂 6
borkdude11:02:21

@U2FRKM4TW For babashka scripts this could be useful if you want to port your script to the JVM and you want to compile it with GraalVM for example

p-himik11:02:33

Ah, nice, thanks!

borkdude11:02:43

This can also be useful when you want to compare the newest deps in your .m2 with the ones you already have. Or when you want to migrate your git libs to mvn ones :)

👍 3
flowthing11:02:44

I imagine it could also be useful if you use clojure.tools.deps.alpha.repl/add-libs to hot-load dependencies and you want to save your state into a deps.edn file.

👍 6
borkdude11:02:20

This can also be a useful addition to clojure-lsp. Type (:require [clojure.tools.cli]) and it will be interactively added to deps.edn. cc @UKFSJSM38

6
ericdallo12:02:50

Looks valid, not sure what's version would add in deps.edn though

ericdallo12:02:42

oh got it, that's deps-infer responsibility, really nice

borkdude12:02:05

I found another nice use case: you want to port a lein project to deps.edn (but don't want to rewrite the project.clj yourself)

3
borkdude12:02:02

or a boot build.boot file (which is arguably harder because of code instead of config)

ericdallo12:02:53

oh, that I could use on clojure-lsp itself 😆

vemv12:02:43

Extra use case (and long wanted one!): making implicit dependencies explicit e.g. maybe I'm actively using math.combinatorics in my project, but it's in my classpath because it's a transitive dep of some other dep.

👍 6
borkdude12:02:52

Another use case: see which deps you are actually NOT using in your original deps.edn

👀 6
yes 12
🙏 3
p-himik13:02:32

Although this can give false positives when you wanted to pin a particular transitive dependency to a particular version or include some plugin that some other dependency (or your code) uses dynamically.

borkdude13:02:00

if you wanted to pin that version, why not include it explicitly with that version?

borkdude13:02:39

yeah, false positives can happen, this is probably why you should manually review the output

p-himik13:02:45

> if you wanted to pin that version, why not include it explicitly with that version? That's what I meant. Your project is using lib [email protected] which uses [email protected] You know that [email protected] has a bug that's been fixed in [email protected] that's backwards compatible with [email protected]. Naturally, you include the [email protected] in your deps even though your project never uses it directly. Perhaps, deps-infer deals with that already by analyzing not only your code but also the code/dependencies of your dependencies. It's not obvious to me given the README.

borkdude13:02:42

@U2FRKM4TW I see, yeah, in that case I think you should put a big fat comment in your deps.edn saying why you included that dep

👍 3
borkdude13:02:26

You can --analyze all of your own code + dependencies, but then you will get a list of suggestions for all transitive deps as well

hiredman16:02:07

The use case I have is, I know the api for a number of libraries well, so I can sit down and write a clojure program that uses them, and then suddenly I have make a deps.edn to run it, and I have to Google around to find maven coordinates.

hiredman16:02:31

Which is really dumb since the information is actually all already on my local ssd

hiredman16:02:52

my local m2 is over 2.5 gigs and I must have been copying it forward across 2-3 laptops because it contains artifacts like the fork of clojure we used at work briefly 8 years ago

p-himik17:02:14

Oh god, you made me recall how we had ~45GB .m2 dir for a legacy project. And that's on a fresh install. What a nightmare it was to work with.

hiredman17:02:47

yeah, so so much of the information about libraries is already there

orestis17:02:28

@hiredman you would just type it without a REPL connection?

orestis17:02:59

I think in theory I could do that but without the REPL I just feel naked in a thorny forest

superstructor12:02:52

[re-frame "1.2.0"] a framework for building user interfaces, leveraging React. Headline: Upgrade to reagent 1.0.0 and React 17. http://day8.github.io/re-frame/releases/2021/

👍 18
🎉 27
👏 9
superstructor12:02:21

[re-frame-10x "1.0.0"] A debugging dashboard for re-frame. X-ray vision as tooling. Headline: Upgrade to reagent 1.0.0 and React 17. https://github.com/day8/re-frame-10x

🎉 15
superstructor12:02:55

re-frame-template 1.4.0 A lein template for re-frame aka lein new re-frame <app-name> Headline: • Upgrade to reagent 1.0.0 and React 17 • Upgrade to re-frame 1.2.0 • Upgrade to re-frame-10x 1.0.0 • Upgrade to re-com 2.13.2, and add example of new re-com debugging features. https://github.com/day8/re-frame-template

🎉 12
3
wilkerlucio20:02:21

Pathom Viz 2021.02.24 is out! https://github.com/wilkerlucio/pathom-viz/releases/tag/v2021.2.24 On this release: - Improved auto-complete - Set larger minimum side for panels in general, this will avoid sections getting completly collapsed - Incorporate Tailwind CSS as part of internal designs, this already affects some of the UI and is the initial foundation for more UI standardization for Pathom Viz

❤️ 42
👍 12