Rotterdam Live Coding Community

View on GitHub

RLCC meetup April 9

hackmd-github-sync-badge

@ V2 Rotterdam

frame (4) ^ QR code leads to this collaborative notepad :)

WIFI: v2_lab pass: end-of-file

Presenters

Notes

Rafaele with Knurl

Rik with Hydra

URL to hydra: https://hydra.ojack.xyz/

Code used for workshop2

ctrl+shift+enter 	-> Run all code 
alt [option] +enter -> Run Block
ctrl+enter 			-> Run 1 line
ctrl +shift+h 		-> Hide code
ctrl +\				-> Disable selected
hush()				-> Stop rendering


noise( scale = 10.0, offset = 0.1 ).out(o0)

voronoi( scale = 5.0, speed = .3, blending = 0.3 ).out(o0)

osc( frequency = 60.0, sync = .1, offset = 0.0 ).out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 ).out(o0)

gradient( speed = 1 ).out(o0)

solid( r= 1.0, g = 0.0, b = 0.0, a = 1.0).out(o0)

src( input ).out(o0)

s0.initImage("https://upload.wikimedia.org/wikipedia/commons/2/25/Hydra-Foto.jpg")

src(s0).out()


################################

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.rotate( angle = 10, speed )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.scale( amount = 1.5, xMult = 1, yMult = 1, offsetX = 0.5, offsetY = 0.5 )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.pixelate( pixelX = 20, pixelY = 20 )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.repeat( repeatX = 3, repeatY = 3, offsetX, offsetY )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.repeatX( reps = 3, offset )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.repeatY( reps = 3, offset )
	.out(o0)

src(s0)
	.kaleid( nSides = 4 )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.scroll( scrollX = 0.5, scrollY = 0.5, speedX, speedY )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.scrollX( scrollX = 0.5, speed )
	.out(o0)

shape( sides = 3.0, radius = 0.3, smoothing = 0.01 )
	.scrollY( scrollY = 0.5, speed )
	.out(o0)

Sebastian hydra gif extension

https://github.com/geikha/hyper-hydra/blob/main/doc/hydra-gif.md -> making you own functions that collect a bunch of effects into it using javascript arrow functions# RLCC meetup April 9