I hereby claim:
- I am trystant on github.
- I am scorintha (https://keybase.io/scorintha) on keybase.
- I have a public key ASC2HeAdGDvtTugg8aVbBIje2Y12FR_2pw750Eft4zv6EAo
To claim this, I am signing this object:
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "DelegateS3Access", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "<INSERT BACKUP ACCOUNT ARN HERE>" | |
}, | |
"Action": [ |
I hereby claim:
To claim this, I am signing this object:
# rubospec function to do rubocop & rspec on files | |
rubospec () { | |
echo "running 'rubocop -a' and 'bundle exec rspec' on: $@" | |
rubocop -a $@ | |
bundle exec rspec $@ | |
} | |
# So it begins... | |
alias rbs='rubospec' |
#!/bin/bash | |
# GTK+ and Firefox for Amazon Linux | |
# Written by Joseph Lawson 2012-06-03 | |
# http://joekiller.com | |
# http://joekiller.com/2012/06/03/install-firefox-on-amazon-linux-x86_64-compiling-gtk/ | |
# chmod 755 ./gtk-firefox.sh | |
# sudo ./gtk-firefox.sh | |
# #{Padrino.root}/spec/admin/controllers/resources_controller_spec.rb | |
require 'spec_helper' | |
describe 'admin/resources_controller' do | |
it 'displays the resources index for the admin' do | |
login_as('admin') | |
get "/admin/resources" | |
expect(last_response.body).to include("Resources | Client Admin") | |
end |
Here are a list of gists and articles with information on | |
making a good README. I'll be expanding upon this list over | |
time and if you know of an item to add to this, please let | |
me know: | |
https://gist.github.com/PurpleBooth/109311bb0361f32d87a2 | |
https://gist.github.com/jxson/1784669 | |
https://coderwall.com/p/fy05hq/how-to-make-beautiful-github-readme |
* { | |
box-sizing: border-box; | |
} | |
main { | |
padding: 50px; | |
min-width: 250px; | |
} | |
h1 { |
### Keybase proof | |
I hereby claim: | |
* I am trystant on github. | |
* I am scorintha (https://keybase.io/scorintha) on keybase. | |
* I have a public key ASDblkJSSMu0EpR7GVELZGx4nzSYJu60w_bInLJbT7fUJQo | |
To claim this, I am signing this object: |
# System-wide .bashrc file for interactive bash(1) shells. | |
# command to mount the android file image | |
function mountAndroid { hdiutil attach ~/AndroidDev.dmg -mountpoint /Volumes/Android; } | |
# Function to upload a screenshot to grandkru.com | |
upload_error_image() { | |
screen_shot_file=`ls -at ~/Desktop/Screen* | head -1` | |
command="scp -2 -v \"${screen_shot_file}\" [email protected]:public_html/grandkru.com/images/${1}" | |
echo "Running ${command}" |
struct RegExp { | |
/** | |
Check password complexity | |
- parameter password: password to test | |
- parameter length: password min length | |
- parameter patternsToEscape: patterns that password must not contains | |
- parameter caseSensitivty: specify if password must conforms case sensitivity or not | |
- parameter numericDigits: specify if password must conforms contains numeric digits or not |