sudo vim /etc/default/keyboard
And edit XKBOPTIONS="ctrl:nocaps"
Then, reconfigure:
sudo dpkg-reconfigure keyboard-configuration
| DROP TABLE ALUNO; |
sudo vim /etc/default/keyboard
And edit XKBOPTIONS="ctrl:nocaps"
Then, reconfigure:
sudo dpkg-reconfigure keyboard-configuration
| # This rake will setup the tenant like rails | |
| # setup the test database. | |
| Rake::Task['db:test:prepare'].enhance do | |
| # Connect in the test database. | |
| Rails.env = 'test' | |
| ActiveRecord::Base.establish_connection('test') | |
| Apartment::Tenant.drop('app') rescue nil | |
| Apartment::Tenant.create('appp') |
| #!/bin/ruby | |
| class PisPasepGenerator | |
| INDEX = [3, 2, 9, 8, 7, 6, 5, 4, 3, 2] | |
| def self.generate! | |
| numbers = [] | |
| 10.times { numbers << rand(10) } | |
| calculated = numbers.each_with_index { |n, i| PisPasepGenerator::INDEX[i] * n }.inject(:+) |
| $("#form").on("change", "input[id$=my_field]", function() {}); |
| module Capybara | |
| module Node | |
| class Base | |
| def fill_in(locator, options = {}) | |
| super(locator, :with => nil) | |
| super | |
| end | |
| end | |
| end | |
| end |
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| # ZSH_THEME="robbyrussell" (default) | |
| ZSH_THEME="gallois" |
| Prezado(a) Usuario(a), | |
| Para melhorar a qualidade dos nossos serviços, estamos excluíndo todas as contas inativas do gmail. | |
| Estamos verificando e confirmando todas contas ativas. | |
| Para manter sua conta gmail ativa clique no link abaixo: | |
| (VALIDAR) [Aqui é o link que o manolo coloca o formulário igual ao do gmail] | |
| Para cancelar definitivamente sua conta gmail clique no link abaixo: |
| <div id="content-outer"> | |
| <!-- start content --> | |
| <div id="content"> | |
| <div id="page-heading"><h1>Editando Usuário <%= @user.id %></h1></div> | |
| <table border="0" width="100%" cellpadding="0" cellspacing="0" id="content-table"> | |
| <tr> | |
| <th rowspan="3" class="sized"><%= image_tag("/images/shared/side_shadowleft.jpg", :width => '20', :height => '300') %></th> | |
| <th class="topleft"></th> |
| class Address | |
| belongs_to :user | |
| validates :zip_code, :presencee => true | |
| end |