Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| #!/bin/bash | |
| ######################################################################## | |
| ## ppk2pem.sh | |
| ## | |
| ## Gustavo Arnosti Neves | |
| ## 30 / Ago / 2016 | |
| ## | |
| ## Transforma um certifica .ppk (Putty) para .pem (OpenSSH) | |
| ## usando o aplicativo puttygen (deve ser instalado na maquina) |
| @ECHO OFF | |
| :: Dirf2017 Java Loader - https://gist.github.com/tavinus/3f2a485434b755d6569976215d3f4ea0 | |
| :: Use o instalador em: https://gist.github.com/tavinus/812db2dbf9c22908ebc3c0a37f87e818 | |
| set PATH=C:\Arquivos de Programas RFB\Dirf2017\clientfirebird;%PATH% | |
| start /d "C:\Arquivos de Programas RFB\Dirf2017" "" "javaw" -jar pgdDirf.jar -classpath "C:\Arquivos de Programas RFB\Dirf2017\lib" |
| @echo off | |
| :: Gustavo Arnosti Neves - Fev 2017 | |
| :: https://github.com/tavinus | |
| :: https://gist.github.com/tavinus/812db2dbf9c22908ebc3c0a37f87e818 | |
| :: Se voce instalou o Dirf2017 em uma pasta diferente, mude aqui! | |
| set DIRFFOLDER=C:\Arquivos de Programas RFB\Dirf2017 | |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| #!/bin/bash | |
| TRUE=0 | |
| FALSE=1 | |
| PBIN="$(which python)" | |
| PY2="$(python --version 2>&1 | grep -w 'Python 2')" | |
| [[ -z $PY2 ]] && PY2=$FALSE || PY2=$TRUE | |
| WGETBIN="$(which wget 2>/dev/null)" |
| #!/bin/sh | |
| ############################################################## | |
| # Gustavo Arnosti Neves | |
| # | |
| # Provides a diff-git shortcut in /usr/bin/diff-git | |
| # | |
| # Required: GIT | |
| # # opkg install git | |
| # | |
| # You may install diffutils for the simplified diff |
| #!/bin/sh | |
| ############################################### | |
| # Gustavo Arnosti Neves | |
| # May / 2017 | |
| # | |
| # Upgrade packages listed by: | |
| # opkg list-upgradable | |
| # | |
| # This Script: | |
| # https://gist.github.com/tavinus/997d896cebd575bfaf1706ce6e701c2d |
| #!/bin/sh | |
| ############################################### | |
| ############################################### | |
| ## | |
| ## MOVED TO GITHUB REPOSITORY!! | |
| ## https://github.com/tavinus/opkg-upgrade | |
| ## THIS WILL NOT BE UPDATED!! | |
| ## | |
| ############################################### | |
| ############################################### |
| #!/bin/bash | |
| TRUE=0 | |
| FALSE=1 | |
| PBIN="$(which python)" | |
| PY2="$(python --version 2>&1 | grep -w 'Python 2')" | |
| [[ -z $PY2 ]] && PY2=$FALSE || PY2=$TRUE | |
| WGETBIN="$(which wget 2>/dev/null)" |
| #!/bin/bash | |
| # Author: Maxwel Leite | |
| # Changes: Gustavo Neves | |
| # Website: http://needforbits.wordpress.com/ | |
| # Description: Script to install Microsoft Vista TrueType Fonts (TTF) aka Microsoft’s ClearType fonts on Ubuntu distros | |
| # Microsoft added a group of new "ClearType Fonts" to Windows with Windows Vista and Office 2007. | |
| # These fonts are named Constantia, Corbel, Calibri, Cambria (and Cambria Math), Candara, and Consolas. | |
| # Calibri became the default font on Microsoft Word 2007, and it’s still the default font on Word 2016 today. | |
| # Dependencies: wget, fontforge and cabextract | |
| # Tested: Ubuntu Saucy/Trusty/Xenial |