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
| { | |
| "errors": false, | |
| "post": { | |
| "id": null, | |
| "two": "<p><a class=\"tumblr_blog\" href=\"http:\/\/gatinhamel.tumblr.com\/post\/41469586332\">gatinhamel<\/a>:<\/p>\n<blockquote>\n<p>(via\u00a0<a href=\"http:\/\/pinterest.com\/pin\/137993176052938152\/\"><\/a><a href=\"http:\/\/pinterest.com\/pin\/137993176052938152\/\"><\/a><a href=\"http:\/\/pinterest.com\/pin\/137993176052938152\/\">http:\/\/pinterest.com\/pin\/137993176052938152\/<\/a>)<\/p>\n<\/blockquote>\n\n<p><\/p>", | |
| "three": "http:\/\/pinterest.com\/pin\/137993176052938152\/", | |
| "state": 0, | |
| "publish_on": false, | |
| "type": "photo", | |
| "format": 0, |
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 Notification Full Image | |
| // @match http://www.tumblr.com/dashboard | |
| // @match http://www.tumblr.com/blog/* | |
| // @version 1.0.0 | |
| // @description ユーザスクリプトの概要を記入してください | |
| // | |
| // @author poochin | |
| // @license MIT | |
| // @updated 1970-01-01 |
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 Tumblr Tornado Greasemonkey | |
| // @namespace https://github.com/poochin | |
| // @version 1.1.15 | |
| // @description Tumblr にショートカットを追加するユーザスクリプト | |
| // @include http://www.tumblr.com/dashboard | |
| // @include http://www.tumblr.com/dashboard/* | |
| // @include http://www.tumblr.com/likes | |
| // @include http://www.tumblr.com/likes/* | |
| // @include http://www.tumblr.com/blog/* |
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 Notes Filter | |
| // @match http://www.tumblr.com/dashboard* | |
| // @version 1.0.1 | |
| // @description Dashboard フィルター(Notes Filter) | |
| // | |
| // @author poochin | |
| // @license MIT | |
| // @updated 2012-12-09 | |
| // @updateURL https://github.com/poochin/tumblrscript/ |
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
| // AutoPagerize | |
| // loading next page and inserting into current page. | |
| // http://autopagerize.net/ | |
| // | |
| // It doesn't work in Greasemonkey any longer. | |
| // | |
| // this script based on | |
| // GoogleAutoPager(http://la.ma.la/blog/diary_200506231749.htm) and | |
| // estseek autopager(http://la.ma.la/blog/diary_200601100209.htm). |
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
| javascript: void function() { | |
| var post_id; | |
| post_id = parseInt(prompt('input post id to fall in.')); | |
| new PeriodicalExecuter(function FallInDashboard(pe) { | |
| var posts = $$('#posts > li.post:not(.new_post)'); | |
| exit: { | |
| if (isNaN(post_id)) { | |
| if ($$('.is_mine:not(.new_post)').length) { |
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
| $ ffmpeg -r 10 -f x11grab -s 1024x768 -i :0.0 -f alsa -i default -acodec libmp3lame -vcodec libx264 -vpre fast -b 220k -ar 22050 -ab 48k -threads 2 -s 640x480 -vsync 2 -y -f flv "(RTMP)/(KEY) flashver=FME/3.0\20(compatible;\20FMSc/1.0)" |
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
| // AutoPagerize | |
| // loading next page and inserting into current page. | |
| // http://autopagerize.net/ | |
| // | |
| // It doesn't work in Greasemonkey any longer. | |
| // | |
| // this script based on | |
| // GoogleAutoPager(http://la.ma.la/blog/diary_200506231749.htm) and | |
| // estseek autopager(http://la.ma.la/blog/diary_200601100209.htm). |
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
| *** _autopagerize.user.js 2012-08-31 22:37:04.823104821 +0900 | |
| --- autopagerize.user.js 2012-08-31 23:16:49.413881873 +0900 | |
| *************** | |
| *** 52,57 **** | |
| --- 52,60 ---- | |
| this.pageNum = 1 | |
| this.info = info | |
| this.state = settings.disable ? 'disable' : 'enable' | |
| + this.loading = false | |
| + this.prefetch = null |
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 Dashboard Loadian | |
| // @match http://www.tumblr.com/dashboard* | |
| // @version 1.0.1 | |
| // @description ダッシュボードの読み込み位置を前倒しします | |
| // | |
| // @author poochin | |
| // @license MIT | |
| // @updated 2012-06-15 | |
| // @updateURL https://gist.github.com/2931134 |