Skip to content

Instantly share code, notes, and snippets.

@ejpcmac
ejpcmac / shell.nix
Last active March 10, 2021 16:37
Example shell.nix for Nerves projects, setting both Erlang and Elixir versions
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
inherit (lib) optional optionals;
erlangDrv = { mkDerivation }:
mkDerivation rec {
version = "21.0";
{ mkDerivation }:
mkDerivation rec {
version = "1.7.2";
# nixnix-prefetch-url --unpack https://github.com/elixir-lang/elixir/archive/v1.7.2.tar.gz
sha256 = "0wnrx6wlpmr23ypm8za0c4dl952nj4rjylcsdzz0xrma92ylrqfq";
minimumOTPVersion = "18";
}
@afranzi
afranzi / gen_config.py
Created June 20, 2018 08:03
Jinja2 - Config Template
import argparse
import errno
import os
import sys
from jinja2 import Environment, FileSystemLoader, StrictUndefined
UTF8 = 'utf8'
TEMPLATE = 'template'
@teburd
teburd / scylla.nix
Last active April 24, 2019 07:43
scylla.nix
with import <nixpkgs> {};
#{stdenv, fetchFromGitHub, python, ninja}:
stdenv.mkDerivation rec {
name = "scylla-${version}";
version = "2.1.0";
src = fetchgit {
url = "https://github.com/scylladb/scylla";
@jmlsf
jmlsf / js-in-cljs.md
Last active January 25, 2024 23:15
Using JavaScript modules in ClojureScript

Using JavaScript Libraries from ClojureScript

Using JavaScript libraries from ClojureScript involves two distinct concerns:

  1. Packaging the code and delivering it to the browser
  2. Making ClojureScript code that accesses JavaScript libraries safe for advanced optimization

Right now, the only single tool that solves these probems reliably, optimally, and with minimal configuration is shadow-cljs, and so that is what I favor. In paricular, shadow-cljs lets you install npm modules using npm or yarn and uses the resulting package.json to bundle external dependencies. Below I describe why, what alternatives there are, and what solutions I disfavor at this time.

Packaging and Delivering Code

(ns switch
(:require [clojure.pprint :as pprint]))
(defn project-clj-map [filename]
(->> (slurp filename)
(read-string)
(drop 1)
(partition 2)
(map vec)
(into {})))
@theasp
theasp / pg.cljs
Created December 15, 2017 20:08
Using `pg` from ClojureScript on Node.js with an interface like `postgres.async`
(ns hello-world.pg
(:require
[clojure.string :as string]
[cljs.nodejs :as nodejs]
[cljs.core.async
:refer [<! chan put! close! onto-chan to-chan]]
[taoensso.timbre :as timbre
:refer-macros [tracef debugf infof warnf errorf]])
(:require-macros
[cljs.core.async.macros :as m :refer [go]]))
@slapers
slapers / workflow_graph.exs
Created November 18, 2017 18:19
Build a direct acyclic graph to run a simple workflow in elixir
defmodule WorkStep do
defstruct [:name, :in, :out, :mod, :fun, :arg]
require Logger
def add_to_graph(%Graph{} = graph, %__MODULE__{} = step) do
graph
|> Graph.add_vertex(step)
|> Graph.add_edges(step |> edges_in)
|> Graph.add_edges(step |> edges_out)
end
(set-env! :dependencies '[;; https://mvnrepository.com/artifact/com.dropbox.core/dropbox-core-sdk
[com.dropbox.core/dropbox-core-sdk "3.0.5"]])
(require '[clojure.reflect :refer [reflect]])
(->> com.dropbox.core.v2.files.DbxUserFilesRequests
reflect
:members
(filter #(and (:return-type %)
(re-find #"Builder\z" (str (:name %)))
@joepie91
joepie91 / packages.nix
Last active October 12, 2018 16:12
Mozilla Rust overlay in environment.systemPackages
options: let
combinedOptions = options // {
overlays = [
(import ../nixpkgs-mozilla/rust-overlay.nix)
];
};
in {
master = (import (fetchTarball https://github.com/NixOS/nixpkgs/archive/master.tar.gz) combinedOptions);
unstable = (import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) combinedOptions);
nixpkgs = (import <nixpkgs>) combinedOptions;