Skip to content

Instantly share code, notes, and snippets.

View futoase's full-sized avatar
🐱
Focusing

Keiji Matsuzaki futoase

🐱
Focusing
  • Japan
View GitHub Profile
@futoase
futoase / .tmux.conf
Created January 15, 2016 13:45
tmux powerline setup
set-option -g status on
set-option -g status-interval 2
set-option -g status-utf8 on
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set-option -g status-left "#(~/.tmux/tmux-powerline/powerline.sh left)"
set-option -g status-right "#(~/.tmux/tmux-powerline/powerline.sh right)"
set-option -g default-command "reattach-to-user-namespace -l /usr/local/bin/fish"

Keybase proof

I hereby claim:

  • I am futoase on github.
  • I am futoase (https://keybase.io/futoase) on keybase.
  • I have a public key whose fingerprint is 77E1 6A7A 2746 4405 0603 2388 B39D 681D A765 9E23

To claim this, I am signing this object:

@futoase
futoase / upTimes.js
Created July 17, 2015 15:56
MIT License.
function print(x) {
console.log("x= " + x);
}
function upTimes(n, cb) {
Array.from(new Array(n), (_, k) => {
cb(k);
});
}
@futoase
futoase / gist:18444f8f1a70535d5861
Created December 31, 2014 16:23
FPGA 2015.02 ハンズオン (仮)

お題目

FPGA 2015.02 ハンズオン (仮)

開催場所

freee株式会社

開催日時

@futoase
futoase / gist:34fa11386269598e1a71
Created September 26, 2014 08:32
なぜなのだろうか

jenkins-cli.jarでpluginのID名で指定するとインストールができない。

plugin ID を指定しただけ

jenkins-cli.jarに渡している引数は以下のとおり。

java -jar /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar
 -s http://localhost:8080 install-plugin hipchat
{
"users": [
{
"id": 100,
"name": "Keiji Matsuzaki",
"age": 32
},
{
"id": 1000,
"name": "Hoge Fuga",
@futoase
futoase / gist:c8c73c62fe8eeff06097
Last active August 29, 2015 14:03
freeeミニ四駆交流会

freeeミニ四駆交流会

場所

日時

  • 2014年9月23日(火) AM 11:00 開始
@futoase
futoase / gist:641f9091e1792d2cd7f7
Created June 24, 2014 06:35
example for crowdmob/goamz
package main
import (
"github.com/crowdmob/goamz/aws"
"github.com/crowdmob/goamz/ec2"
"text/template"
"os"
"fmt"
)
@futoase
futoase / gist:1d00e7cd6d056bb7a635
Created June 24, 2014 03:21
example for crowdmob/goamz
package main
import (
"github.com/crowdmob/goamz/aws"
"github.com/crowdmob/goamz/ec2"
"fmt"
)
func main() {
auth, err := aws.EnvAuth()
git config --global core.editor 'mvim -c "set fenc=utf-8" -f'