Skip to content

Instantly share code, notes, and snippets.

View rigelk's full-sized avatar

Rigel Kent rigelk

View GitHub Profile
@rigelk
rigelk / data.nantes.fr.ipynb
Last active September 23, 2016 12:26
d3’s Reingold–Tilford Tree with info texts showing Nantes’s market attributions
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
/*
* am335x_evm.h
*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation version 2.
*
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
@rigelk
rigelk / dockhand.sh
Created January 13, 2015 09:27
docker, docker-enter installer + installs a wordpress dev instance
#!/bin/bash
# Wordpress dev env installer for dummies.
command_exists() {
command -v "$@" > /dev/null 2>&1
}
user="$(id -un 2>/dev/null || true)"
sh_c='sh -c'
@rigelk
rigelk / harbour.sh
Last active August 29, 2015 14:12 — forked from bkcsoft/docker-build-n-run.sh
un script pour lancer un build docker suivi d’un run de l’image ainsi créée, tous deux pleinement paramétrés.
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Usage: $(basename $0) [build-args [-- run-args [-- cmd-args] ] ]"
echo " NOTE: the -rm-flag is hardcoded for build!"
exit 1
fi
BUILD_ARG=()
RUN_ARG=()
@rigelk
rigelk / Makefile
Last active August 29, 2015 14:07 — forked from rbonvall/Makefile
TEXFILES = $(wildcard *.tex)
PDFFILES = $(TEXFILES:.tex=.pdf)
all: pdf
pdf: $(PDFFILES)
%.pdf: %.tex
@rubber --pdf $<
clean:
@rigelk
rigelk / LED.py
Created July 30, 2014 17:05
LED.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# untitled.py
#
# Copyright 2014 <pi@raspberrypi>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
@rigelk
rigelk / maintenance.html
Last active August 29, 2015 14:00
Maintenance clean page
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Maintenance du site</title>
<style>
h1 { color: rgb(220, 129, 0); font-size: 50px; letter-spacing: -5px; position: relative;}
h1:after { color: rgba(100, 200, 255, 0.5); content: "Oh noes!"; left: 4px; position: absolute; top: 5px;}
body { color: rgb(51, 51, 51); font: 20px Helvetica,sans-serif; padding-top: 150px;}
#article { display: block; margin: auto; text-align: left; width: 650px;}
@rigelk
rigelk / new_event.sh
Last active August 29, 2015 13:55
jekyll post generator
#!/bin/bash
# Author: Pierre-Antoine Rault (rigelk)
# Sauce: https://gist.github.com/rigelk
# Licence: BSD licence
usage="USAGE ./new_event [editor]"
if [ $1 ]
then
read -r -p "Post name > "
title=${REPLY}