書くことがない状態で記事を書く
まずそのような状態がなぜ発生するのか
それはアドベントカレンダーに空いている日があったから
空いている日があったから予定を抑えたのである
さてその次にすべきはどんな記事を書くかを考えることである
わたしはペパボのマネージャーたちが送るアドベントカレンダーに登録をしたので、マネージャーに関して記事を書くのが良いであろうと考えた
I hereby claim:
To claim this, I am signing this object:
<% | |
imgs = {} | |
Dir.chdir("#{Rails.root}/app/assets/images") do | |
imgs = Dir.glob("**/*.{gif,jpg,jpeg,png}").inject({}) { |h, f| h.merge! f => image_path(f) } | |
end | |
%> | |
window.image_path = function(name) { | |
return <%= imgs.to_json %>[name]; | |
}; |
#!/bin/bash | |
COMPOSE_VERSION=1.4.0 | |
curl -L https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-`uname -s`-`uname -m` > ~/docker-compose | |
sudo mkdir -p /opt/bin | |
sudo mv ~/docker-compose /opt/bin/docker-compose | |
sudo chown root:root /opt/bin/docker-compose | |
sudo chmod +x /opt/bin/docker-compose |
cat names.txt | while read x; do echo -e “$RANDOM\t$x"; done | sort -k1,1n | cut -f 2- | paste - - - | column -t
cat names.txt | sort -R | paste - - - | column -t
server { | |
listen 80; | |
server_name dev.localhost; | |
client_max_body_size 300m; | |
proxy_set_header Host $http_host; | |
location / { |
var tests = ['--ssl-protocol=tlsv1', '--ignore-ssl-errors=true', 'capture/genBitmaps.js']; | |
var casperProcess = (process.platform === "win32" ? "casperjs.cmd" : "casperjs"); | |
var casperChild = spawn(casperProcess, tests); |
def case1 | |
i = 1 | |
case i | |
when 1 | |
5 | |
end + 10 | |
end | |
def case2 |
require 'rubygems' | |
require 'rails' | |
require 'active_support/railtie' | |
require 'action_dispatch/railtie' | |
require 'action_controller/railtie' | |
class SingleFile < Rails::Application | |
config.eager_load = true | |
config.cache_classes = true |
require 'rack' | |
class HelloRack | |
def call(env) | |
[200, { 'Content-Type' => 'text/html' }, ['Hello Rack!']] | |
end | |
end | |
run HelloRack.new |