Skip to content

Instantly share code, notes, and snippets.

View sigma's full-sized avatar
🏠
Working from Home

Yann Hodique sigma

🏠
Working from Home
View GitHub Profile
@sigma
sigma / redis-mini.nix
Created April 17, 2016 06:30
minimal #redis #docker image with #nix
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
su_exec = pkgs.stdenv.mkDerivation {
name = "su-exec-0.2";
src = fetchurl {
url = https://github.com/ncopa/su-exec/archive/v0.2.tar.gz;
sha256 = "09ayhm4w7ahvwk6wpjimvgv8lx89qx31znkywqmypkp6rpccnjpc";
@sigma
sigma / .envrc
Last active October 12, 2022 09:39
sample flake.nix for emacs projects
use flake
eval "$shellHook"
@sigma
sigma / gist:9086618
Created February 19, 2014 05:38
run-hook-wrapped compat
(unless (fboundp 'run-hook-wrapped)
(defun run-hook-wrapped-1 (hook funcs wrap-function &rest args)
(loop for f in funcs
if (and (eq f t)
(local-variable-p hook)
(default-boundp hook)
(apply 'run-hook-wrapped-1
nil (default-value hook) wrap-function args))
return it
@sigma
sigma / FilePageSigma.lua
Last active September 19, 2022 11:54
Maschine Studio file hack
require "Scripts/Maschine/MaschineMK3/Pages/FilePageMK3"
local class = require 'Scripts/Shared/Helpers/classy'
FilePageSigma = class( 'FilePageSigma', FilePageMK3 )
-- Just inherit from the MK3 page and adjust the LED to light
function FilePageSigma:__init(Controller)
FilePageMK3.__init(self, Controller)
self.Name = "FilePageSigma"
self.PageLEDs = { NI.HW.LED_ALL }
@sigma
sigma / .emacs-local.el
Created April 19, 2009 09:03
.emacs-local.el
;; -*- mode: emacs-lisp; auto-compile-lisp: nil; -*-
;;;;;;;;;;;;;;;;;;;;;;;;
;; Name/Email settings
;;
(setq user-full-name "Firstname Lastname")
(setq user-mail-address "me@example.com")
(setq message-alternative-emails (rx "other.me@example.com"))
(setq home-directory (getenv "HOME"))
@sigma
sigma / scratch.el
Created February 22, 2012 11:02
package install for emacs23
(let ((buffer (url-retrieve-synchronously
"https://gist.github.com/sigma/1884092/raw/9014a209f2fc5c8d31762d13ec495d9e92a412de/package-install.el")))
(save-excursion
(set-buffer buffer)
(goto-char (point-min))
(re-search-forward "^$" nil 'move)
(let ((user-init-file (expand-file-name "~/.emacs")))
(eval-region (point) (point-max)))
(kill-buffer (current-buffer))))
@sigma
sigma / packages.org
Last active June 22, 2018 21:17
#k8s deps versions
packageversionrevisionnext stepnotesFlag
bitbucket.org/bertimus9/systemstat0eeff89b0690611fc32e21f0cd2e4434abf8fe53b:mastertest only
bitbucket.org/ww/goautoneg75cd24fc2f2c2a2088577d12123ddee5f54e0675b:masterold and stable
cloud.google.com/go3b1ae45394a234c385be014e9a488f2bb6eef8210.2.0 ?0.2.0 to 0.2
@sigma
sigma / get-static-docker
Last active February 7, 2018 21:55
static #docker binary in #coreos
#!/bin/bash
VERSION=$(docker --version | awk '{print $3}' | sed 's/,//')
BINARY="/opt/bin/docker-$VERSION-static"
LINK="/opt/bin/docker.static"
if [ ! -e "$BINARY" ]; then
curl -L -o "$BINARY" "https://get.docker.com/builds/Linux/x86_64/docker-$VERSION"
chmod a+x "$BINARY"
ln -sf "$BINARY" "$LINK"
@sigma
sigma / README.md
Created January 8, 2018 07:35 — forked from biovisualize/README.md
Test for attaching a png to a gist
  1. Create a new public gist on https://gist.github.com/
  2. Under "Clone this gist", copy the link (i.e., https://gist.github.com/4415518.git)
  3. If you have the command line git tools, clone this gist to a local folder: git clone https://gist.github.com/4415518.git
  4. It will add a folder with the gist id as a name (i.e., 4415518) under the current working directory. Navigate to this folder in the command line: cd 4415518 (dir 4415518 on windows)
  5. Navigate to this folder in your file explorer and add an image (i.e., test.png)
  6. Add it to git from the command line: git add test.png
  7. Commit it to git: git commit -m "I just added a file!"
  8. Push this commit to your remote gist (you will need your Github user name and password): git push
  9. Go back and refresh your Gist on https://gist.github.com/ to confirm that it worked
@sigma
sigma / bazel-config.el
Last active December 14, 2017 04:28
#emacs #bazel config
(use-package bazel
:mode ("BUILD\\|WORKSPACE\\|CROSSTOOL\\|\\.bazel\\'" . bazel-mode)
:config
(add-hook 'bazel-mode-hook 'bazel-install-reformat))