{
id: "paulistana", // ID
name: "Paulistana",
standard: "ABRASF",
version: "1.00",
actions: [
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
| # Remove default fish greeting | |
| set --erase fish_greeting | |
| # Path to your oh-my-fish. | |
| set fish_path $HOME/.oh-my-fish | |
| # Plugins | |
| # Path to your custom folder (default path is ~/.oh-my-fish/custom) | |
| #set fish_custom $HOME/dotfiles/oh-my-fish |
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
| # Default termtype. If the rcfile sets $TERM, that overrides this value. | |
| set -g default-terminal screen-256color | |
| # support logging out and back in | |
| set -g update-environment "SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION" | |
| # pbcopy support | |
| set-option -g default-command "reattach-to-user-namespace -l bash" | |
| # vi mode |
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
| brew cask install google-chrome | |
| brew cask install firefox | |
| brew cask install skype | |
| brew cask install spotify | |
| brew cask install iterm2 | |
| brew cask install atom | |
| brew cask install virtualbox --appdir=/Applications | |
| brew install azukiapp/azk/azk |
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
| /// Tributação dentro do mesmo município | |
| WithinCity = 1, | |
| /// Tributação fora do município | |
| OutsideCity = 2, | |
| /// Exportação | |
| Export = 4, | |
| /// Isento |
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
| Login: T1m4dm | |
| Senha: @T1m@dml1v@ |
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
| https://d2c6jjk3vnoatm.cloudfront.net/spree/products/accessoies/223/41451F80A088E2F_macos0006-RTUNICv1.0.11.zip |
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
| default-cache-ttl 900 | |
| max-cache-ttl 999999 | |
| pinentry-program /usr/local/bin/pinentry-mac | |
| enable-ssh-support | |
| log-file /var/log/gpg-agent.log |
This is a guide for Scala and Java development on Windows, using Windows Subsystem for Linux, although a bunch of it is applicable to a VirtualBox / Vagrant / Docker subsystem environment. This is not complete, but is intended to be as step by step as possible.
Sadly, much of this pertains to Git, GPG, SSH, and Windows all not working, rather than Windows Subsystem for Linux. There is no unified command line experience for native Windows still -- instead, there's a bunch of different conflicting programs which all bring along their own environment and need to be told about each other.
Read the entire Decent Security guide, and follow the instructions, especially:
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
| Get-AppxPackage | | |
| Where-Object Name -notlike *Libs* | | |
| Where-Object Name -notlike *Native* | | |
| Where-Object Name -ne Microsoft.WindowsStore | | |
| Where-Object Name -ne Microsoft.DesktopAppInstaller | | |
| Where-Object Name -ne Microsoft.StorePurchaseApp | | |
| Where-Object Name -ne Microsoft.AccountsControl | | |
| Where-Object Name -ne Microsoft.BioEnrollment | | |
| Where-Object Name -ne Microsoft.CredDialogHost | | |
| Where-Object Name -ne Microsoft.LockApp | |