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
| @mixin step-frames($steps, $fromX, $fromY, $toX, $toY){ | |
| $i: 0; | |
| $frame: 0; | |
| @while $frame < 100 { | |
| @if $frame > 0{ | |
| #{$frame - 0.00001}% { | |
| background-position: #{($toX - $fromX) / $steps * ($i - 1)}px #{($toY - $fromY) / $steps * ($i - 1)}px; | |
| } | |
| } |
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 WP Remove Accesskeys | |
| // @namespace senta.me | |
| // @description WordPressのアクセスキーを削除する。 | |
| // @include http://*/wp-admin/post.php* | |
| // @include http://*/wp-admin/post-new.php* | |
| // ==/UserScript== | |
| (function(){ | |
| window.addEventListener("load",function(){ | |
| var els = document.getElementsByTagName("input"); |
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 | |
| ## fork from http://qiita.com/uasi/items/a340bb487ec07caac799 | |
| if [ -z "`git config --local user.name`" ]; then | |
| echo "fatal: user.name is not set locally" | |
| exit 1 | |
| fi | |
| if [ -z "`git config --local user.email`" ]; then | |
| echo "fatal: user.email is not set locally" | |
| exit 1 |
NewerOlder