- 『ビジネススクールでは学べない 世界最先端の経営学』
- http://www.amazon.co.jp/dp/4822279324/
これを読んでる。
この本の中で「トランザクティブ・メモリー」という話がでてきた。概要は以下のコラムに書いてる。
これを読んでる。
この本の中で「トランザクティブ・メモリー」という話がでてきた。概要は以下のコラムに書いてる。
#!/usr/bin/env ruby | |
require "nokogiri" | |
require 'pry' | |
require 'htmlentities' | |
# opens every file in the given dir tree and converts any html img tags to rails image_tag calls | |
# | |
# example usage: | |
# ruby convert.rb ~/my_rails_app/app/views | |
# |
みなさまRubyKaigiお疲れ様でしたー。素敵なKaigiに再会できてうれしかったです。 | |
RubyKaigiまわりで、同じ分野の問題提起が二つありましたねぇ。 | |
一つはKaigi中での、「台湾の女の子はKawaii、だからRubyKaigi Taiwanに来るべき」という発言、 | |
それを笑いで迎えた場内に対して、女性への配慮が足りないだろうという意見。 | |
https://gist.github.com/kyanny/5694201 | |
もう一つは、続くRubyHirobaでの、ポルノに関しての情報処理技術についてのLTがあったこと。 | |
(そして、実際にそれを聞いて傷ついた女性が存在し、問題が提起されました) | |
RubyhirobaはRubyKaigiとは独立した、せっかく東京にRubyistがたくさん居るんだから交流しよう!という、 | |
LTとWorkshopと交流の場を提供するイベントです。 |
<?xml version="1.0" encoding="UTF-8"?> | |
<schema name="sunspot" version="1.0"> | |
<types> | |
<!-- Scalar field types --> | |
<fieldType name="boolean" class="solr.BoolField" omitNorms="true"/> | |
<fieldType name="date" class="solr.DateField" omitNorms="true"/> | |
<fieldType name="rand" class="solr.RandomSortField" omitNorms="true"/> | |
<fieldType name="sdouble" class="solr.SortableDoubleField" omitNorms="true"/> |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Pod::Usage; | |
use Text::Markdown 'markdown'; | |
use HTML::TreeBuilder; | |
use List::Util 'max'; | |
use Encode; |
desc "Shrink the js" | |
task :minimize_js, :roles => :app, :except => { :no_release => true } do | |
require 'lib/js_minimizer' | |
paths = [] | |
paths += Dir['public/javascripts/jquery.*.js'].sort | |
paths += Dir['public/javascripts/github.*.js'].sort | |
paths = paths.flatten | |
put JSMinimizer.minimize_files(*paths), "#{release_path}/public/javascripts/bundle.js" | |
end |
<!-- Add these tags to the HEAD section of your page. --> | |
<link href="http://coderwall.com/stylesheets/jquery.coderwall.css" media="all" rel="stylesheet" type="text/css"> | |
<script src="http://coderwall.com/javascripts/jquery.coderwall.js"></script> | |
<!-- You also need to place a container where you'd like the Coderwall badges to render. --> | |
<section class="coderwall" data-coderwall-username="(your username)" data-coderwall-orientation="(vertical or horizontal)"></section> |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Pod::Usage; | |
use Text::Markdown 'markdown'; | |
use HTML::TreeBuilder; | |
use List::Util 'max'; |
--- a/mark.c 2009-06-25 02:03:01.000000000 +0900 | |
+++ b/mark.c 2009-06-25 02:03:50.000000000 +0900 | |
@@ -59,6 +59,8 @@ | |
static void MarkRedisplayLine __P((int, int, int, int)); | |
static int MarkRewrite __P((int, int, int, struct mchar *, int)); | |
+void pbcopy(const char *strings); | |
+ | |
extern struct layer *flayer; | |
extern struct display *display, *displays; |