Skip to content

Instantly share code, notes, and snippets.

View nagaki's full-sized avatar
🍊

Atsushi Nagaki nagaki

🍊
View GitHub Profile
@nagaki
nagaki / gmaps.js
Created August 24, 2015 02:00
Google Maps JavaScript APIのスタイルカスタム
var map;
window.initMap = function() {
var myLatLng = {
lat: <%= data.corp.latitude.value %>,
lng: <%= data.corp.longitude.value %>
};
var mapOptions = {
@nagaki
nagaki / Vagrantfile
Created May 11, 2017 04:30
vagrant-ubuntu-oracle-xeの共有フォルダ、タイムゾーン設定変更
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"