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
config.vm.synced_folder "../app", "/home/vagrant/app", type: "nfs", mount_options: ['nolock', 'vers=3', 'udp', 'noatime', 'actimeo=1'] | |
# A private dhcp network is required for NFS to work (on Windows hosts, at least) | |
config.vm.network "private_network", type: "dhcp" |
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
{ | |
"color_scheme": "Packages/User/Solarized (dark) (SL).tmTheme", | |
"fallback_encoding": "UTF-8", | |
"font_size": 10, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
"theme": "Seti.sublime-theme", |
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://developertea.com/ | |
http://devchat.tv/js-jabber | |
http://nodeup.com/ |
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-29 08:41:40" build="140819"> | |
<value name="ColorTable00" type="dword" data="00000000"/> | |
<value name="ColorTable01" type="dword" data="00800000"/> | |
<value name="ColorTable02" type="dword" data="00008000"/> | |
<value name="ColorTable03" type="dword" data="00808000"/> | |
<value name="ColorTable04" type="dword" data="00000080"/> | |
<value name="ColorTable05" type="dword" data="00800080"/> |
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
NBTSTAT -A IPADDRS |
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
INSERT INTO public.permissao (nome, permissao) VALUES ('Login Retaguarda', 1); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Login Pdv', 2); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Perfil', 3); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Solicitacao de Usuario', 4); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Aprovacao de Usuarios', 5); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Permissoes', 6); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Devolucoes', 7); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Aprovacao de Devolucoes', 8); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Relatorio de Devolucoes', 9); | |
INSERT INTO public.permissao (nome, permissao) VALUES ('Criacao de devolucoes', 10); |
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
new Date().toLocaleDateString(); |
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
// Pad Right | |
String.prototype.padRight = function (l, c) { | |
return this + Array(l - this.length + 1).join(c || " "); | |
} | |
// Pad Left | |
String.prototype.padLeft = function (l, c) { | |
return Array(l - this.length + 1).join(c || " ") + this; | |
} |
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
LAlt & F1:: | |
SetTitleMatchMode, 2 | |
IfWinExist Sublime Text | |
WinActivate | |
return | |
LAlt & F2:: | |
IfWinExist ahk_class VirtualConsoleClass | |
WinActivate | |
return |
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
cd | |
mkdir bin | |
sudo ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" ~/bin/subl | |
cd $HOME // this will get you back to home directory | |
vim .bash_profile or .bashrc // this will open your .bash_profile file | |
export PATH=$PATH:~/bin | |
:wq // saves and close file |