package | version | revision | next step | notes | Flag |
---|---|---|---|---|---|
bitbucket.org/bertimus9/systemstat | 0eeff89b0690611fc32e21f0cd2e4434abf8fe53 | b:master | test only | ||
bitbucket.org/ww/goautoneg | 75cd24fc2f2c2a2088577d12123ddee5f54e0675 | b:master | old and stable | ||
cloud.google.com/go | 3b1ae45394a234c385be014e9a488f2bb6eef821 | 0.2.0 ? | 0.2.0 to 0.2 |
View FilePageSigma.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } |
View .envrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use flake | |
eval "$shellHook" |
View packages.org
View README.md
- Create a new public gist on https://gist.github.com/
- Under "Clone this gist", copy the link (i.e., https://gist.github.com/4415518.git)
- If you have the command line git tools, clone this gist to a local folder: git clone https://gist.github.com/4415518.git
- 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)
- Navigate to this folder in your file explorer and add an image (i.e., test.png)
- Add it to git from the command line: git add test.png
- Commit it to git: git commit -m "I just added a file!"
- Push this commit to your remote gist (you will need your Github user name and password): git push
- Go back and refresh your Gist on https://gist.github.com/ to confirm that it worked
View bazel-config.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package bazel | |
:mode ("BUILD\\|WORKSPACE\\|CROSSTOOL\\|\\.bazel\\'" . bazel-mode) | |
:config | |
(add-hook 'bazel-mode-hook 'bazel-install-reformat)) |
View redis-mini.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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"; |
View keybase.md
Keybase proof
I hereby claim:
- I am sigma on github.
- I am sigma (https://keybase.io/sigma) on keybase.
- I have a public key ASCayfBjpVYKk6CiXEuU5NDRPdzO8dEFgKxqxnVRszp8Pwo
To claim this, I am signing this object:
View vtmate.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ system ? builtins.currentSystem }: | |
let | |
pkgs = import <nixpkgs> { inherit system; }; | |
inherit (pkgs) stdenv; | |
inherit (stdenv) lib; | |
inherit (lib) overrideDerivation; | |
inherit (pkgs) musl; | |
gcc = "${musl}/bin/musl-gcc"; | |
in |
View build-tmux.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
pushd $(dirname $0) > /dev/null; CURRABSPATH=$(readlink -nf "$(pwd)"); popd > /dev/null; # Get the directory in which the script resides | |
set -x | |
MUSLPKG="musl:musl.tgz:http://www.musl-libc.org/releases/musl-1.1.4.tar.gz" | |
LEVTPKG="libevent:libevent2.tgz:https://cloud.github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz" | |
TMUXPKG="tmux:tmux.tgz:http://iweb.dl.sourceforge.net/project/tmux/tmux/tmux-1.9/tmux-1.9a.tar.gz" | |
NCRSPKG="ncurses:ncurses.tgz:http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz" | |
TEMPDIR="$CURRABSPATH/tmp" | |
TMPLIB="tempinstall/lib" | |
TMPINC="tempinstall/include" |
View get-static-docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
NewerOlder