clojure-losangeles

https://www.meetup.com/Los-Angeles-Clojure-Users-Group/
nate 2020-02-14T16:05:18.028400Z

For anyone, like me, who's interested in Roam Research (https://roamresearch.com), the note taking tool we talked about briefly, here's a good (and overwhelming) view into how one person uses it: https://www.nateliason.com/blog/roam

👀 1
Albert M 2020-02-18T06:39:35.035400Z

I saw this on HN and went down the rabbit hole and ended up reading about the PARA Method, now I'm actually excited to organize. https://praxis.fortelabs.co/the-p-a-r-a-method-a-universal-system-for-organizing-digital-information-75a9da8bfb37/

lukasz 2020-02-14T16:31:31.029800Z

More logback magic: <configuration scan="true" scanPeriod="30 seconds"> will instruct logback to reload the config every 30s, so you can experiment with your logback settings and fine tune the output format, routing etc without restarting your application - of course the 30s is tunable

nate 2020-02-14T16:44:48.031400Z

Yes! we use this to great affect in production to tweak logging too.

nate 2020-02-14T16:45:26.032100Z

Of course, this only works when we have access to the file, which we do in some cases because we're using docker-compose and can just mount a resource path from the host filesystem

nate 2020-02-14T16:45:41.032500Z

haven't quite figured out how to do this same level of tweaking with our kubernetes deployments

lukasz 2020-02-14T16:48:36.033100Z

this is where @dorab’s dislike of XML and defining logback config in edn is definitely a good idea ;-)

nate 2020-02-14T16:58:00.033900Z

I've toyed with the idea of exposing an endpoint on our application that accepts new log config, or maybe just the ability to tweak the log level for a particular package

lukasz 2020-02-14T16:59:44.034300Z

:thinking_face: that's an interesting approach