Skip to content

Instantly share code, notes, and snippets.

@heedaelee
heedaelee / I'm an early 🐤
Last active August 30, 2022 02:01
forWidgetShowingCommittingTime
🌞 Morning 63 commits ███▏░░░░░░░░░░░░░░░░░ 15.1%
🌆 Daytime 174 commits ████████▊░░░░░░░░░░░░ 41.8%
🌃 Evening 151 commits ███████▌░░░░░░░░░░░░░ 36.3%
🌙 Night 28 commits █▍░░░░░░░░░░░░░░░░░░░ 6.7%
@heedaelee
heedaelee / keras
Last active February 20, 2020 03:49
케라스
{
"cells": [
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"scrolled": true
},
"outputs": [
{
@heedaelee
heedaelee / colorTempToRGB.js
Created January 19, 2020 09:20 — forked from paulkaplan/colorTempToRGB.js
Color Temperature to RGB
// From http://www.tannerhelland.com/4435/convert-temperature-rgb-algorithm-code/
// Start with a temperature, in Kelvin, somewhere between 1000 and 40000. (Other values may work,
// but I can't make any promises about the quality of the algorithm's estimates above 40000 K.)
function colorTemperatureToRGB(kelvin){
var temp = kelvin / 100;