Skip to content

Instantly share code, notes, and snippets.

@ohshige15
ohshige15 / convert_for_iOS_app_icon.py
Last active December 28, 2015 09:59
iOSアプリ開発の際に,一つの画像から一括で各種アイコンサイズにリサイズして,適切なファイル名にリネームしてくれるスクリプト.要Python Image Library
# -*- coding: utf-8 -*-
import os
import Image
from optparse import OptionParser
def prepare_options():
usage = "usage: %prog [options] filename"
@ohshige15
ohshige15 / hatenablog.css
Created September 25, 2013 06:50
はてなブログの自分用のCSS(今は使ってないけど保存用に)
h3 {
border-left:10px solid #339999;
border-bottom:1px dashed #339999;
padding:8px 0 8px 10px;
}
h4 {
border-left:10px solid #339999;
padding:8px 0 8px 10px;
}
@ohshige15
ohshige15 / bing_api.py
Last active December 31, 2019 09:03
Bing Search API のラッパー
# -*- coding: utf-8 -*-
import urllib
import requests
import json
class Bing(object):
# コンストラクタ(初期化)