View NSResponder+ReederExtension.m
This file contains 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
// | |
// NSResponder+ReederExtension.m | |
// Extention for Reeder 1.1.5 | |
// | |
// Created by azur256 on 03/26/11. | |
// Copyright 2012 azur256. All rights reserved. | |
// Special thanks to moyashi (@hitoriblog), Kazuya Takeshima (@mitukiii) | |
// | |
#import "NSResponder+ReederExtension.h" |
View getTweet.pl
This file contains 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
#!/usr/bin/perl | |
# Search tweets for sharing and output formatting contents. | |
# Created by azur256 on 03/20/12 | |
# Copyright 2012 @azur256. All rights reserved. | |
use strict; | |
use warnings; | |
use utf8; |
View gist:2281273
This file contains 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
.gist .gist-file .gist-meta { | |
font-size: 70% ! important; | |
} | |
.gist .gist-file .gist-data { | |
font-size: 75% ! important; | |
} |
View gist:2412195
This file contains 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
<b:widget id='HTML7' locked='false' mobile='yes' title='' type='HTML'> | |
<b:includable id='main'> | |
<!-- only display title if it's non-empty --> | |
<b:if cond='data:title != ""'> | |
<h2 class='title'><data:title/></h2> | |
</b:if> | |
<div class='widget-content'> | |
<b:if cond='data:blog.pageType == "item"'> | |
<data:content/> | |
</b:if> |
View gist:2631650
This file contains 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
#!/usr/bin/perl | |
# getInstagramLink.pl | |
# | |
# | |
# Created by azur256 on 12/04/11. | |
# Copyright (c) 2012 azur256. All rights reserved. | |
use strict; | |
use warnings; |
View gist:2724881
This file contains 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
<div class='item-counter'> | |
<a expr:href='"http://tweetbuzz.jp/redirect?url=" + data:post.href'> | |
<img expr:src='"http://tools.tweetbuzz.jp/imgcount?url=" + data:post.href'/> | |
</a> | |
<a expr:href='"http://b.hatena.ne.jp/entry/" + data:post.href'> | |
<img expr:src='"http://b.hatena.ne.jp/entry/image/" + data:post.href'/> | |
</a> | |
</div> |
View ReplaceMore.scpt
This file contains 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
tell application "MarsEdit" | |
try | |
set currentWindow to document 1 | |
on error errorMessage | |
display dialog ("Error: window are not opened.") buttons {"OK"} default button "OK" with icon caution | |
return | |
end try | |
set currentTextView to current text of currentWindow |
View MakeRelationEntries.scpt
This file contains 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
on run | |
tell application "Safari" | |
if (count of document) is greater than 0 then | |
tell window 1 | |
set site_titles to {} | |
set site_records to {} | |
set loop_count to 1 | |
View SearchMyBlog.scpt
This file contains 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
on displayErrorMessage(s) | |
display dialog (s) buttons {"OK"} default button "OK" with icon caution | |
end displayErrorMessage | |
tell application "MarsEdit" | |
try | |
set currentWindow to document 1 | |
on error errorMessage | |
displayErrorMessage("Can’t run a Google search because no posts windows are open. This script searches using the selected text of the frontmost window.") of me |
OlderNewer