- 1 男
- 2 女
- 3 幼
1: はぁ眠いな
2: わかる
#!/bin/sh | |
# brew install jqしておく | |
curl 'http://oniisama.herokuapp.com/api' | jq .url | xargs open |
alert("hoge"); |
package main | |
import ( | |
"fmt" | |
"github.com/atotto/clipboard" | |
"io/ioutil" | |
"math/rand" | |
"net/http" | |
"regexp" | |
"time" |
<?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 |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.7.+' | |
classpath 'com.deploygate:gradle:0.5' | |
} | |
} | |
apply plugin: 'android' |
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 |
worker_processes 1; | |
error_log /dev/stderr debug; | |
events { | |
worker_connections 256; | |
} | |
http { | |
server { |