Skip to content

Instantly share code, notes, and snippets.

View takuo's full-sized avatar

Takuo Kitame takuo

  • Bandai Namco Studios, Inc.
  • Saitama, Japan
  • 05:50 (UTC +09:00)
View GitHub Profile
@takuo
takuo / AndroidManifest.xml
Created March 6, 2012 10:13
共有(Intent.ACTION_SEND)で受け取ったテキストをクリップボードにぶち込むだけのアプリ
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.takuo.android.sharetoclipboard"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="4" />
<application
android:icon="@drawable/ic_launcher"
@takuo
takuo / amazonlink.user.js
Created September 26, 2012 07:28
アマゾンの商品リンクコピペ用
@takuo
takuo / nmagw.rb
Created December 29, 2012 13:49
nma http gateway
# -*- coding: utf-8 -*-
require 'oauth'
require 'json'
require 'sinatra/base'
require 'net/http'
class NmaGw < Sinatra::Base
set :logging, true
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"strconv"
)