-
さくらの [VPSコントロールパネル][vps_home] から
OS再インストール→カスタムOSインストールへ -
カスタムOSインストール の
OS選択でUbuntu 12.04 amd64を選択 -
注意事項を読んで
確認ボタン →実行ボタン -
VNCコンソールでインストーラーが起動するので [インストールガイド][install_guid] を参考にインストールを進める
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| [[ -e ~/.dotfiles ]] || git clone [email protected]:sonots/.dotfiles.git ~/.dotfiles | |
| pushd ~/.dotfiles | |
| git submodule init | |
| git submodule update | |
| for i in `ls -a` | |
| do | |
| [ $i = "." ] && continue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "log" | |
| "net/mail" | |
| "encoding/base64" | |
| "net/smtp" | |
| "fmt" | |
| "strings" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http { | |
| include /etc/nginx/mime.types; | |
| default_type application/octet-stream; | |
| log_format ltsv 'domain:$host\t' | |
| 'host:$remote_addr\t' | |
| 'user:$remote_user\t' | |
| 'time:$time_local\t' | |
| 'method:$request_method\t' | |
| 'path:$request_uri\t' |
What this guide will cover: the code you will need in order to include Redis and Resque in your Rails app, and the process of creating a background job with Resque.
What this guide will not cover: installing Ruby, Rails, or Redis.
Note: As of this writing I am still using Ruby 1.9.3p374, Rails 3.2.13, Redis 2.6.11, and Resque 1.24.1. I use SQLite in development and Postgres in production.
Background jobs are frustrating if you've never dealt with them before. Over the past few weeks I've had to incorporate Redis and Resque into my projects in various ways and every bit of progress I made was very painful. There are many 'gotchas' when it comes to background workers, and documentation tends to be outdated or scattered at best.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wget http://stedolan.github.io/jq/download/linux64/jq | |
| aws ec2 describe-instances --filters "Name=tag:Name,Values=$NAME" \ | |
| "Name=instance-state-name,Values=running" \ | |
| | jq -r \ | |
| ".Reservations[] | .Instances[] | .InstanceId" \ | |
| aws ec2 describe-volumes --filters \ | |
| "Name=status,Values=available" \ | |
| | jq -r ".Volumes[] | .VolumeId" \ |
| 更新: | 2014-11-20 |
|---|---|
| バージョン: | 0.0.5 |
| 作者: | @voluntas |
| URL: | http://voluntas.github.io/ |
概要
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "VPC knowhow template", | |
| "Parameters": { | |
| "KeyName": { | |
| "Description": "Name of an existing EC2 KeyPair to enable SSH access to the instances", | |
| "Type": "String", | |
| "MinLength": "1", | |
| "MaxLength": "64", | |
| "AllowedPattern": "[-_ a-zA-Z0-9]*", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MainViewController: UITableViewController, UITableViewControllerDelegate, UITableViewControllerDataSource { | |
| // If using xib | |
| override func awakeFromNib() { | |
| super.awakeFromNib() | |
| } | |
| // If not using xib | |
| func init(name: String) { | |
| } |
OlderNewer