Skip to content

Instantly share code, notes, and snippets.

View wate's full-sized avatar
🏠
Working from home

wate wate

🏠
Working from home
View GitHub Profile
@wate
wate / _util.scss
Created July 24, 2012 14:34
LessではできなくてSass(SCSS)でできること!
//-----------------------
// Minin
//-----------------------
@mixin spacing($min, $max, $step:5, $unit:px) {
$i : $min;
@while $i <= $max {
//margin left
.ml#{$i} {
margin-left: #{$i}#{$unit}!important;
}
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
@wate
wate / 第3回姫路ゆるいWeb勉強会.md
Created November 2, 2013 22:44
第3回姫路ゆるいWeb勉強会
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "wate/debian-8"
# config.vm.box = " bento/debian-8.4"
@wate
wate / Vagrantfile
Created December 11, 2016 13:08
Vagrant Sakura Providerサンプル
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "dummy"
config.vm.box_url = 'https://github.com/tsahara/vagrant-sakura/raw/master/dummy.box'
config.ssh.username = "ubuntu"
config.vm.provider :sakura do |sakura|
sakura.access_token = "さくらのクラウドAPIにアクセスするためのAPIキー(ACCESS TOKEN)"
provider sakuracloud {
zone = "tk1v"
}
data sakuracloud_archive "debian" {
filter = {
name = "Tags"
values = ["current-stable", "distro-debian"]
}
}
@wate
wate / install_usacloud.yml
Last active April 2, 2017 06:43
[title]install "Unofficial" CLI client for the Sakura Cloud
---
# Usage
# ---------------------------------
#
# ```
# ansible -i 127.0.0.1, install_usacloud.yml -c local
# ```
#
- hosts: all
tasks:
@wate
wate / sample.tf
Last active April 12, 2017 13:54
provider sakuracloud {
zone = "tk1v"
}
/*
* ロードバランサーを利用するか否か
*/
variable use_loadbalanser {
default = false
}
@wate
wate / .gitignore
Last active June 20, 2017 17:29
高火力コンピューティングのセットアップ用?
# Created by https://www.gitignore.io/api/vagrant
### Vagrant ###
.vagrant/
# End of https://www.gitignore.io/api/vagrant
@wate
wate / toJPY.js
Created June 28, 2017 16:11
EC2インスタンス料金月額日本円化(改)
/*
* 元ネタ
*
* EC2インスタンス料金月額日本円化
* http://qiita.com/yuroyoro/items/08cded7662cf494d53f2
*
* YQLを使ってYahoo! Financeから為替レートを取得する
* http://qiita.com/masato/items/6f81bdc89f81a7b6cc3a
*/
$.getJSON("https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.xchange%20where%20pair%20in%20(%22USDJPY%22)&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys", function(yqlResult){