{
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
/// 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
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
# 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
# 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
[ | |
"0161001", | |
"0161002", | |
"0161003", | |
"0161099", | |
"0162801", | |
"0162802", | |
"0162803", | |
"0162899", | |
"0163600", |
This file has been truncated, but you can view the full file.
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
[ | |
"01001000", | |
"01001001", | |
"01001010", | |
"01002000", | |
"01002001", | |
"01002010", | |
"01002020", | |
"01003000", | |
"01003001", |
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
var oauth2 = require('./lib/simple-oauth2.js')({ | |
clientID: 'roclient', | |
clientSecret: 'secret', | |
site: 'http://id.conube.com.br', | |
tokenPath: '/connect/token' | |
}); | |
var request, result, error; | |
var params = { |
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
<?xml version="1.0" encoding="utf-8"?> | |
<key name="Software"> | |
<key name="ConEmu"> | |
<key name=".Vanilla" modified="2015-04-27 12:06:15" build="150420"> | |
<value name="StartType" type="hex" data="02"/> | |
<value name="CmdLine" type="string" data=""/> | |
<value name="StartTasksFile" type="string" data=""/> | |
<value name="StartTasksName" type="string" data="{PowerShell (Admin)}"/> | |
<value name="StartFarFolders" type="hex" data="00"/> | |
<value name="StartFarEditors" type="hex" data="00"/> |
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 apt-get -y install curl | |
echo "Add repos" | |
#Chrome | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
# VirtualBox | |
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - | |
sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian saucy contrib" >> /etc/apt/sources.list.d/virtualbox.list' | |
# Spotify |