This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-12-17
Channels
- # adventofcode (23)
- # announcements (2)
- # aws (11)
- # babashka (181)
- # beginners (59)
- # chestnut (2)
- # clj-kondo (9)
- # clojure (90)
- # clojure-brasil (2)
- # clojure-europe (18)
- # clojure-italy (24)
- # clojure-nl (9)
- # clojure-spec (3)
- # clojure-uk (28)
- # clojured (4)
- # clojuredesign-podcast (3)
- # clojurescript (12)
- # community-development (49)
- # core-async (49)
- # cryogen (5)
- # cursive (16)
- # data-science (1)
- # datascript (7)
- # datomic (54)
- # defnpodcast (4)
- # events (2)
- # figwheel-main (14)
- # fulcro (139)
- # graphql (1)
- # jobs-discuss (6)
- # kaocha (1)
- # luminus (2)
- # malli (3)
- # music (1)
- # off-topic (34)
- # pathom (24)
- # re-frame (13)
- # reitit (5)
- # shadow-cljs (8)
- # test-check (6)
Hi all! I am wondering if there exist a gitops set of tools that are more generic than the classic "do it with Kubernetes only" approach that I see around. One tool that I don't know if it exists already is a simple: "observe this git repo and if it changes run this script (for deployment)"
I am trying to promote artifacts through different stages of the pipeline, storing them for visibility and rollback
if you use aws you can just throw them into s3 , can't you 🙂
I can but now I am rolling my own
with some budget friendly storing policy and if needed some encryption around it
for more ready made things like artifactory there are plugins in your build system that should achieve the same
but that would just be for artifact storage
if you have git already, do you really need to keep the artifacts somewhere ? if you are sure your dependencies will be around when you try to roll back or restore old state - you can also just tag the git repo at the build-deploy points
and build from those tags again if needed
Fellow Android devs! I'm running a survey to make our content even more valuable to our tight community of Android developers. It contains some questions about coding languages you use and what more you want to get out of content from hard technical content to soft skills and careers advice - we want to make it totally catered to your needs. I would massively appreciate any input you all have! The survey is here, its fun and might broaden your horizons/make you consider your own habits and needs in a positive way. Survey is here, (totally anon, no personal details required just honest responses :)) https://droidcon.typeform.com/to/UFIhHL
Coming from a fork of i3, it's changed the way I consider bindings & interacting with my machine! (With the most basic of CL installs) To start hacking, If you throw the following in ~/.stumpwm.d/init.lisp, then M-x slime-connect
, you can establish a connection to stump & eval against it
(ql:quickload :swank)
(swank:create-server)
and if you're more into vi-like bindings, you don't have to use *root-map*
scoped bindings with a prefix (e.g C-t e
, the default bind for (run-or-raise "emacs" '())
) -- instead we can use a top-map for arbitrary char bindings, e.g. sane basics with:
(define-key *top-map* (kbd "s-h") "move-focus left")
(define-key *top-map* (kbd "s-j") "move-focus down")
(define-key *top-map* (kbd "s-k") "move-focus up")
(define-key *top-map* (kbd "s-l") "move-focus right")
(define-key *top-map* (kbd "s-H") "move-window left")
(define-key *top-map* (kbd "s-J") "move-window down")
(define-key *top-map* (kbd "s-K") "move-window up")
(define-key *top-map* (kbd "s-L") "move-window right")
(define-key *top-map* (kbd "s-n") "pull-hidden-next")
(define-key *top-map* (kbd "s-p") "pull-hidden-previous")
(define-key *top-map* (kbd "s-g") "abort")
...and you can create a set of hydra
-like bindings with maps
(defvar *toggle-map* (make-sparse-keymap))
(define-key *top-map* (kbd "s-t") '*toggle-map*)
(define-key *toggle-map* (kbd "g") "toggle-gaps")
In this example, the resultant bind for "toggle-gaps"
is s-t g
is it this? https://github.com/ch11ng/exwm
used to use this: https://sawfish.tuxfamily.org/
in the beginning of 2000s 😄
machines were awful and sawfish was actually pretty efficient at the time