Skip to content

Instantly share code, notes, and snippets.

View tbl3rd's full-sized avatar
👣
Scalawag

Tom Lyons tbl3rd

👣
Scalawag
View GitHub Profile
(ns wfl.log
"Log to GCP Stackdriver."
(:require [clojure.data.json :as json]
[clojure.spec.alpha :as s]
[clojure.string :as str]
[clojure.template :as template])
(:import [java.time Instant]))
;; https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#LogSeverity
;;
@toolmantim
toolmantim / Makefile
Last active July 11, 2025 20:15
An example of using Make instead of Grunt for fast, simple and maintainable front-end asset compilation.
# A simple Makefile alternative to using Grunt for your static asset compilation
#
## Usage
#
# $ npm install
#
# And then you can run various commands:
#
# $ make # compile files that need compiling
# $ make clean all # remove target files and recompile from scratch