Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Polygon Button Example</title>
<style>
#polygonBtn .polygonBtn {
position: relative;
background: #4169E1;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* Base styles */
body {
margin: 0;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Line Chart - example 2</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.3/dist/Chart.min.js"></script>
</head>
<body>
<div style="width:600px;">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vue - chart.js example</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" />
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/npm/@mdi/font@3.x/css/materialdesignicons.min.css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Material+Icons" />
@sundlee
sundlee / README.md
Last active March 5, 2016 02:52
김치찌개 맛집 TOP 20
@sundlee
sundlee / index.html
Last active January 3, 2016 05:25
Simple D3JS Dashboard
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Simple Dashboard</title>
<script src="http://d3js.org/d3.v2.js"></script>
<style type="text/css">
#pieChart {
position:absolute;
top: 10px;
@sundlee
sundlee / README.md
Last active January 3, 2016 01:31
DashBoard

A simple example of creating a dashboard. This example was created for the paper Interactive HTML Reporting Using D3 at the MWSUG2014 conference.

Hovering over a bar in histogram will modify the pie chart and legend. Hovering over pie slice will update the histogram.

This is from http://bl.ocks.org/NPashaP/96447623ef4d342ee09b

@sundlee
sundlee / README.md
Last active March 1, 2016 13:58
D3로 우리나라 인구밀도 시각화하기
@sundlee
sundlee / README.md
Last active January 2, 2016 12:16
Bar Chart III
import requests
import json
import xml.etree.ElementTree as et
import pandas as pd
from IPython.display import display
res_weather = requests.get('http://www.kma.go.kr/wid/queryDFSRSS.jsp?zone=1159068000')
#res_weather.content
weather = et.fromstring(res_weather.content)
df_weathers = []