This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Installs: | |
" | |
" git clone https://github.com/preservim/nerdtree.git ~/.vim/pack/default/start/nerdtree | |
" vim -u NONE -c "helptags ~/.vim/pack/default/start/nerdtree/doc" -c q | |
" git clone https://github.com/gruvbox-community/gruvbox.git ~/.vim/pack/default/start/gruvbox | |
syntax on | |
set guicursor= | |
"set noshowmatch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remember to set the next enviroment variables, otherwise doesn't work! | |
# export TDAMERITRADE_ACCESS_TOKEN="your_key" | |
# export TDAMERITRADE_CLIENT_ID="your_key" | |
# export TDAMERITRADE_REFRESH_TOKEN="your_key" | |
# Install tdameritrade module: https://pypi.org/project/tdameritrade/ | |
from datetime import datetime | |
import tdameritrade as td | |
c = td.TDClient() | |
stock = 'KO' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
bean-query -f csv ../main.bean 'select date, payee, narration, account, number, currency, tags' > main.csv | |
# Generar gastos | |
bean-query -f csv -o expenses.csv ../main.bean 'Select date, account, number where account ~ "^Expenses:"' | |
bean-query -f csv -o income.csv ../main.bean 'Select date, account, number where account ~ "^Income:"' | |
bean-query -f csv -o assets.csv ../main.bean 'Select date, account, number where account ~ "^Assets:"' | |
bean-query -f csv -o equity.csv ../main.bean 'Select date, account, number where account ~ "^Equity:"' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sudo visudo | |
Add: | |
user ALL = NOPASSWD:ALL | |
Final result: | |
root ALL = (ALL) ALL | |
%admin ALL = (ALL) ALL | |
user ALL = NOPASSWD:ALL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN CERTIFICATE----- | |
MIIC5jCCAc4CCQDzGcxkBpZLvzANBgkqhkiG9w0BAQsFADA1MQswCQYDVQQGEwJD | |
SDEPMA0GA1UECgwGUmllc2NvMRUwEwYDVQQDDAxDZXJ0aWZpY2F0ZXMwHhcNMjEx | |
MDI3MDc0NjAyWhcNMzExMDI1MDc0NjAyWjA1MQswCQYDVQQGEwJDSDEPMA0GA1UE | |
CgwGUmllc2NvMRUwEwYDVQQDDAxDZXJ0aWZpY2F0ZXMwggEiMA0GCSqGSIb3DQEB | |
AQUAA4IBDwAwggEKAoIBAQDbDeCMbK6H2fKONjpQQ1yurb6qkvDs5fZKk3pO/kMA | |
7CGOTogXyDcGVZT6rTAfhhjwU28dl/vl8Ab6Faa+eegrqD3DH3arNrryJTcQOlSG | |
Y3FBn1prAVmJtF1tdDYq/dreetC8D9w2cJHKgVU6XIyQQSywz/aF5TPVM+6ayEul | |
ryIHtcmgdwqo8CdxBbdiguPYZN6lR2wMloIMAWNY+WsKIQcdTiGecgd6ouCvtbzg | |
XuZD+5JISLrjy9LhiYJlJa9siJpxuEZ7TfjM6V/rXoTYcYnln+Wj4v9KeR2bwxPu |