Skip to content

Instantly share code, notes, and snippets.

@ayakix
ayakix / debugHttpRequest.sh
Last active April 11, 2018 06:08
Debug Http Request
while true; do ( echo "HTTP/1.0 200 Ok"; echo; echo "ok" ) | nc -l 8000; [ $? != 0 ] && break; done
@ayakix
ayakix / gist:d69cb6789d4e94be13317376d51fb7f1
Created June 12, 2017 12:37
Running truffle-webpack tutorial
# https://www.youtube.com/watch?v=muWuHIPeXb4
brew tap ethereum/ethereum
brew install ethereum
npm install -g ethereumjs-testrpc
npm install -g truffle
testrpc -b 1
# new tab
@ayakix
ayakix / NSNotificationName+Extension.swift
Last active June 6, 2021 12:58
Define custom NSNotification.Name
// NSNotification.Name拡張
extension NSNotification.Name {
static let sample = Notification.Name(rawValue: "sample")
// static let hoge = Notification.Name(rawValue: "hoge")
// static let fuga = Notification.Name(rawValue: "fuga")
}
/////////////////////////////////////////////////////////////////////////////////////////////
// 通知発行側コード
@ayakix
ayakix / gist:921fc732754ac949dec744ae122303cb
Last active March 3, 2017 06:23
How to define Html2Clr in Run Script
#!/bin/sh
FILE_NAME="theme"
PROJECT_COLOR_FILE="$SRCROOT/$PROJECT_NAME/$FILE_NAME.clr"
USER_COLOR_DIR="$HOME/Library/Colors/"
# Generate color palette file
"./Html2Clr" "./$PROJECT_NAME/$FILE_NAME.txt"
# Copy to User directory color palette
@ayakix
ayakix / tenya
Last active August 29, 2015 14:17
Tenya API Sample
// http://nntenya.appspot.com/search?lat=35.671846&lng=139.768224
{
"status": "success",
"otsumami": true, // おつまみメニューの有無
"dessert": false, // デザートの有無
"hours": "【平日】: 11:00~23:00\n【土曜日】: 11:00~23:00\n【日・祝】: 11:00~23:00\n", // 開店時間
"phone": "03-5565-6903", // 電話番号
"address": "東京都中央区銀座3-9-4 草野ビル", // 住所
"lat": 35.671846, // 緯度
@ayakix
ayakix / IsMisDo100Yen
Last active August 29, 2015 14:16
ミスドが100円セール中かどうかをチェックするAPI
function doGet(e) {
var json = {"isSale": false};
var response;
try {
response = UrlFetchApp.fetch("http://www.misterdonut.jp/sale/index.html");
} catch(err) {
return createOutput(json);
}
var regexp = /(\d+)年(\d+)月(\d+)日.*(\d+)月(\d+)日/;
_map.createAnnotation({
latitude: lat,
longitude: lng,
markerIcon: 'images/hoge.png'
});
@ayakix
ayakix / ResponseTimeChecker.js
Last active December 18, 2015 14:08
自分で管理しているサービスのレスポンスタイムを計測し,設定時間以上に遅い場合には,アラートメールを飛ばすスクリプト http://blog.ayakix.com/2013/06/google-apps-script.html
var BASE_URL = "http://hogefuga.com";
var DEFAULT_LIMIT = 200;
var MAIL_ADDRESS = "[email protected]";
var checkApiMap = {
'/api1' : DEFAULT_LIMIT,
'/api2' : DEFAULT_LIMIT,
'/api3' : 300,
}
function sendMail(overApiMap) {
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import urllib2
try:
import simplejson as json
except ImportError:
import json
@ayakix
ayakix / After.m
Created April 7, 2013 08:49
意識の高さからかコードフォーマッター設定を公開 ref: http://qiita.com/items/3f05da9541b8e130e39f
#import "Test.h"
@interface Test (Private)
- (void)hoge;
@end
@implementation Test {
NSString *str;
int index;
}