Skip to content

Instantly share code, notes, and snippets.

View alternative-rvb's full-sized avatar
😃

Nicolas Malet alternative-rvb

😃
View GitHub Profile
@alternative-rvb
alternative-rvb / sha256sum.sh
Last active September 14, 2019 09:03
Bash: Comment utiliser sha256sum
# https://doc.ubuntu-fr.org/tutoriel/comment_verifier_l_integrite_de_son_image_cd
sha256sum -c hugo_0.58.0_checksums.txt hugo_extended_0.58.0_Linux-64bit.deb | grep OK
@alternative-rvb
alternative-rvb / bash french language
Last active October 15, 2019 09:25
Ubuntu: Reconfigurer la langue du système
sudo dpkg-reconfigure locales
@alternative-rvb
alternative-rvb / bash change editor
Last active October 15, 2019 09:28
Ubuntu: Configurer l'éditeur et la liseuse par défaut
sudo update-alternatives --config pager
sudo update-alternatives --config editor
@alternative-rvb
alternative-rvb / bash save ssh keys
Last active October 15, 2019 09:31
Ubuntu : Sauvegarder la passphrase ssh
# # Insert in ~/.profile
# Need to install keychain
eval `keychain --eval --agents ssh -q ~/.ssh/id_rsa`
# redirect http -> https
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
@alternative-rvb
alternative-rvb / config
Last active May 30, 2020 16:27
BASH - SSH - CONFIG
# Insert in ~/.ssh/config
Host <name>
HostName <host>
User <username>
Port <22>
@alternative-rvb
alternative-rvb / .bashrc
Last active May 30, 2020 16:28
Bash: Personaliser le prompt en couleurs
## config de base
# export PS1='\u@\H:\w\$ '
## Les codes couleurs sont entre crochets
## DEBIAN :
export PS1='\[\033[02;32m\]\u@\H:\[\033[02;34m\]\w\$\[\033[00m\]\ '
## CENTOS :
# export PS1='\[\033[31m\][\u@\H\[\033[34m\] \w \[\033[31m\]]\[\033[31m\]\$\[\033[00m\] '
@alternative-rvb
alternative-rvb / .bashrc
Last active August 12, 2020 20:22
Ubuntu : Afficher le nom de la branche git sur votre terminal
# Show git branch name
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\] $(parse_git_branch)\[\033[00m\]\n\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$ (parse_git_branch)\$ '
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
// Debugger attach to chrome
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Chrome",
"port": 9222,
"request": "attach",
@alternative-rvb
alternative-rvb / settings.json
Last active February 5, 2021 21:16
Préférences de Windows Terminal
{
"guid": "{...}",
"hidden": false,
"name": "Ubuntu 20.04 LTS",
"source": "Windows.Terminal.Wsl",
"fontFace": "UbuntuMono Nerd Font Mono",
"fontSize": 14,
"suppressApplicationTitle": true,
"icon": "C:\\Users\\nicol\\OneDrive\\Images\\ubuntu.png",
"theme": "system",