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:
I hereby claim:
To claim this, I am signing this object:
Provide different images for an <img>
tag to target different screen densities.
#!/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. |
#include <iostream> | |
#include <inttypes.h> | |
#include <cstring> | |
#define _STRINGIFY(LitteralString) #LitteralString | |
#define STRINGIFY(LitteralString) _STRINGIFY(LitteralString) | |
#define ASSERT(expr) \ | |
{ \ | |
if (!(expr)) \ | |
{ \ |
#!/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]> | |
# |
# 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 |