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
=============================================================================== | |
= B e m V i n d o a o V I M T u t o r - Versão 1.7 pt_BR = | |
=============================================================================== | |
Vim é um poderoso editor que possui muitos comandos, tantos que seria | |
impossível ensinar num tutorial como este. Este tutorial é planejado para | |
apresentar os comandos suficientes para você ficar habilitado a usar | |
facilmente o Vim como um editor de textos genérico. | |
O tempo aproximado requerido para completar o tutorial é de 25-30 minutos, |
- 3D Printing with RepRap Cookbook [eBook] - Richard Salinas
- 3D Printing with SketchUp [eBook] - Marcus Ritland
- ASP.NET 3.5 CMS Development [eBook] - Curt Christianson, Jeff Cochran
- ASP.NET Data Presentation Controls Essentials [eBook] - Joydip Kanjilal
- ASP.NET Web API: Build RESTful web applications and services on the .NET framework [eBook] - Joydip Kanjilal
- Allan Brito
- Amazon Web Services: Migrating your .NET Enterprise Application [eBook] - Rob Linton
- Android 3.0 Application Development Cookbook [eBook] - Kyle Merrifield Mew
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
require 'test_helper' | |
class UserTest < ActiveSupport::TestCase | |
test 'nome é obrigatório' do | |
user = User.create(name: '') | |
assert user.errors, :name | |
end | |
test 'associação com empresa é obrigatória' do | |
user = User.create |
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
URL_EPISODES=https://developertea.com/episodes | |
URL=https://audio.simplecast.fm | |
for EPISODE in $(cat episodes.txt) | |
do | |
DOWN="${URL}/${EPISODE}.mp3" | |
echo "Baixando ${DOWN}" | |
wget ${DOWN} | |
done |
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
<html> | |
<head> | |
<title>Armando Gay</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<div id="guardaProjetos"> | |
<ul id="projetos"> | |
<!-- PROJETO --> |
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
function initSeq() { | |
var i=0; | |
return function(){ | |
i += 1; | |
return i | |
} | |
} | |
var a = initSeq() | |
, b = initSeq() |
Valores criados utilizando a tabela de 2016, caso esses valores sejam alterados, mudar as funcções:
- IniciaBasesINSS()
- IniciaBasesIR()
- IniciaParecelaDescontoIR()
Presumindo que as aliquotas de INSS sejam sempre 8, 9 e 11 e as de IR sejam 7.5 , 15, 22.5 e 27.5 , caso estas aliquotas mudem outros pontos no código devem ser alterados
Acrescentar estas funções (Alt + F11) a planilha:
' Aliquota de INSS
[user]
email = [email protected]
name = Armando
[color "diff"]
commit = yellow
frag = cyan reverse
meta = black
new = green
old = red