Skip to content

Instantly share code, notes, and snippets.

@tatsuru
tatsuru / gist:3296314
Created August 8, 2012 16:18 — forked from onishi/gist:1630307
Media queries for Hatena Group
@media screen and (max-device-width: 480px) {
* {
font-size: 48px;
line-height: 64px;
word-break: break-all;
}
table#banner, div#simple-header, div.sidebar, div.caption {
display:none
}
img.hatena-star-comment-button, img.hatena-star-add-button, img.hatena-star-star {
@tatsuru
tatsuru / awsevent2gcal
Last active May 25, 2018 04:12 — forked from i2tsuki/awsevent2gcal
AWS のイベントを calendar に登録するくん
#!/bin/sh
set -eux
PROFILE="default"
RESP="$(aws --profile ${PROFILE} --region "us-east-1" health describe-events --query 'events[?eventTypeCategory==`scheduledChange` && statusCode == `upcoming`]')"
LENGTH="$(echo ${RESP} | jq 'length')"
for i in $(seq 0 $(($LENGTH-1)))