Skip to content

Instantly share code, notes, and snippets.

View good-vi's full-sized avatar
🎯
Focusing

Viktor good-vi

🎯
Focusing
View GitHub Profile
@good-vi
good-vi / letsencrypt-proxmox.md
Last active September 8, 2021 13:24 — forked from lichti/letsencrypt-proxmox.md
Proxmox with letsencrypt ssl updated by 2021
apt update && apt install certbot

use STANDALONE validation on 80 port (should be open)

# lowercase
DOMAIN_NAME=xxx.com.br
EMAIL=meu-email@gmail.com
#!/usr/bin/env python3
#
# blame(@qrkourier)
#
from jira import JIRA
import os
import sys
from argparse import ArgumentParser
import webbrowser
@good-vi
good-vi / .gitconfig
Created March 10, 2019 07:25 — forked from rambabusaravanan/.gitconfig
Git Diff and Merge Tool - IntelliJ IDEA
# Linux
# add the following to "~/.gitconfig" file
[merge]
tool = intellij
[mergetool "intellij"]
cmd = /usr/local/bin/idea merge $(cd $(dirname "$LOCAL") && pwd)/$(basename "$LOCAL") $(cd $(dirname "$REMOTE") && pwd)/$(basename "$REMOTE") $(cd $(dirname "$BASE") && pwd)/$(basename "$BASE") $(cd $(dirname "$MERGED") && pwd)/$(basename "$MERGED")
trustExitCode = true
[diff]