Skip to content

Instantly share code, notes, and snippets.

View miunau's full-sized avatar
💭
🦦 🦦 🦦 🦦 🦦 🦦

miunau miunau

💭
🦦 🦦 🦦 🦦 🦦 🦦
View GitHub Profile
@miunau
miunau / slcamera.py
Last active July 30, 2025 09:43
Second Life-style camera add-on for Blender
moved to: https://github.com/miunau/blender-secondlife-camera-addon
@miunau
miunau / WebAudio.js
Created October 9, 2022 03:19 — forked from mrdoob/WebAudio.js
HTMLAudioElement polyfill using the WebAudio API with seamless loop support in Safari.
/**
* @author mrdoob / http://mrdoob.com/
*/
function WebAudio( context ) {
if ( context === undefined ) {
context = WebAudio.context;
@miunau
miunau / flac-header.js
Created January 3, 2022 07:43
Reading a FLAC header in pure JS
//
// Reading a FLAC header in pure JS by miunau (@miuott)
// There might be better ways of doing this, please let me know!
//
// Assuming an ad-hoc file object as input here:
//
// {
// arrayBuffer: read with FileReader.readAsArrayBuffer
// sampleRate: ?,
// numberOfChannels: ?,
@miunau
miunau / multiple_ssh_setting.md
Created December 27, 2020 14:58 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"