Skip to content

Instantly share code, notes, and snippets.

View henteko's full-sized avatar
😻
💯💯💯💯💯💯💯💯

henteko henteko

😻
💯💯💯💯💯💯💯💯
View GitHub Profile
@henteko
henteko / hoge.md
Last active August 29, 2015 14:11
ss記法

登場人物一覧

  • 1 男
  • 2 女
  • 3 幼

本編

1: はぁ眠いな

2: わかる

@henteko
henteko / post-commit
Last active August 29, 2015 14:07
commitするとありがたいお言葉を聞けるやつ
#!/bin/sh
# brew install jqしておく
curl 'http://oniisama.herokuapp.com/api' | jq .url | xargs open
alert("hoge");
@henteko
henteko / main.go
Created August 20, 2014 16:28
zoiをコピーするやつ
package main
import (
"fmt"
"github.com/atotto/clipboard"
"io/ioutil"
"math/rand"
"net/http"
"regexp"
"time"
@henteko
henteko / AndroidManifest.xml
Created August 7, 2014 14:09
gradle.properties->build.gradle->AndroidManifest.xml->javaへの値渡し
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.henteko07.sampleandroidproject" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
@henteko
henteko / deploygate#1.md
Last active August 29, 2015 14:01
Bakusoku Iterations Tokyo 1 メモ

Bakusoku Iterations Tokyo 1

DeployGateについて

  • gfxさんの発言がきっかけでこのイベントをやった
  • deploygate勉強会をやりたい!やろう!

deploygateの生い立ち

  • deploygateを作る前
    • mixiの公式アプリを作ってた
  • 一人で開発してて色々めんどくさかった
@henteko
henteko / memo.md
Created May 28, 2014 12:07
app道場#3 メモ

app道場 #3

@yamacraft

4.4からギャラリーアプリの呼び出しに気をつけよう

自己紹介

  • エキサイト株式会社 エンジニア(Android)
  • Dモーニング1周年
    • モーニングの漫画が読めるらしい

本題

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
classpath 'com.deploygate:gradle:0.5'
}
}
apply plugin: 'android'
@henteko
henteko / .travis.yml
Created March 12, 2014 14:02
upload deploygate from travis
language: java
jdk: oraclejdk7
env:
global:
secure: "なんか文字列"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libstdc++6:i386 lib32z1
- export COMPONENTS=build-tools-19.0.1,android-19,sysimg-19,extra
- curl -L https://raw.github.com/embarkmobile/android-sdk-installer/master/android-sdk-installer | bash /dev/stdin --install=$COMPONENTS
@henteko
henteko / nginx.conf
Created January 17, 2014 16:24
ngx_lua + redis
worker_processes 1;
error_log /dev/stderr debug;
events {
worker_connections 256;
}
http {
server {