Skip to content

Instantly share code, notes, and snippets.

View kuninori's full-sized avatar

Kuninori Fujii kuninori

  • Japan
View GitHub Profile
@kuninori
kuninori / reverseproxy.go
Last active August 29, 2015 14:13
Reverse Proxy Server
package main
import (
"fmt"
"net/http/httputil"
"net/url"
"net/http"
)
func main() {
@kuninori
kuninori / dockerclient.go
Last active August 29, 2015 14:12
Access to Docker API on boot2docker using dockerclient
package main
import (
"github.com/samalba/dockerclient"
"fmt"
"crypto/tls"
"crypto/x509"
"io/ioutil"
)
@kuninori
kuninori / videoViewController.h
Last active May 7, 2017 04:58
AVFoundation Video
//
// DetailViewController.h
// Sync Camera
//
// Created by kuninorif on 2014/05/22.
// Copyright (c) 2014年 kuninori. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>