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 / 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){
@wate
wate / install_grafana.yml
Last active February 18, 2020 14:23
CentOS 7にGrafanaをインストールします
# ネタ元:https://wiki.infra-workshop.tech/%E5%8B%89%E5%BC%B7%E4%BC%9A%E3%83%AD%E3%82%B0/2018/07/03/Zabbix%26Grafana%E3%81%A7%E7%9B%A3%E8%A6%96%E3%82%92%E5%8F%AF%E8%A6%96%E5%8C%96%E3%81%97%E3%81%A6%E3%81%BF%E3%81%9F
- name: install grafana(CentOS 7 Only)
hosts: all
become: yes
vars:
grafana_plugins:
- alexanderzobnin-zabbix-app
tasks:
- name: add yum repository
yum_repository:
@wate
wate / Vagrantfile
Last active October 20, 2018 08:15
Let's Scratch 3.0 GUI
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "histudy/stretch"
config.vm.network "forwarded_port", guest: 8601, host: 8601
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
# Ansibleのインストール
@wate
wate / inventory.yml
Last active March 12, 2019 09:24
インベントリファイルを YAML 形式で書く https://tekunabe.hatenablog.jp/entry/2019/03/10/ansible_inventory_yaml
---
# 元ネタ: https://tekunabe.hatenablog.jp/entry/2019/03/10/ansible_inventory_yaml
all:
hosts:
web01:
ansible_host: 127.16.0.1
router:
children:
junos:
ios: