Skip to content

Instantly share code, notes, and snippets.

View redgoose-dev's full-sized avatar
🪶
Chaos

redgoose.eth redgoose-dev

🪶
Chaos
View GitHub Profile
@redgoose-dev
redgoose-dev / convert-svg-to-vue.py
Last active December 18, 2019 11:25
Small projects on python
import os
import sys
import json
'''
Convert icon svg to vue
svg 파일을 vue 파일로 바꿔주는 스크립트입니다.
변환작업이 좀 많은편이라서 파이썬으로 스크립트를 작성하게 되었습니다.
@redgoose-dev
redgoose-dev / playground.html
Last active September 10, 2020 13:15
Text Shuffle
<p class="target">text message example</p>
<button type="button" id="play">play</button>
@redgoose-dev
redgoose-dev / content-editable.vue
Last active February 18, 2021 09:59
contenteditable with vue2
<template>
<component
:is="tag"
:contenteditable="true"
@input="update"
@blur="update"
@paste="paste"/>
</template>
<script>