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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta content="width=device-width" name="viewport"> | |
<title>dskd</title> | |
<link href="http://dskd.jp/" rel="canonical"> | |
<link href="apple-touch-icon.png" rel="apple-touch-icon-precomposed"> |
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
<!-- start --> | |
<section> | |
<header> | |
<h1 class="jser-sitelink">strict mode - motivation and semantics - Constellation Scorpius</h1> | |
<p><a title="strict mode - motivation and semantics - Constellation Scorpius" href="http://utatane-constellation.tumblr.com/post/3711268645" target="_blank">http://utatane-constellation.tumblr.com/post/3711268645</a></p> | |
</header> | |
<p>strict modeの概念とは何か<br/> static解析につながる話</p> | |
</section> | |
<!-- end --> |
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
#!/bin/sh | |
GIT='git' | |
FETCH_URL=`$GIT remote show origin -n | sed -n '/Fetch URL/p' | awk '{print $3}' | sed -E 's/[:@]/ /g' ` | |
HOST=`echo $FETCH_URL | awk '{print $2}' ` | |
REPOS=`echo $FETCH_URL | awk '{print $3}' | sed 's/.git$//'` | |
ORIGIN="http://$HOST/" | |
BRANCH=`$GIT branch | grep -F '*' | sed 's/^* //'` | |
echo $REPOS | 'egrep' -q '^gist/' |
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
*hatena_format.jax* はてな記法 | |
============================================================================== | |
入力支援記法 *hatena_format_input_support* | |
------------------------------------------------------------------------------ | |
見出し記法 *hatena_format_heading* | |
> |
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
// ==UserScript== | |
// @name 縦書き | |
// @namespace http://lowreal.net/ | |
// @include http://www.aozora.gr.jp/cards/*/files/*.html | |
// ==/UserScript== | |
// | |
var styles = document.styleSheets; | |
for (var i = 0, it; it = styles[i]; i++) { | |
it.disabled = true; |