This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-04-07
Channels
- # announcements (1)
- # babashka (77)
- # beginners (219)
- # chlorine-clover (6)
- # cider (52)
- # clj-kondo (14)
- # cljdoc (5)
- # clojure (173)
- # clojure-europe (49)
- # clojure-finland (1)
- # clojure-germany (2)
- # clojure-italy (1)
- # clojure-nl (39)
- # clojure-sweden (4)
- # clojure-uk (51)
- # clojurescript (25)
- # code-reviews (9)
- # conjure (25)
- # data-science (2)
- # figwheel-main (6)
- # fulcro (74)
- # graalvm (1)
- # graphql (11)
- # jobs-discuss (17)
- # keechma (4)
- # lein-figwheel (4)
- # leiningen (1)
- # luminus (10)
- # malli (14)
- # mid-cities-meetup (2)
- # off-topic (28)
- # re-frame (5)
- # reagent (76)
- # reitit (30)
- # ring (7)
- # ring-swagger (1)
- # shadow-cljs (163)
- # spacemacs (11)
- # specter (2)
- # sql (43)
- # tools-deps (13)
- # vim (6)
- # yada (1)
Thanks for flagging, I raised this with the admin team. Iām thinking it might be ok because this is #off-topic but not sure :thinking_face:
in that case, sorry @U57THKJ1X š
I can find no evidence Standuply is associated with Clojure/Script. They seem to be a Siberian company using Node.js -- so it's spam.
I used podman for the first time today. I'm using it for development services (eg postgres) I'm really impressed. It works very nicely. I don't end up with containers running in the background wasting cpu.
My only slight concern is that I don't know where my files are. But I think that's a problem I have from using docker where I ran into that bug.
I've been using podman for a lot of dev time serivces, combined with systemd-user to launch the containers when I login, it has been great, I am super happy to kick dockerd to the curb
a great thing has been how easy it makes moving things to a new vm (I do most developement in vm running on a different machine). because podman keeps stuff in my users local directory, I can just copy my home directory between vms and everything is ready to go.
Interesting. I've struggled to find docs on the details of how it works. Eg how does the daemon mode work?! Something I do miss from docker is the "api" which can be used to start containers. I had a novel idea to start up my containers/pod when I start up the jvm to minimize waste.
yeah, podman itself doesn't run a daemon that would provide an api, it is just shelling out. so when you run a service using podman there is no central daemon it is going through to run it, there is just that podman process which sets everything up and launches your process (and tears everything down when your process exits)
I've been using user level systemd services to coordinate stuff kind of similar to docker compose, and again it keeps everything in my user home directory
I'm just running on a terminal now, because ctrl-c is a winner, but I can see me using user level daemon tools too.
Have you used pods at all? I haven't looked yet as I don't need a group of services yet.
I have a strange little issue. I have created a WebSocket server using Pedestal and Jetty9, literally copied from the WS sample. When deployed to Heroku, I can connect to it from the browser, but when running the server locally, bound to localhost, I am not able to connect to it from browser (Firefox & Chrome). Works outside browser just fine. Is this a knows issue? Not a frontend developer myself, so have very little idea. EDIT: Found the issue. Apparently I need to bind the dev server to 0.0.0.0 instead of 127.0.0.1. Wonder why though.
Might depend on ipv4 vs ipv6 sockets, depends on your java version and other stuff
Also if you're using http://localhost make sure /etc/hosts is setup to know about it