- 当日発表の突然の追加仕様です
- 前日21:30時点でここ見てた人は予め知ってることになりますが、もし見ちゃってても追加仕様発表のときには新鮮なリアクションをお願いします
- 内容
- 1シリアルナンバーにつき1回シークレットライブご招待の抽選をうけることが出来る
- すでに投票システム自体はローンチされてしまっており、いくつかのシリアルナンバーはすでに投票に使われてしまっている想定
- なので、すでに投票済みのシリアルナンバーでも抽選だけは受けられる
- チケットの引き換えは当選シリアルナンバーとメールアドレスを入力するフォームから
- すでに投票システム自体はローンチされてしまっており、いくつかのシリアルナンバーはすでに投票に使われてしまっている想定
- 1シリアルナンバーにつき1回シークレットライブご招待の抽選をうけることが出来る
- 実際に当選メールが送られるようにはしなくてよいです
親方 | 弟子 | リポジトリ | アプリケーション | |
---|---|---|---|---|
Kayac部屋 | songmuさん | p_chinさん | https://github.com/kayac/cross2014-butsukari | http://54.199.167.37 |
DeNA部屋 | ryopekoさん | zdogmaさん | https://github.com/zdogma/MyApp | http://www3309ui.sakura.ne.jp:5000 |
CPAN部屋 | Yappoさん | moznionさん | https://github.com/moznion/IdolSongVote | http://cross2014.moznion.net |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" ng-app=""> | |
<head> | |
<meta charset="UTF-8" /> | |
<link href="/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
<link href="/css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" /> | |
<style type="text/css"> | |
body { padding-top: 70px; } | |
</style> |
こういうのを、
b = {
'AAAAA' => {
'components' => [
50,
80,
100,
],
ChefとかPuppetとかの勉強会です
次回があるかはわかりませんが、今回はChef成分多めになっております
Twitterハッシュタグ #pfcasual
IRCチャンネル #chef-casual@freenode
This file contains 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
source :rubygems | |
gem "test-kitchen" | |
gem "vagrant", "~> 1.0.7" | |
gem "berkshelf", "~> 1.2.1" |
This file contains 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Data::Dumper; | |
use LWP::UserAgent; | |
use URI; | |
use JSON qw/decode_json/; | |
use Digest::MD5 qw/md5_hex/; | |
use Path::Class qw/dir file/; |
This file contains 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
long_query_time = 2 | |
example.sqlのようなオペレーションをすると、slow_query.logみたいな感じでスロークエリログが出ますよね。 | |
use句でデータベースを切り替えると、スロークエリログにもuse句が出ますが、一度use句が出たらデータベースが切り替わってスロークエリログが吐かれるまでは二度とスロークエリログにuse句は出ないですよね? | |
現在選択されているデータベース名を取得する方法って何かないでしょうか? | |
スロークエリログを参照せずに最後にどのデータベースへのクエリがスロークエリログに出たのか、というか・・・ | |
コレをRubyのプログラムから取得したいのです。 |
This file contains 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
#!/usr/bin/env ruby | |
require 'aws-sdk' | |
AWS.config(:proxy_uri => ENV['http_proxy']) | |
config_path = File.expand_path(File.dirname(__FILE__)+"/keys.yml") | |
AWS.config(YAML.load(File.read(config_path))) | |
ec2 = AWS::EC2.new | |
key_name = security_group_name = 'develEnv' |