Skip to content

Instantly share code, notes, and snippets.

View Sp0ne's full-sized avatar
🧙‍♂️
Gentle dreamer...

Vinces Sp0ne

🧙‍♂️
Gentle dreamer...
View GitHub Profile
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"coordinates": [
2.4528647527925216,
49.02408289207625
@Sp0ne
Sp0ne / doker-cheatsheet-memo.md
Last active October 25, 2023 12:29
Docker cheat sheet : utils command memo

Docker Memo

docs.docker.com

Analyze how much space Docker is using

➜ docker system df
@Sp0ne
Sp0ne / puppeteerDebianHeadless.md
Created September 14, 2021 12:45
Puppeteer Debian Headless Memo

System

Debian 10 Buster headless

Chromium dependencies

Shared Libraries needed

$ sudo apt install libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgbm1 libasound2 libpangocairo-1.0-0 libxss1 libgtk-3-0

Install nvm

Local user

@Sp0ne
Sp0ne / fix-corrupt-zsh-history.sh
Last active September 15, 2021 21:56
Fixes a corrupt .zsh_history file
#!/bin/zsh
# --
# Vinces - https://vinces.io
# --
# Fixes a corrupt .zsh_history file:
# ➜ cd Folder && zsh fix-corrupt-zsh-history.sh
# move the .zsh_history file into another .zsh_history_bad file
mv ~/.zsh_history ~/.zsh_history_bad
@Sp0ne
Sp0ne / ubuntu-setup-memo.md
Last active October 26, 2023 14:09
Ubuntu set up memo

Quickly setup Ubuntu ·

🚨 Important : This Stack is build for PERSONAL LOCAL development and NOT FOR PRODUCTION USAGE

Global

update list source

sudo apt-get update