- ア02 二松学舎大学文藝愛好会,二松維新「都市」,¥200.
- ア06 水天宮前,水天, vol. 3,¥300.
- ア19 京都ジャンクション,京都ジャンクション 第九作品集,¥300.
- イ10 マゾヒスティック・リリィ・ワークス,ラフレシア・アルノルディ——ダメ百合短編集,¥400.
- イ13 朝顔日誌,HOLE,¥100.
- イ25 トリアトリエ,オッチャリ,¥400.
- ウ30 薄禍企画,mint,vol. 01,¥500.
- エ23 カモガワSFシリーズKコレクション,稀刊 奇想マガジン 創刊号——奇想コレクション綜解説,¥400.
- エ31 あの日熱めの熱燗で,多重要素, 3.5号,¥100.
- エ34 グローバルエリート,SFアンソロジー WORKセリエント(GE1),¥1500.
ソフト温情主義:知ってて自発的にやってる場合には介入しない。
-- G. Dworkin, http://plato.stanford.edu/entries/paternalism/
狭い温情主義:政府の介入だけを問題にする
This file contains hidden or 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
def destroy_circled(text, suffix = '. ') | |
text | |
.gsub('①', '1' + suffix) | |
.gsub('②', '2' + suffix) | |
.gsub('③', '3' + suffix) | |
.gsub('④', '4' + suffix) | |
.gsub('⑤', '5' + suffix) | |
.gsub('⑥', '6' + suffix) | |
.gsub('⑦', '7' + suffix) | |
.gsub('⑧', '8' + suffix) |
This file contains hidden or 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
/* | |
* Copyright (C) 2011 Micah Hainline | |
* Copyright (C) 2012 Triposo | |
* Copyright (C) 2013 Paul Imhoff | |
* Copyright (C) 2014 Shahin Yousefi | |
* Copyright (C) 2015 Stepan Goncharov | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at |
This file contains hidden or 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
echo "hoge" | echo $(cat -) `echo *$(cat -)*` fuga | |
# => hoge test.sh fuga | |
# not => hoge *hoge* fuga |
This file contains hidden or 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
git_open_origin() { | |
(set -eu -o pipefail; \ | |
commit_hash=${1:-""}; \ | |
blob_where=${2:-""}; | |
if [ -n "${commit_hash}" ]; then \ | |
if [ -n "${blob_where}" ]; then \ | |
commit_hash="/blob/${commit_hash}/${blob_where}"; \ | |
else \ | |
commit_hash="/commits/${commit_hash}"; \ | |
fi; \ |
This file contains hidden or 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
public class FontFitViewHolder extends RecyclerView.ViewHolder { | |
private final FontFitViewHolder self = this; | |
private Handler mHandler; | |
public BandCheckViewHolder(View v, int height) { | |
super(v); | |
mCardView = (CardView)itemView; | |
mTextView = (MultiLineEllipsizeTextView) v.findViewById(R.id.viewholder_fontfit_card); | |
} |
This file contains hidden or 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
# coding: utf-8 | |
open_paren = Regexp.quote(ARGV[0][0]) | |
close_paren = Regexp.quote(ARGV[0][1]) | |
open(ARGV[1]).read.lines | |
.select {|x| x.include?(ARGV[0][0]) && x.include?(ARGV[0][1])} | |
.map{|x| | |
x | |
.gsub(/^(.*?)#{open_paren}/, "#{open_paren}") | |
.gsub(/#{close_paren}[^#{open_paren}]*$/, "#{close_paren}") |
This file contains hidden or 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
import java.util.AbstractMap; | |
import java.util.HashMap; | |
import java.util.List; | |
import rx.Observable; | |
import rx.functions.Func1; | |
import rx.functions.Func2; | |
import rx.observables.GroupedObservable; |
This file contains hidden or 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
static final String AUTH_TOKEN_TYPE; | |
static { | |
StringBuilder sb = new StringBuilder(); | |
sb.append("oauth2:"); | |
for (String scope : AUTH_SCOPES) { | |
sb.append(scope); | |
sb.append(" "); | |
} |