Skip to content

Instantly share code, notes, and snippets.

@thecatwasnot
thecatwasnot / arch_linux_installation.md
Last active November 30, 2019 03:09 — forked from OdinsPlasmaRifle/arch_linux_installation.md
LVM on LUKS Arch installation with systemd-boot

Arch Linux Installation

LVM on LUKS Arch installation with systemd-boot

USB

Download Arch Linux

Find out the name of your USB drive with lsblk. Make sure that it is not mounted.

# Relevant bits of Gemfile...
group :development do
gem 'guard'
gem 'listen', :github => 'guard/listen'
gem 'celluloid-io'
end
@thecatwasnot
thecatwasnot / login.rb
Created October 20, 2011 20:33 — forked from onthespotqa/gist:1302270
login
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
@thecatwasnot
thecatwasnot / cucumber
Created October 6, 2011 23:11 — forked from onthespotqa/cucumber
cucumber examples
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 |
@thecatwasnot
thecatwasnot / cucumber
Created October 6, 2011 04:12 — forked from onthespotqa/cucumber
cucumber examples
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|