Skip to content

Instantly share code, notes, and snippets.

View wdhowe's full-sized avatar

Bill Howe wdhowe

View GitHub Profile
@wdhowe
wdhowe / cert-check.sh
Created February 2, 2024 18:47
Certificate View from the Shell
#!/bin/bash
url=$1
echo | \
openssl s_client -showcerts -servername ${url} -connect ${url}:443 2>/dev/null | \
openssl x509 -inform pem -noout -text
@wdhowe
wdhowe / errors_success.clj
Last active February 3, 2024 21:03
Clojure Errors/Success collection checking
;; These protocols are also available in: https://github.com/wdhowe/clj-contrib
(defprotocol Errors
"A protocol for finding errors in a collection."
(errors [coll] "Returns a map of the `:counts/errors`, which are entries with `:error` keys."))
(extend-protocol Errors
clojure.lang.Sequential
(errors
[coll]
@wdhowe
wdhowe / broken-refs.md
Last active November 19, 2021 02:31
Fix git broken ref refs/remotes/origin/HEAD

Error seen during git commands

"warning: ignoring broken ref refs/remotes/origin/HEAD"

The Fix

Check remote branches

git branch -r
@wdhowe
wdhowe / simplicity.md
Created April 11, 2021 03:34
simplicity

Simplicity

Notes from Rich Hickey's Simplicity Matters slides.

"Simplicity is the ultimate sophistication." -Leonardo da Vinci

Toolkit

Complexity Simplicity
@wdhowe
wdhowe / debugging.md
Last active April 11, 2021 03:17
debugging
@wdhowe
wdhowe / as_some.clj
Last active February 3, 2024 21:04
Clojure macro: as-some->
;; This macro is also available in: https://github.com/wdhowe/clj-contrib
(defmacro as-some->
"as->, with the nil checking of some->.
Binds name to expr. When name is not nil, evaluates the first
form in the lexical context of that binding. When that result
is not nil, then binds name to result, repeating for each
successive form."
[expr name & forms]
(let [steps (map (fn [step] `(if (nil? ~name) nil ~step))
@wdhowe
wdhowe / Makefile
Last active April 11, 2021 22:10
An example Makefile for Docker and Leiningen.
.PHONY: build test deploy
##-- Environment Variables --#
# Image and container registry
IMAGE_NAME := my-image-name
IMAGE_PATH := mygroup/myproject
REGISTRY := registry-url:port
IMAGE := $(REGISTRY)/$(IMAGE_PATH)/$(IMAGE_NAME)
@wdhowe
wdhowe / docker-commands.md
Created November 28, 2020 19:36
Docker commands to build, push, and run containers.

Docker Image Running/Building Examples

The docker images can all be run/built similar to the following.

Variables

Setup the variables per image.

GitHub Example

@wdhowe
wdhowe / clojure-lein-plugins.md
Last active February 3, 2024 21:09
Installing plugins for Clojure's Leiningen

Leiningen Plugins

Lein can be extended via plugins.

Some useful plugins are:

  • lein-ancient -> Check your project for outdated dependencies and plugins, as well as upgrade them if desired.
  • lein-exec -> Allows single clojure files to be executed and their requirements resolved.
  • lein-localrepo -> Work with local Maven repository.
  • lein-pprint -> Pretty-print a representation of the project map.
@wdhowe
wdhowe / clojure-lein-projects.md
Last active February 3, 2024 21:11
Creating Clojure projects with Leiningen

Leiningen Projects

Leiningen is another method for managing Clojure projects. It is similar to pipenv in the Python world, in that it manages project space and dependent packages.

Offical Site: https://leiningen.org/

Install Leiningen

  • Download the installer