Skip to content

Instantly share code, notes, and snippets.

View Hyeong-jin's full-sized avatar

Hyeongjin Yong Hyeong-jin

  • Innerwave Co., Ltd.
  • #405, Star Valley, 60-11, Gasan-dong, Geumcheon-gu, Seoul, 153-777, Korea
View GitHub Profile
@Hyeong-jin
Hyeong-jin / 0_reuse_code.js
Last active August 31, 2015 13:32
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>가속도 예제</title>
<style type="text/css">
#board {
position: relative;
width : 1000px;
@Hyeong-jin
Hyeong-jin / Base64.js
Last active September 21, 2015 06:52
Base64.js
var Base64 = {
simbols: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
encode: function (i) {
i = Base64._utf8_encode(i);
var o = [],
l = 0,
c1, c2, c3,
e1, e2, e3, e4,
idx = 0,
len = i.length;
/*
* L.TileLayer is used for standard xyz-numbered tile layers.
*/
L.Google = L.Class.extend({
includes: L.Mixin.Events,
options: {
minZoom: 0,
maxZoom: 18,
tileSize: 256,