Skip to content

Instantly share code, notes, and snippets.

View jljouannic's full-sized avatar

Jean-Louis Jouannic jljouannic

View GitHub Profile
@jljouannic
jljouannic / index.html
Last active February 6, 2020 17:27 — forked from pstuffa/index.html
4.0 Color Scales - Sequential
<!DOCTYPE html>
<html>
<body>
<style>
body {
font: 12px sans-serif;
}
div {
#!/bin/bash
apps=(\
"com.google.android.apps.tachyon" # Google Duo \
"com.google.android.music" # Google Music \
"com.google.android.videos" # Play Movies \
"com.android.browser" # Mi Browser \
"com.miui.bugreport" # Mi Feedback \
"com.miui.notes" # Mi Notes \
"com.miui.videoplayer" # Mi Video \
"com.miui.player" # Mi Music \
@jljouannic
jljouannic / cloud-init-config.yml
Created January 31, 2018 15:13
Cloud init config sample
#cloud-config
groups:
- user
users:
- name: <USER>
primary-group: <USER>
ssh-authorized-keys:
- <PUBLIC KEY>
sudo: ['ALL=(ALL) NOPASSWD:ALL']
groups: sudo
#!/bin/bash
#### dns_verify.sh
#
NETS="192.168.1"
IPS=$(seq 1 254) ## for Linux
#
# IPS=$(jot 254 1) ## for OpenBSD or FreeBSD
# IPS=$(seq 1 254) ## for Linux
#
echo
@jljouannic
jljouannic / boxstarter.ps1
Last active September 26, 2022 12:49 — forked from jessfraz/boxstarter.ps1
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jean-Louis Jouannic <[email protected]>
# Last Updated: 2022-09-26
# Tested on: Windows 10 Professional 64 bits v21H2
#
# Install Boxstarter from an _elevated_ PowerShell session:
# > Set-ExecutionPolicy RemoteSigned -Scope Process -Force; . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# Run this Boxstarter script by calling the following from the Boxstarter shell:
#

Quiz


Question 1

Qu'affiche le programme suivant ?

function f() {
@jljouannic
jljouannic / README.asciidoc
Created August 10, 2016 13:06
Docker registry installation

Installation d’un registry Docker

#!/bin/sh
# http://www.alfredklomp.com/programming/shrinkpdf
# Licensed under the 3-clause BSD license:
#
# Copyright (c) 2014, Alfred Klomp
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met: