u(ry
現代日本語圏エンジニアにおいてのヴォルデモートのような存在。名前を言うだけで呪われる。
呪われると以下のようなことが起きる
- ブログを書くと「俺様にバグ報告するのだ!」とコメントを書かれる
- Twitter でしつこい @ スパムがくるようになる
" Vim syntax file | |
" Language: HTML (version 5) | |
" Maintainer: Rodrigo Machado <[email protected]> | |
" URL: http://gist.github.com/256840 | |
" Last Change: 2010 Aug 26 | |
" License: Public domain | |
" (but let me know if you liked it :) ) | |
" | |
" Note: This file just adds the new tags from HTML 5 | |
" and don't replace default html.vim syntax file |
diff --git a/lib/plugins/defaults/switch.rb b/lib/plugins/defaults/switch.rb | |
index 266ab60..83141cb 100644 | |
--- a/lib/plugins/defaults/switch.rb | |
+++ b/lib/plugins/defaults/switch.rb | |
@@ -10,18 +10,30 @@ module Termtter::Client | |
passwords[config.user_name] = config.password | |
- if user_name | |
- config.user_name = normalize_as_user_name(arg) |
突然のメールでのご連絡失礼いたします。 | |
******株式会社の**と申します。 | |
弊社はIT業界の大手企業の求人をご紹介しております人材紹介会社です。 | |
■弊社ホームページ | |
http://www.techno-brain.co.jp/ | |
本日ssig33様へご連絡させて頂きましたのは、"大手WEBサービス企業"より | |
スカウトの依頼を受け、ssig33様をssig33.com、twitter、facebook等で拝見し、案件に見合うで | |
あろう御経験とご経歴をお持ちの優秀な方と御見受けし、 |
require 'formula' | |
class ApacheCassandra < Formula | |
url 'http://www.apache.org/dyn/closer.cgi?path=/cassandra/0.7.9/apache-cassandra-0.7.9-bin.tar.gz' | |
homepage 'http://cassandra.apache.org' | |
md5 '6c7ae6a2c2e58e72261fa1f7321696fb' | |
def install | |
(var+'lib/cassandra-0.7').mkpath | |
(var+'log/cassandra-0.7').mkpath |
# -*- coding: utf-8 -*- | |
require 'rubygems' | |
require 'RMagick' | |
filename = ARGV.first | |
unless filename | |
warn "usage: #{$0} <ANIMATION GIF FILE>" | |
exit 1 | |
end |
title: "テストクックブック" | |
logo: http://rackhub.net/assets/logo.png | |
url: http://gitrecipes.com/ | |
footer: false | |
description: "クラウド上のlocalhost。10秒で使える環境構築済みの開発サーバー『Rackhub』の使い方をご紹介します!" | |
git log --remotes --simplify-by-decoration --no-merges --pretty='tformat:%C(blue)%ar%Creset%x09%C(yellow)%H%Creset' --since='{7 days ago}' | git name-rev --stdin --name-only |
class A | |
def foo(num) | |
%w[one two three][num - 1] | |
end | |
end | |
describe A do | |
describe "#foo" do | |
RSpec::Matchers.define :do_foo do |args| | |
match do |instance| |