Fork me on GitHub
#events
<
2022-10-10
>
reborg16:10:03

Still room available for the first London Clojurians in person Meetup after a long time: https://www.meetup.com/london-clojurians/events/288023345/ (Wed, Oct 12th, 6pm BST)

ā€¼ļø 1
Daniel Slutsky14:10:26

Just fixed the hour in meeting 15. šŸ™

Daniel Slutsky14:10:01

See you on Sunday at @carsten.behring's NLP talk, combining Clojure, Python, and DVC.

Daniel Slutsky11:10:43

See you later today at the NLP talk.

nate22:10:31

Two recordings of recent Los Angeles Clojure Meetup events: ā€¢ https://www.youtube.com/watch?v=_tpNKAv4fro - Polylith with Sean Corfield (June 2022) ā€¢ https://www.youtube.com/watch?v=Dr8wBGPXxng - Exploring the Flow-storm debugger (September 2022)

šŸŽ‰ 4
polylith 1
jpmonettas23:10:05

nice to see people trying the debugger. The latest version fixes a bunch of issues specially on windows, and there is also a chapter on the UserGuide on how to make it work on WSL2 without using a remote connection https://jpmonettas.github.io/flow-storm-debugger/user_guide.html#_working_on_windows_with_wsl2

jpmonettas23:10:55

I also see that you where trying to instrument clojure namespaces like clojure.core/inc and clojure.walk/walk. The thing with instrumeting clojure namespaces is that the debugger uses those, so if you instrument clojure.core/inc for example, when it runs it will trace and make the debugger "react" to it, and part of the debugger code will probably will be using inc to show you the results, so it will be called again, and you will get a stack overflow