Skip to content

Instantly share code, notes, and snippets.

View J2P's full-sized avatar
🦀
🦕

JaePil Jung J2P

🦀
🦕
View GitHub Profile
@J2P
J2P / keybase.md
Created December 24, 2017 09:59
keybase.md

Keybase proof

I hereby claim:

  • I am j2p on github.
  • I am j2p (https://keybase.io/j2p) on keybase.
  • I have a public key ASArXPtuXt4LQO3NpIyaRCf-QHLv4TD36R5cBXuqDW_bWQo

To claim this, I am signing this object:

@J2P
J2P / custom.css
Last active March 31, 2016 22:08 — forked from nacyot/custom.css
div#notebook{
background-color: white;
}
#notebook-container{
width: 99%;
}
div.code_cell{
flex-direction: row;
@J2P
J2P / index.html
Last active October 30, 2015 02:38
Inbox Sun
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script>
var width = 960;
var height = 960;
var body = d3.select('body');
var svg = body.append('svg')
.attr('width', width)
@J2P
J2P / index.html
Last active October 20, 2015 09:01
Basic Example
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script>
var body = d3.select('body');
var svg = body.append('svg')
.attr('width', 960)
.attr('height', 500)
@J2P
J2P / index.html
Last active October 20, 2015 09:02
Rectangle Example
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<svg width="960" height="640">
<rect x="0" y="0" width="100" height="100" fill="green" />
</svg>
</body>