Skip to content

Instantly share code, notes, and snippets.

View gblmarquez's full-sized avatar
🏡
Focused on people for growth the business

Gabriel Marquez gblmarquez

🏡
Focused on people for growth the business
View GitHub Profile
@gblmarquez
gblmarquez / config.fish
Last active August 29, 2015 14:26 — forked from anonymous/config.fish
.config/fish/config.fish
# 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
@gblmarquez
gblmarquez / .tmux.conf
Created August 6, 2015 14:28
.tmux.conf with fish as default shell
# 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

/Providers

POST /Providers

  {
    id: "paulistana", // ID
    name: "Paulistana",
    standard: "ABRASF",
    version: "1.00",
    actions: [
@gblmarquez
gblmarquez / bootstrap.sh
Last active July 13, 2016 20:43
mac bootstrap
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
@gblmarquez
gblmarquez / gist:f7917b0275cc1c033f3a
Created February 11, 2016 21:14
Documentação TaxationType
/// Tributação dentro do mesmo município
WithinCity = 1,
/// Tributação fora do município
OutsideCity = 2,
/// Exportação
Export = 4,
/// Isento
@gblmarquez
gblmarquez / acesso.txt
Created October 5, 2016 18:46
Live TIM Modem acesso
Login: T1m4dm
Senha: @T1m@dml1v@
@gblmarquez
gblmarquez / gist:e1543e0087c38fa79b4cfc4e0920dc04
Created October 21, 2016 15:57
Aluminum 3-Port USB 3.0 and Ethernet Hub - Upgrade Patch (Mac OS 10.10) Driver
https://d2c6jjk3vnoatm.cloudfront.net/spree/products/accessoies/223/41451F80A088E2F_macos0006-RTUNICv1.0.11.zip
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
@gblmarquez
gblmarquez / win10-dev.md
Created May 18, 2017 13:44 — forked from wsargent/win10-dev.md
Windows Development Environment for Scala

Windows 10 Development Environment for Scala

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.

Harden Windows 10

Read the entire Decent Security guide, and follow the instructions, especially:

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 |