- メインスピーカー:マシューさん(@matthewmccull)
- サブスピーカー:ジョンさん(@johndbritton)
従来の CVCS (集中バージョン管理システム)のリビジョン番号は連番。 SVN はサーバーにデプロイした時点でリビジョン番号1と設定される。
| ## place this file to same directory of `Vagrantfile' then simply require "snap.rb" in Vagrantfile | |
| module Snap | |
| module VBox | |
| class SnapShot | |
| require "forwardable" | |
| extend Forwardable | |
| def_delegators :@snap, :name, :uuid, :time_stamp | |
| @@snaps = [] | |
| class << self |
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAzXvGAxHaqRWxIQixkgfCSowh997121hbJEbpP8ObDmBOCDGj5Qq8WqVYg0ynYbqWBcfHHybwf59XIh26DVZvz91S+zyPC/itKlFDIZfF3NEKFzSRRCTUH5IF7il2+zwY84zTxu9HXl1G0PRz79ZYZKjqXttrbSLVMMGVDFIEiZ1cJj8di76Zb36UAwh5KqBe6DZx6h86Bf/ylec5/p8ZguKqHRIUWYFAmnLTf9+vK62CIKFXOF8Wmgt3Dslx2o5UMyg1f9M/oDCAClJ1BNeJUdVLxHa8o5V82VjdgWHE2q7if0NNxK6AtPZl1OviiNzQiDIL7k5jhn41jXb0MITxSQ== d6rkaiz@gmail.com |
| #!/bin/sh | |
| ## | |
| # This is a script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # Run in interactive mode with: | |
| # $ sh -c "$(curl -sL https://raw.github.com/gist/2108403/hack.sh)" | |
| # | |
| # or run it without prompt questions: |
| source :rubygems | |
| gem 'shotgun', :group=>:development | |
| gem 'rack-cache' | |
| gem 'sinatra', :require => 'sinatra/base' | |
| gem 'sinatra-support' | |
| gem 'haml' |
| # ステップバイステップで学ぶ Fluentd + GrowthForecast でグラフ作成まとめ - 彼女からは、おいちゃんと呼ばれています | |
| # http://d.hatena.ne.jp/inouetakuya/20130216/1361015295 | |
| <source> | |
| type forward | |
| </source> | |
| <match apache.access> | |
| type copy | |
| #!/bin/bash | |
| # git-cleanup-repo | |
| # | |
| # Author: Rob Miller <rob@bigfish.co.uk> | |
| # Adapted from the original by Yorick Sijsling | |
| git checkout master &> /dev/null | |
| # Make sure we're working with the most up-to-date version of master. | |
| git fetch |
| #!/bin/sh | |
| # | |
| # Use posixregex CLI tool from: https://github.com/syzdek/dmstools/blob/master/src/posixregex.c | |
| RE_IPV4="((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])" | |
| posixregex -r "^(${RE_IPV4})$" \ | |
| 127.0.0.1 \ | |
| 10.0.0.1 \ | |
| 192.168.1.1 \ |
| $ for site in google.com facebook.com youtube.com yahoo.com wikipedia.org linkedin.com microsoft.com twitter.com amazon.com blogspot.com tumblr.com netflix.com mozilla.org marketplace.mozilla.com login.persona.org; do echo;echo "-- $site --"; ./CiphersScan.sh $site:443;done | |
| -- google.com -- | |
| prio ciphersuite protocol pfs_keysize | |
| 1 ECDHE-RSA-AES128-GCM-SHA256 TLSv1.2 ECDH,P-256,256bits | |
| 2 ECDHE-RSA-RC4-SHA TLSv1.2 ECDH,P-256,256bits | |
| 3 ECDHE-RSA-AES128-SHA TLSv1.2 ECDH,P-256,256bits | |
| 4 AES128-GCM-SHA256 TLSv1.2 | |
| 5 RC4-SHA TLSv1.2 | |
| 6 RC4-MD5 TLSv1.2 |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
従来の CVCS (集中バージョン管理システム)のリビジョン番号は連番。 SVN はサーバーにデプロイした時点でリビジョン番号1と設定される。