Skip to content

Instantly share code, notes, and snippets.

View rabelais88's full-sized avatar
🧊
diving in 3d

Park Sungryeol rabelais88

🧊
diving in 3d
View GitHub Profile
@rabelais88
rabelais88 / seaborn-init-korean.py
Created October 4, 2020 04:16
seaborn ν•œκ΅­μ–΄ 폰트 μ„€μ •+ν…Œλ§ˆ μˆ˜μ •
import pandas as pd
import numpy as np
import seaborn as sns
from matplotlib import pyplot as plt
import matplotlib as mpl
%matplotlib inline
pd.options.display.max_columns = 100
# font check
@rabelais88
rabelais88 / understanding-webpack.md
Created January 29, 2021 10:21
μ›ΉνŒ© μ΄ν•΄ν•˜κΈ°

λ²ˆλ“€λŸ¬ μ΄ν•΄ν•˜κΈ°

by λ°•μ„±λ ¬

μ›Ήμƒμ—μ„œμ˜ λͺ¨λ“ˆμ΄λž€?

μžλ°”μŠ€ν¬λ¦½νŠΈλŠ” 1995λ…„λŠ” 처음 λ“±μž₯ν•œ 이래둜 μ•„μ£Ό κ°„λ‹¨ν•œ ν˜•νƒœλ‘œλ§Œ μœ μ§€λ˜μ—ˆμŠ΅λ‹ˆλ‹€. 톡신 λŒ€μ—­ν­λ„ 크지 μ•Šμ•˜κ³ , 웹은 μΈν„°λž™μ…˜μ΄ 거의 μ—†λŠ” ν•˜μ΄νΌλ§ν¬ μœ„μ£Όμ˜ λ‹¨μˆœν•œ ν…μŠ€νŠΈμ˜€μŠ΅λ‹ˆλ‹€.

@rabelais88
rabelais88 / reactThreeFiber-declarativeVertices.tsx
Created July 8, 2021 13:36
declarative vertices in React-three-fiber
const Line = () => {
const vertices = useMemo(() => {
let p = [
[0, 0, 0],
[0, 1, 1],
[0, 1, -1]
];
const flatArr = p.reduce((ac, cv) => [...cv, ...ac], []);
return new Float32Array(flatArr);
}, []);