Skip to content

Instantly share code, notes, and snippets.

View julianobarbosa's full-sized avatar
💭
I may be slow to respond.

Juliano Barbosa julianobarbosa

💭
I may be slow to respond.
View GitHub Profile
@julianobarbosa
julianobarbosa / run-ansible-with-any-host-without-inventory
Created November 17, 2019 22:15 — forked from lilongen/run-ansible-with-any-host-without-inventory
How to run Ansible without specifying the inventory but the host directly?
Question:
. How to run Ansible without specifying the inventory but the host directly?
. Run a playbook or command with arbitrary host not in the inventory hosts list?
. run ansible with arbitrary host/ip without inventory?
Answer:
Surprisingly, the trick is to append a ,
The host parameter preceding the , can be either a hostname or an IPv4/v6 address.
ansible all -i example.com,
@julianobarbosa
julianobarbosa / gitignore-init.md
Created August 19, 2019 14:58
Python .gitignore

Byte-compiled / optimized / DLL files

pycache/ *.py[cod] *$py.class

C extensions

*.so

Distribution / packaging

.Python

@julianobarbosa
julianobarbosa / pip-update.ps1
Created August 6, 2019 15:41
Python pip update
pip list -o | ForEach-Object { $data=$_ -split " "; python -m pip install -U $data[0]}
@julianobarbosa
julianobarbosa / vscode-settings.json
Last active August 14, 2019 15:12
vscode python settings
{
"shellLauncher.shells.windows": [
{
"shell": "C:\\Windows\\System32\\cmd.exe",
"label": "cmd"
},
{
"shell": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"label": "PowerShell 5.1"
},
@julianobarbosa
julianobarbosa / pip-update.md
Last active June 26, 2020 00:36
Python PIP Update

python -m pip list --outdated | awk '{print $1}' | xargs -n1 python -m pip install -U

@julianobarbosa
julianobarbosa / 256 colors.md
Created July 21, 2019 16:50 — forked from limingjie/256 colors.md
256 colors in putty, tmux/screen and vim

#256 colors in putty, tmux/screen and vim There is a detailed answer on stackoverflow. If you are looking for a short one, here it is.

  • putty

    Set Connection -> Data -> Terminal-type string to xterm-256color

  • tmux

Add this line to ~/.tmux.conf

@julianobarbosa
julianobarbosa / django-apache.conf
Created July 12, 2019 12:41
Apache conf for Django
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
@julianobarbosa
julianobarbosa / import-gz.sh
Created July 7, 2019 14:38
Import sql.gz file to MySQL
zcat myfile.sql.gz | mysql -u root -ppassword mydb
@julianobarbosa
julianobarbosa / import-tar-gz.sh
Created July 7, 2019 14:35
Import a tar.gz file to MySQL
tar xzOf dump.sql.tar.gz | mysql -u $user -p $database