Skip to content

Instantly share code, notes, and snippets.

View enzyme69's full-sized avatar
🎯
Blender and AR~!

Jimmy Gunawan enzyme69

🎯
Blender and AR~!
View GitHub Profile
@jensmeder
jensmeder / Scaled QR Code with Core Image (Playground).swift
Created May 20, 2017 10:15
Generating QR Codes with Core Image
import Foundation
import UIKit
import PlaygroundSupport
let data = "Hello World!".data(using: .utf8)!
let filter = CIFilter(name: "CIQRCodeGenerator", withInputParameters: ["inputMessage" : data, "inputCorrectionLevel":"L"])
let ciimage = filter!.outputImage!
let transform = CGAffineTransform(scaleX: 7.0, y: 7.0)
let image = ciimage.applying(transform)
let img = UIImage(ciImage: image)

Audionodes demo networks

Here is a heteroclitical collection of different audio networks that were found somewhat interesting.

MIDI-enabled

These are networks that can be played with a MIDI keyboard.

Electric guitar

@enzyme69
enzyme69 / sv_grease_pencil_sampler.json
Created December 16, 2016 05:25
SV Grease Pencil Sampler
{
"export_version": "0.062",
"framed_nodes": {
"Int.001": "Frame.001",
"Int.002": "Frame.003",
"Math.001": "Frame.004",
"Range Float.001": "Frame.001",
"UV Connection": "Frame.002",
"Vector Interpolation": "Frame.001"
},
anonymous
anonymous / polar_coordinates.json
Created November 10, 2016 15:59
to do later?
{
"export_version": "0.062",
"framed_nodes": {},
"groups": {},
"nodes": {
"Float Series": {
"bl_idname": "SvGenFloatRange",
"color": [
0.9932162761688232,
0.9660812616348267,
@zeffii
zeffii / fft.py
Created September 18, 2016 07:23
fft node
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@tado
tado / polka_dot.pde
Last active March 8, 2016 13:18
Circle Fitting image
ArrayList<Bubble> bubbles; //Bubbleクラスを格納するArrayList
PImage image; //色をピックアップするイメージ
int maxSize = 40; //円の最大サイズ(直径)
void setup() {
//画面初期設定
size(1200, 900);
frameRate(60);
noStroke();
//ArrayListの初期化
@codelynx
codelynx / simd+ext.swift
Last active November 17, 2021 18:56
swift: float4x4 extension to scale, rotate, translate 4x4 matrix
//
// simd+ext.swift
//
// Created by Kaz Yoshikawa on 11/6/15.
//
//
import Foundation
import simd
import GLKit
@mchirico
mchirico / RW.swift
Created October 15, 2015 16:25
RW to file in swift
//
// RW.swift
// Web
//
// Created by Mike Chirico on 10/15/15.
// Copyright © 2015 Mike Chirico. All rights reserved.
//
import UIKit
@schickling
schickling / UIImageFixedOrientationExtension.swift
Last active December 31, 2024 22:21
Extension to fix orientation of an UIImage (Sets orientation to portrait)
extension UIImage {
func fixedOrientation() -> UIImage {
if imageOrientation == UIImageOrientation.Up {
return self
}
var transform: CGAffineTransform = CGAffineTransformIdentity
@jwinder
jwinder / sonic-pi-tutorial.md
Last active September 22, 2023 20:12
Sonic Pi in-app tutorials concatenated - last synced 27-08-2023 - https://sonic-pi.net/tutorial.html - https://github.com/samaaron/sonic-pi - All credit & thanks to Sam Aaron!

1 Welcome to Sonic Pi

Welcome friend :-)

Welcome to Sonic Pi. Hopefully you're as excited to get started making your own sounds as I am to show you. It's going to be a really fun ride where you'll learn all about music, synthesis, programming, composition, performance and more.