- 向上させたい対象は「文書」の「文章」両方を意味してる。
- 実際に文章を書く。繰り返し推敲する。
- なんの文章を?
- レビューしてもらう。
- 誰に?どうやって?
tail -n 0 -f hoge.txt | xargs -I{} echo |
# coding: utf-8 | |
from __future__ import unicode_literals, print_function | |
def partial_contains(text1, text2): | |
index = 0 | |
for char in text2: | |
index = text1.find(char, index) | |
if index < 0: | |
return False |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ポニーの居る位置をマウスで選択</title> | |
<script src="http://code.jquery.com/jquery-latest.js"></script> | |
<script> | |
jQuery.noConflict(); | |
jQuery(function ($) { | |
var targetImg = $('#img'); | |
var borderBox = $('div.x'); |
# coding: utf8 | |
from __future__ import division, print_function, unicode_literals | |
import json | |
import mimetypes | |
import os | |
import requests | |
根掘り葉掘り | |
踏んだり蹴ったり | |
願ったり叶ったり | |
痛し痒し | |
行ったり来たり | |
伸るか反るか |
# coding: utf8 | |
from __future__ import division, print_function, unicode_literals | |
from collections import namedtuple | |
class Point(namedtuple('Point', ('x', 'y'))): | |
__slots__ = () | |
class Rect(namedtuple('Rect', ('x', 'y', 'w', 'h'))): |
# coding: utf8 | |
from __future__ import division, print_function, unicode_literals | |
from functools import total_ordering | |
from collections import namedtuple | |
import copy | |
@total_ordering | |
class Way(namedtuple('Way', ('time', 'transporter'))): | |
''' |
#!/bin/sh | |
exec convert "$1" -alpha copy -channel alpha -negate +channel -fx '#FFF' "$2" |