Skip to content

Instantly share code, notes, and snippets.

View mogeta's full-sized avatar

hiroshi mimori mogeta

View GitHub Profile
@mogeta
mogeta / command.md
Created August 26, 2016 02:35
awscliで躓いたところ。
aws kms encrypt --key-id your-key-id --plaintext "https://foo.bar.com/"
Error parsing parameter '--plaintext': Unable to retrieve https://foo.bar.com/: received non 200 status code of 400
npm i -g yo
npm i -g generator-fountain-webapp
mkdir my-new-project && cd my-new-project
yo fountain-webapp --framework=angular2 --modules=webpack --js=typescript --css=stylus
@mogeta
mogeta / main.js
Created July 28, 2016 02:00
gas + trello + slackのイメージ
let trello = new Trello(trello_key, trello_access_token);
//get each cards
let boards = trello.getLists(boardID);
var talk = "現在のプロジェクトステータスです\n";
var storyPoints = [new Date()];
boards.forEach(function (board) {
var cards = trello.getCards(board.id);
var points = trello.mergeStoryPoint(cards);

Firebase database

Firebaseのリアルタイムデータベースの動作確認など。

導入

メモ

@mogeta
mogeta / Gomobile.md
Last active June 15, 2016 07:13
gomobile

gomobile bindによるライブラリ作成おさらい。

  • go getでgomobile取り込み
  • gomobile intiでNDKなどの取得
  • gomobile bind でframeworkやaarファイルを作成。
  • Android,iOS各プロジェクトに投入。動作確認
go get golang.org/x/mobile/cmd/gomobile
gomobile init
@mogeta
mogeta / readme.md
Last active August 29, 2015 14:24
WebStorm の CheatSheet

WebStorm の CheatSheet

  • shift 2回で search everywhere

  • actionやcodeネームを検索して実行出来る

  • command + shift + A

  • Go fmt

  • command + alt + shift + F

@mogeta
mogeta / doc.md
Last active August 29, 2015 14:21
第4回 Go弱の会 資料

第四回Go弱

お前は誰だ?

  • @mogetta
  • ゲーム業界でしがなく働く何でも屋さん http://www.obokaidem.com/jp/
  • 最近は
    • スクラムおじさん
    • Apple watchのためにswift
  • AWSちょtこっとみたり
@mogeta
mogeta / gxui_log.md
Last active August 29, 2015 14:17
gxuiインストール

gxuiのインストールを試して見てる

go get github.com/google/gxui
cd  /Users/hogehoge/go/src/github.com/google/gxui/samples
In file included from ../../../../go-gl-legacy/gl/attriblocation.go:7:
./gl.h:2:10: fatal error: 'GL/glew.h' file not found
#include <GL/glew.h>

というエラーがでます。.hファイルねーぞ!ということで

#gcpでのメモ
#login
gcloud compute --project "project_name" ssh --zone "zone_name" "name"
#run
docker run -p 80:8080 -v /home/muzigen_gmail_com/jenkins:/var/jenkins_home jenkins