I hereby claim:
- I am cdr6934 on github.
- I am generatecoll (https://keybase.io/generatecoll) on keybase.
- I have a public key ASCPsV2GYmdypv--V4yqOmzdUPejjuWO_nNuxSQXWvtZYQo
To claim this, I am signing this object:
| import bpy | |
| ## Class for the lorenz | |
| class Lorenz: | |
| def __init__(self, sceneRef, objName, color, initX, initY, initZ): | |
| self.X, self.Y, self.Z = initX, initY, initZ | |
| self.dt = 0.0025 | |
| self.a, self.b, self.c = 10, 48, 2.76 | |
| self.color = color | |
| self.objName = objName |
| module arm(r, marg) { | |
| union() { | |
| for(i = [0:1:20]) | |
| { | |
| translate([rands(-5,5,1)[0],rands(-5,5,1)[0],i*r*marg]) { | |
| sphere(r); | |
| } | |
| } | |
| } | |
| } |
| // Paste these lines into website's console (Win/Linux: Ctrl + Shift + I / Mac: Cmd + Alt + I) | |
| if(!!window.React || | |
| !!document.querySelector('[data-reactroot], [data-reactid]') || | |
| Array.from(document.querySelectorAll('*')).some(e => e._reactRootContainer !== undefined || Object.keys(e).some(k => k.startsWith('__reactContainer'))) | |
| ) | |
| console.log('React.js'); | |
| if(!!document.querySelector('script[id=__NEXT_DATA__]')) | |
| console.log('Next.js'); |
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am cdr6934 on github. | |
| * I am generatecoll (https://keybase.io/generatecoll) on keybase. | |
| * I have a public key ASCPsV2GYmdypv--V4yqOmzdUPejjuWO_nNuxSQXWvtZYQo | |
| To claim this, I am signing this object: |
| const drawPaperTexture = (x, y, w, h) => { | |
| let cx, cy, rng, cs; | |
| rng = 100; | |
| push(); | |
| translate(x, y); | |
| let a = (w + h) * 4; | |
| for (let i = 0; i < a; i++) { | |
| noStroke(); | |
| fill(255, R() * 255); |
| I am attesting that this GitHub handle cdr6934 is linked to the Tezos account tz1faciLfucCMGZqsHPda7hqAvmMRumqxm7B for tzprofiles | |
| sig:edsigtsF33Uhs6rBSHC5UNEHuT2r7MxdE7mwBrdD4T86EzsMdwJcQL13wjCdHPmFb5DHmpcDaPAHLZjNAcSP1wWoH4rJohBard2 |
| I am attesting that this GitHub handle cdr6934 is linked to the Tezos account tz1faciLfucCMGZqsHPda7hqAvmMRumqxm7B for tzprofiles | |
| sig:edsigtsF33Uhs6rBSHC5UNEHuT2r7MxdE7mwBrdD4T86EzsMdwJcQL13wjCdHPmFb5DHmpcDaPAHLZjNAcSP1wWoH4rJohBard2 |
| /* | |
| Programing: Explorations in the Arc Realm | |
| Name: Chris Ried | |
| */ | |
| ArcLine[][] al; | |
| float start_arc, stop_arc, r, diff, margin, x, y, nf; | |
| float noise_factor; | |
| int n; | |
| void setup() |
| /* | |
| Programing: Noise Field | |
| Name: @Generate.Collective | |
| Color functions are tewmplates used by @manolode | |
| */ | |
| /////////////////////////////////////////////////////////// | |
| int move, n; |