Skip to content

Instantly share code, notes, and snippets.

@koseki
koseki / too-many-markers.md
Last active June 8, 2021 05:35
Google Maps に大量のマーカを表示する

Google Maps に大量のマーカを表示する - Too Many Markers!

のメモです。

Introduction

Some applications are required to display a large number of locations or markers. Despite the v3 JavaScript API's significant improvement to performance, naively plotting thousands of markers on a map can quickly lead to a degraded user experience. Too many markers on the map cause both visual overload and sluggish interaction with the map.

@koseki
koseki / vbox-ch10-1.md
Last active September 14, 2021 01:18
VirtualBox はどこにファイルを保存するか

VirtualBox マニュアルメモ - 10.1. VirutalBox はどこにファイルを保存するか

10.1. Where VirtualBox stores its files

In VirtualBox, a virtual machine and its settings are described in a virtual machine settings file in XML format.

VM の設定は XML 形式で書いてある。

@koseki
koseki / README.md
Last active August 29, 2015 14:12
vagrant-layout: Django

Vagrant Layout - Django

This is configuration of vagrant-layout plugin. Based on python layout.

Installation

$ vagrant plugin install vagrant-layout
$ mkdir my-project && cd my-project
@koseki
koseki / YAML.md
Last active August 29, 2015 14:12
Ruby や Python でパースできない YAML 表現について
@koseki
koseki / README.md
Last active February 27, 2018 11:52
Windows VirtualBox Text File Busy

"Text file busy" error on Windows VirtualBox

While you opening a file in shared folder on Guest OS, you can't move or delete the file.

> vagrant up
> vagrant ssh
$ cd /vagrant
$ ./test.sh &
[1] 2656
@koseki
koseki / .vagrant-layout
Last active August 29, 2015 14:11
test
base: https://github.com/koseki/vagrant-layout/tree/b7817b32a409ca6a0e0aa021800ababd729d3daf
@koseki
koseki / README.md
Last active August 29, 2015 14:11
vagrant-layout: Ruby on Rails

Vagrant Layout - Ruby on Rails

This is configuration of vagrant-layout plugin. Based on ruby layout.

Installation

$ vagrant plugin install vagrant-layout
$ mkdir my-project && cd my-project
@koseki
koseki / README.md
Last active August 29, 2015 14:10
vagrant-layout: Laravel

Vagrant Layout - Laravel

This is configuration of vagrant-layout plugin. Based on php layout.

Installation

$ vagrant plugin install vagrant-layout
$ mkdir my-project && cd my-project
@koseki
koseki / 1
Last active August 29, 2015 14:10
1
@koseki
koseki / test.py
Last active December 31, 2015 00:59
Old sqlite problem on OSX
# coding=utf-8
import sqlite3
con = sqlite3.connect("test.db")
sql_init = """
CREATE TABLE items (
id integer,
name text