Glide is the easiest way to create useful slide for all of your Gists.
- input key
<-to go backward. - input key
->to go forward.
| var http = require('http'); | |
| server = http.createServer(function (req, res) { | |
| res.writeHead(200, {'Content-Type': 'text/plain'}); | |
| res.end('Hello World\n'); | |
| server.close(); | |
| }); | |
| server.listen(8080, 0, function () { | |
| console.log('Server running at http://localhost:8080/'); | |
| }); |
| var client = require('webdriverjs').remote({ | |
| desiredCapabilities: { | |
| browserName: 'phantomejs' | |
| }, | |
| logLeve: 'silent' | |
| }); | |
| client.init(); | |
| client |
| -module(test_mnesia). | |
| -import(lists, [foreach/2]). | |
| -compile(export_all). | |
| -include_lib("stdlib/include/qlc.hrl"). | |
| -record(shop, {item, quantity, cost}). | |
| -record(cost, {name, price}). | |
| -record(design, {id, plan}). |
$ aws ec2 run-instance --image-id <ami-xxxxxxxx>
--key-name <keyName>
--security-group-ids <sg-xxxxxx>
--subnet-id <subnet-xxxxx>
--instance-type t1.micro
--associate-public-ip-address
$ brew install elasticsearch
mongodbのデータディレクトリをアーカイブしてs3に保存.レプリカセットの場合はPRIMARYで実施.
% sudo tar -C /var/lib -cvz mongo | aws s3 cp - s3:///backup/mongodb-date '+%Y%m%d'