Skip to content

Instantly share code, notes, and snippets.

@kutu
kutu / index.html
Created March 3, 2021 12:51
eyedropper
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
@kutu
kutu / script.js
Created November 7, 2019 18:15
twitch player cursor hide
// ==UserScript==
// @name twitch player cursor hide
// @version 0.1
// @author kutu
// @match https://www.twitch.tv/*
// ==/UserScript==
(function() {
'use strict';
@kutu
kutu / create cubes.py
Last active March 4, 2019 07:44
source code for 3D Audio Visualization https://www.youtube.com/watch?v=c1I0XjSaVmg
import bpy
import math
nums = 18
min = 20
max = 8000
min_log = math.log10(min)
max_log = math.log10(max)
step = (max_log - min_log) / nums
mp3 = "D:\\projects\\blender\\visualizer\\inthesun.mp3"