Skip to content

Instantly share code, notes, and snippets.

View IngIeoAndSpare's full-sized avatar
✈️
여행가고싶다

WI-Hyun-joong IngIeoAndSpare

✈️
여행가고싶다
  • korea
View GitHub Profile
@IngIeoAndSpare
IngIeoAndSpare / pngtosvg.py
Last active March 5, 2020 07:23
Batch Convert PNG to SVG (python 3.x)
import os
import base64
def main():
startSvgTag = """<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
@IngIeoAndSpare
IngIeoAndSpare / iris.csv
Created September 24, 2019 01:59 — forked from netj/iris.csv
sepal.length sepal.width petal.length petal.width variety
5.1 3.5 1.4 .2 Setosa
4.9 3 1.4 .2 Setosa
4.7 3.2 1.3 .2 Setosa
4.6 3.1 1.5 .2 Setosa
5 3.6 1.4 .2 Setosa
5.4 3.9 1.7 .4 Setosa
4.6 3.4 1.4 .3 Setosa
5 3.4 1.5 .2 Setosa
4.4 2.9 1.4 .2 Setosa