Skip to content

Instantly share code, notes, and snippets.

@baramutu
baramutu / hatena_responsive_widescreen.css
Last active May 25, 2016 04:24
はてなダイアリーを幅広表示対応にするためのカスタムCSSです。Naked ( http://blog.hatena.ne.jp/-/store/theme/6653812171397406126 ) との組み合わせで実現しています
/* <system section="theme" selected="6653812171397406126"> */
@import url("http://hatenablog.com/theme/6653812171397406126.css");
/* </system> */
@media screen and (min-width:1110px) {
#content-inner, #n-menu .menu-inner, #n-menu .menu-inner {
max-width: 2400px;
}
.entry-header, .entry-content {
@baramutu
baramutu / alfred_amazon_suggest_j.php
Created May 24, 2016 13:00
AlfredのAmazon Suggest Workflowのスクリプトフィルタを編集して、日本語が表示され、ゴミが表示されないように改変したものです
require('workflows.php');
$w = new Workflows();
// Grab input and build query url string
$in = "{query}";
$url = "http://completion.amazon.co.jp/search/complete?method=completion&q=".urlencode( $in )."&search-alias=aps&mkt=6&x=updateISSCompletion&noCacheIE=1295031912518";
// Grab the data from Amazon
$str = $w->request( $url );
@baramutu
baramutu / alfred_google_suggest_j.php
Created May 24, 2016 12:59
AlfredのGoogle Suggest Workflowのスクリプトフィルタを編集して、日本語の候補がより多く表示されるように改変したものです
require_once('workflows.php');
$wf = new Workflows();
$orig = "{query}";
$xml = $wf->request( "http://google.co.jp/complete/search?hl=ja&ie=utf_8&oe=utf_8&output=toolbar&q=".urlencode( $orig ) );
$xml = simplexml_load_string( $xml );
$int = 1;
foreach( $xml as $sugg ):
$data = $sugg->suggestion->attributes()->data;