#natureofcode
Explore tagged Tumblr posts
Video
instagram
PROGRAMMING POSTERSĀ #55 Studying āThe Nature of Codeā. #processingĀ #creativecodingĀ #generative #generativedesignĀ #creativeappsnet #posterĀ #posterreposterĀ #posterdesign #itsnicethatĀ #posterlabsĀ #graphicdesign #aigaĀ #posterunion #typosters #thenatureofcode #natureofcode #shiffman https://www.instagram.com/p/BrJMiljh16W/?utm_source=ig_tumblr_share&igshid=ft2nki967e08
#55#processing#creativecoding#generative#generativedesign#creativeappsnet#poster#posterreposter#posterdesign#itsnicethat#posterlabs#graphicdesign#aiga#posterunion#typosters#thenatureofcode#natureofcode#shiffman
2 notes
Ā·
View notes
Photo

Author of Maiāau and Ikekumu for Kuaiwi Academy . Visual photojournalism on @chickswhorip and @hawaiianwatermovement . A 10 year Makahiki Anniversary to e-curriculum and in-person workshops. #seo #natureofcode #authorsofinstagram #author #copyright #illustratorstoryboard #facebookmemories #visualcommunicationexperts https://www.instagram.com/p/CaJiHexLWDBXSFJy6uf2UyJDsD5_m1OKkulH_M0/?utm_medium=tumblr
#seo#natureofcode#authorsofinstagram#author#copyright#illustratorstoryboard#facebookmemories#visualcommunicationexperts
1 note
Ā·
View note
Photo

Day 9 - pushing the type experiments further by redrawing the characters with particles #processing #generativeart #creativecoding #everyday #dailydesign #dontbreakthechain #typeart #particles #natureofcode
#generativeart#typeart#dailydesign#creativecoding#natureofcode#everyday#processing#dontbreakthechain#particles
6 notes
Ā·
View notes
Photo
Day 73 NOC Koch Line Fractals
9 notes
Ā·
View notes
Video
tumblr
Day 088 | Suspension 2
Thereās this moment when I swivel around the rope where I hit resistance, I feel like I might stop, then the momentum kicks back up again and lifts me up.Ā
Hereās the code
1 note
Ā·
View note
Photo
44/100 - Fractals Recursive Lines
20 notes
Ā·
View notes
Photo
1 note
Ā·
View note
Video
tumblr
import java.util.Random;
Random generator; void setup() { Ā size(1080, 1080); Ā generator = new Random(); }
void draw() { Ā background(25);
Ā float h = (float)generator.nextGaussian(); Ā h = h*800; Ā h = h+80;
Ā fill(200, 90, 0); Ā ellipse(width/2, height/2, h, h); Ā //saveFrame("output/orange_dot_####.png"); }
#processing#code#motiongraphics#practices#java#media art#new media#digital art#orange#animation#natureofcode#generative art#visual art
0 notes
Photo

"The bees knew what human mathematicians didn't know for thousands of years." - Prof Brian Cox. A hexagon has always been my favourite shape. It underpinned my learning for visual programming. Turns out it is the most efficient shape of all. . . . . #wonder #naturalworld #making #holograms #make #diy #craft #holidayfun #coding #natureofcode #programming #woodstock #capetown (at Cape Town, Western Cape)
#diy#craft#capetown#programming#coding#wonder#make#making#woodstock#holidayfun#holograms#naturalworld#natureofcode
0 notes
Video
instagram
Processing iteration 2 #natureofcode #digitalgraphics #creativecoding #processing #codingtrain
0 notes
Video
tumblr
Matter.jsć§éćć§ććŖć ( ĖĻĖ )Ā ćć³ćć¼ć«é¢Øć«ćé害ē©ć«ć¶ć¤ćććØč·³ćčæćęćć«ćć¦ćæćļ¼ ć https://shumpei20190120.netlify.com/ ć #DailyChallenge #CodingChallenge Ā #062 #20190120 #mediaart #programming #design #p5js #matterjs #natureofcode #pinball #colorful
0 notes
Video
vimeo
Intro I.0 (The Nature of Code)
So, after watching a video tutorial from Dane Webster (who is teaching the Processing course at Virginia Tech), I decided to see if there were other video tutorials online (Dane's were easy to follow, but they are basically what we cover in class - and I'm hoping to bridge out a little).
I found this one by Daniel Shiffman. The Nature of Code is probably much more advanced than what I'm ready for - but I'm currently reading Shiffman's book - and it was fun to put a face to the name. Not to mention - this video tutorial was very personable and endearing.
41 notes
Ā·
View notes
Photo
Day 91 NOC Genetic AlgorithmsĀ
1 note
Ā·
View note
Video
tumblr
Day 076 | SuspensionĀ
Today I was inspired by the moment of suspension right after I caught the silks in yesterdayās video. Ā
Hereās the code
1 note
Ā·
View note
Photo
43/100 - Fractals Circles
9 notes
Ā·
View notes
Text
Pizza @ ITP - Implementation
My favorite topic from the Nature of Code (Animation and Physics) class was autonomous agents. Iāve been interested in the field of crowd simulation from before so I wanted to delve more into this topic. I decided toĀ simulate the one of the most exciting moment at ITP -- when pizzas arrive on the floor.
I started by making agents those are attracted to the closest pizza. When an agent get to the closest pizza, they eat a slice, smile, and stay there.Ā
Progress 1:Ā Video
Based on the first version, I added some more features to the agents so they... - repel each other so they donāt collide - move away from the pizza after they eat - get hungry again after a certain amount of time from eating - bounce off when they hit the walls - the size of ellipses show how hungry/full students are (bigger means full)
vimeo
I spent a lot of time to make the students waiting in a line when another student is eating a pizza, but havenāt got there yet. Although the class is over, Iām interested in going further with this so Iāll keep working on it.
It was a good experience for me practicing object oriented programming as well as studying more about autonomous agents. I find myself going through a process of āwritingā when I code. I write a dirty and long draft, revise, revise, revise, delete, delete, delete, revise, revise... and then finally get to a cleaner and shorter version.
The code with comments is here on my GitHub.Ā
Credit: The steering part of the code is based on Dan ShiffmanāsĀ Seek example and Separation example.
0 notes