Skip to content

Instantly share code, notes, and snippets.

View nmasse-itix's full-sized avatar
🙂
At home

Nicolas Massé nmasse-itix

🙂
At home
View GitHub Profile
@nmasse-itix
nmasse-itix / README.md
Last active January 14, 2021 16:54
How to use podman with Ansible

How to use podman with Ansible

@nmasse-itix
nmasse-itix / README.md
Created January 13, 2021 09:44
How to configure VSCode for spell check / grammar check
@nmasse-itix
nmasse-itix / fcos.ign
Created November 21, 2020 19:53
CoreOS Install
{
"ignition": {
"version": "3.1.0"
},
"passwd": {
"users": [
{
"groups": [
"wheel",
"sudo"
@nmasse-itix
nmasse-itix / custom.css
Created November 2, 2020 18:02
Zettlr Bear CSS
/* Note name is bold */
.container .list-item.file p.filename, #file-list .container .list-item.directory p.filename {
font-weight: bold;
}
/* Match the file-tree with the style of the bear tag pane */
body #file-tree {
color: #CFCFCF;
}
@nmasse-itix
nmasse-itix / README.md
Created October 27, 2020 19:21
X.org configuration for Trackpad

X.org configuration for Trackpad

Section "InputClass"
	Identifier "My trackpads"
	MatchProduct "Apple Inc. Magic Trackpad 2|SynPS/2 Synaptics TouchPad"
	MatchDevicePath	"/dev/input/event*"
    Driver "libinput"
    
 # A left, right, middle button event is generated when one, two, or three
@nmasse-itix
nmasse-itix / nginx.conf
Created July 17, 2020 08:56
Nginx configuration for load balancing
user nginx nginx;
worker_processes 1;
error_log syslog:server=unix:/dev/log,nohostname warn;
events {
worker_connections 1024;
}
http {
@nmasse-itix
nmasse-itix / README.md
Created March 23, 2020 16:27
Install OpenShift 4 on Hetzner Server

Install OpenShift 4 on Hetzner Server

Install the host system

-> see Install RHEL8 on Hetzner Server.

Create the DNS entries (example using Gandi)

Install the Gandi CLI

@nmasse-itix
nmasse-itix / Jenkinsfile
Created June 27, 2019 15:33
Bare Jenkins pipeline calling the 3scale_toolbox
#!groovy
def targetSystemName = "saas-usecase-apikey"
def targetInstance = "3scale-saas"
def privateBaseURL = "http://echo-api.3scale.net"
def testUserKey = "azerty1234567890"
def developerAccountId = "[email protected]"
node() {
stage("Fetch OpenAPI") {