https://www.jetbrains.com/webstorm/documentation/WebStorm_ReferenceCard.pdf
File > Settings > Keymap > Visual Studio
Fixes Undo / Redo Keys
sass/ | |
| | |
|– base/ | |
| |– _reset.scss # Reset/normalize | |
| |– _typography.scss # Typography rules | |
| ... # Etc… | |
| | |
|– components/ | |
| |– _buttons.scss # Buttons | |
| |– _carousel.scss # Carousel |
#!/usr/bin/env bash | |
# requires: pip install awscli awsebcli | |
# PARAMETERS | |
env="dev" | |
fail() { | |
echo configuration failed | |
exit 1 |
#! /bin/bash | |
# change your /etc/postfix/main.cf | |
# always_bcc = [email protected] | |
DOMAIN=example.com | |
ARCHIVE=archive@$DOMAIN | |
getemail() { | |
doveadm fetch -u $ARCHIVE hdr mailbox-guid $1 uid $2 | grep "$3" | cut -f 2 -d "<" | cut -f 1 -d ">" | |
} |
# This is a skeleton for testing models including examples of validations, callbacks, | |
# scopes, instance & class methods, associations, and more. | |
# Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
# | |
# I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
# so if you have any, please share! | |
# | |
# @kyletcarlson | |
# | |
# This skeleton also assumes you're using the following gems: |
The MIT License (MIT) | |
Copyright (c) 2015 Justin Perry | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: |
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "A VPC environment in two availability zones with an NAT instance.", | |
"Parameters": { | |
"envPrefix": { | |
"Description": "Environment name prefix.", | |
"Type": "String", | |
"Default": "Test" | |
}, | |
"vpcCidr": { |
console.log('Loading function'); | |
var AWS = require('aws-sdk'); | |
AWS.config.region = 'us-west-2'; | |
exports.handler = function(event, context) { | |
console.log("\n\nLoading handler\n\n"); | |
var sns = new AWS.SNS(); | |
sns.publish({ |
https://www.jetbrains.com/webstorm/documentation/WebStorm_ReferenceCard.pdf
File > Settings > Keymap > Visual Studio
Fixes Undo / Redo Keys
All the steps below came from watching the Railscast below:
http://railscasts.com/episodes/274-remember-me-reset-password
The steps below assumes that your app already has a user and user authentication set up.
<p><%= link_to 'Forgot password?', new_password_reset_path %></p>
ssh [email protected] "bash -s -x" -- <ixgbevf-upgrade.sh |