LVM on LUKS Arch installation with systemd-boot
Download Arch Linux
Find out the name of your USB drive with lsblk. Make sure that it is not mounted.
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUBgEA0wWZhdeEyn3TKN57eT2L79fVXAfH/NLQyFULNUMZeb74pUGe6/4JJNuH3HuNDUhb3qNggKZHVjwMnIY+IoigFdh9pe61WAUPfBONqlWGL2S+w73PGpF7e7oT1tiKPIcQ2Mpj4Pu4Dq9JXjQN7fjLQZb6Hb5DX8iiP+iZ6pYMBuujvofO0tALREvnKaDwjWogsg2ENMi7kF+rQjx/8iMIxAER/hqiRbpVv7WWHgzwwg5WiuEaeHjjCVoT8zd4F73ZmIOZFfZFOAORDGVOB+6potlo/aTO6pCrXi1D4ekVtxfsONZgF32IdqTErKXs0QzOBzu6gNdsW6qdr6W+AUufi2gWyINYWfg0BYr20PrbiZwtLtvR1jbQk6b1WTf9PHSUUv02yz46Ce7d1o4L6UKkVAv8VcZNYF+tpo8xN8PIDkIJe/CTQt32pe3R8bQgXzTivAfSceVUcVAbx9R/coDhSNn/rD6AwhGF8O5TS/Nl3w4Cnmx9e79x0oV8jYM= thecatwasnot@eclipse |
I hereby claim:
To claim this, I am signing this object:
# Relevant bits of Gemfile... | |
group :development do | |
gem 'guard' | |
gem 'listen', :github => 'guard/listen' | |
gem 'celluloid-io' | |
end |
<h1>New Post</h1> | |
<% form('/posts') do |f| %> | |
<%= f.text_field :title %> | |
<%= f.text_area :body %> | |
<%= f.submit 'Create' %> | |
<% end %> |
it "should login to insight" do | |
$users.each do |user| | |
Bookmarks.new do |c| | |
c.home_page.company_id.set("resonancerecords") | |
c.home_page.user_id.set(user) | |
c.home_page.password.set($password) | |
c.home_page.login_button.click | |
if user == "qasupport" | |
c.home_page.add_app_button.should be_visible |
Feature: Cucumber Question | |
Scenario Outline: Google Search for <search term> | |
Given I am on Google Search Home Page | |
When I search for "<Search Term>" | |
Then I should find "<Search Term>" | |
Examples: | |
| Search Term | | |
| Facebook | | |
| Delicious | |
feature file: | |
Feature: Cucumber Question | |
Scenario Outline: Google Search for <search term> | |
Given I am on Google Search Home Page | |
When I search for <search term> | |
Then I should find <search term> | |
Examples: | |
|search term| | |
|Facebook| |
#!/bin/bash | |
# Git status in git projects.... | |
# in your .bashrc file: | |
# if [ -f ~/.prompt ]; then | |
# . ~/.prompt | |
# fi | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
BLUE="\[\033[0;34m\]" |
# Create own window instead of using desktop (required in nautilus) | |
# own_window yes | |
# own_window_type override | |
background no | |
own_window yes | |
own_window_type normal | |
own_window_transparent yes | |
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager | |
# Use double buffering (reduces flicker, may not work for everyone) |