Skip to content

Instantly share code, notes, and snippets.

View franky47's full-sized avatar

François Best franky47

View GitHub Profile

Keybase proof

I hereby claim:

  • I am franky47 on github.
  • I am franky47 (https://keybase.io/franky47) on keybase.
  • I have a public key whose fingerprint is 4A13 03D1 C816 DF95 5713 661E ED1B 3C13 7048 076B

To claim this, I am signing this object:

@franky47
franky47 / front-end-url-farm.md
Last active December 26, 2017 13:17
Front-End URL Farm
@franky47
franky47 / robothash-env.sh
Created September 20, 2017 04:54
Get a robotic avatar of your environment variables setup
#!/usr/bin/env bash
# This simple line lists your environment variables,
# hashes them into a SHA-1 and uses that to query a "unique"
# robotic avatar from robohash.org.
#
# This lets you see quickly if something is out of place in
# a server configuration, as any slight change of the config
# will result in a totally different image, which is easier
# to catch at a glimpse than remembering checksums.
@franky47
franky47 / noteBuffer.cpp
Last active October 29, 2016 06:38
Snippet for Neil
#include <iostream>
#include <inttypes.h>
#include <cstring>
#define _STRINGIFY(LitteralString) #LitteralString
#define STRINGIFY(LitteralString) _STRINGIFY(LitteralString)
#define ASSERT(expr) \
{ \
if (!(expr)) \
{ \
@franky47
franky47 / 00-header
Last active July 1, 2016 07:49
RasPi 3 Dynamic MOTD à la Ubuntu
#!/bin/bash
#
# 00-header - create the header of the MOTD
# Copyright (c) 2013 Nick Charlton
# Copyright (c) 2009-2010 Canonical Ltd.
#
# Authors: Francois Best <[email protected]>
# Nick Charlton <[email protected]>
# Dustin Kirkland <[email protected]>
#
@franky47
franky47 / .zshrc
Last active December 3, 2024 10:12
# Add deno completions to search path
if [[ ":$FPATH:" != *":/Users/franky/.zsh/completions:"* ]]; then export FPATH="/Users/franky/.zsh/completions:$FPATH"; fi
# The following lines were added by compinstall
zstyle ':completion:*:descriptions' format '%B%d%b'
zstyle ':completion:*:messages' format '%d'
zstyle ':completion:*:warnings' format 'No matches for: %d'
zstyle ':completion:*' group-name ''
zstyle ':completion:*' group-name ''
zstyle ':completion:*' ignore-parents parent pwd .. directory