Skip to content

Instantly share code, notes, and snippets.

@azur256
azur256 / gist:2631650
Created May 8, 2012 00:27
Make Blog contents from Instagram posting photos.
#!/usr/bin/perl
# getInstagramLink.pl
#
#
# Created by azur256 on 12/04/11.
# Copyright (c) 2012 azur256. All rights reserved.
use strict;
use warnings;
@azur256
azur256 / gist:2412195
Created April 18, 2012 09:03
Template for blogger
<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 != &quot;&quot;'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<data:content/>
</b:if>
@azur256
azur256 / gist:2281273
Created April 2, 2012 06:43
Changing gist style for embedded
.gist .gist-file .gist-meta {
font-size: 70% ! important;
}
.gist .gist-file .gist-data {
font-size: 75% ! important;
}
@azur256
azur256 / getTweet.pl
Created April 2, 2012 03:13
Perl Script for picking up share tweets from Twitter.
#!/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;
@azur256
azur256 / NSResponder+ReederExtension.m
Created April 1, 2012 11:28
SIMBL Plugin for changing tweet template of Reeder V1.1.5
//
// 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"
@azur256
azur256 / bkm_share
Created March 28, 2012 03:35
Bookmarklet for sharing via Twitter
javascript:var%20d=document,w=window,l=location,e=encodeURIComponent,t=(d.selection)?d.selection.createRange().text:(w.getSelection)?w.getSelection():(d.getSelection)?d.getSelection():'',f='http://twitter.com/home/?status='+e(t)+'+%20%5bSHARE%5d%20'+e(d.title)+'%20☞%20+'+e(l.href);if(!w.open(f,'sharing'))l.href=f;void(0);