Skip to content

Instantly share code, notes, and snippets.

View SansGuidon's full-sized avatar
Curious mind reading about everything

SansGuidon SansGuidon

Curious mind reading about everything
  • Zoemp
View GitHub Profile
@SansGuidon
SansGuidon / .vimrc
Last active April 10, 2023 10:57
Validating Jenkinsfile in Vim and/or using CLI / terminal
" ~/.vimrc
" ...
" Check syntax in Vim asynchronously and fix files, with Language Server Protocol (LSP) support
Plugin 'dense-analysis/ale'
" ...
" dense-analysis/ale options
let g:ale_history_log_output = 1
let g:ale_use_global_executables = 1
@SansGuidon
SansGuidon / Dockerfile
Last active February 13, 2020 23:39
SWI-Prolog and Logtalk on CentOS/RHEL 7
FROM centos
RUN yum groupinstall -y "Development Tools" \
&& yum -y install epel-release \
&& yum clean all
RUN yum -y install \
git \
ninja-build \
libunwind \
freetype-devel \
gmp-devel \
@SansGuidon
SansGuidon / README.md
Created August 22, 2018 07:49 — forked from magnetikonline/README.md
List all Git repository objects by size.

List all Git repository objects by size

Summary

Bash script to:

  • Iterate all commits made within a Git repository.
  • List every object at each commit.
@SansGuidon
SansGuidon / readme.md
Last active April 7, 2018 09:25
Simple notes taking + cheatsheet
criterion Honor View 10 HTC U11+ Huawei P10+ LG G6 Galaxy S8 Oneplus 3T Oneplus 5T Huawei Mate 10 Pro
photo x x . x x . . .
autonomy x . . x x x x x
screen . . . . x x x x
design . . . . x x x x
weight . 0 x x x x x 0
autonomy (video) x . . 0 x x x x
audio (jack/quality) 0 . . . x x . .
score 4 3 4 4 7 7 4 5
@SansGuidon
SansGuidon / compare-download-sites.md
Last active May 31, 2021 11:43
compare download sites
search [ED] [ZT] [ID] [T9] [TZ] [TP] [2D] [ZE] [OM] [NT] [EZ] [YT] [TM] [TPB] [1X] [CP] [LT] [T4] [TL] [YG]
thx 1138 x x x x x x x x x
french hunger games x x x x . x x x x . x x x x
easy french s01 x x . x x . x . . x
vostfr lion x x x x x x x x x x x x
french lion x x x x x x x x . x x x x
silicon valley vostfr x x x x . . . . . . . . x . x
rock roll french x x x x x x x x x x x x x
battlestar galactica french x . . . . x x . . x
@SansGuidon
SansGuidon / gpg cheat sheet.md
Last active November 5, 2023 09:28
GPG Cheat Sheet

Basics

generate key in batch mode using a custom profile

gpg --gen-key --batch gpgspecs

create a file with your fingerprint info and display the related information. A fingerprint is used as a robust key identifier

gpg --fingerprint

Best practices