#natureofcode
Explore tagged Tumblr posts
trcreativecoding Ā· 7 years ago
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
2 notes Ā· View notes
malialaka Ā· 3 years ago
Photo
Tumblr media
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
1 note Ā· View note
torshev Ā· 8 years ago
Photo
Tumblr media
Day 9 - pushing the type experiments further by redrawing the characters with particles #processing #generativeart #creativecoding #everyday #dailydesign #dontbreakthechain #typeart #particles #natureofcode
6 notes Ā· View notes
ondinafrate-blog Ā· 8 years ago
Photo
Tumblr media
Day 73 NOC Koch Line Fractals
9 notes Ā· View notes
movementandcode Ā· 8 years ago
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
joakimquach-blog1 Ā· 8 years ago
Photo
Tumblr media
44/100 - Fractals Recursive Lines
20 notes Ā· View notes
coding-spirals-blog Ā· 8 years ago
Photo
Tumblr media
1 note Ā· View note
processing-coding-diary Ā· 7 years ago
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"); }
0 notes
wezside Ā· 8 years ago
Photo
Tumblr media
"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)
0 notes
Video
instagram
Processing iteration 2 #natureofcode #digitalgraphics #creativecoding #processing #codingtrain
0 notes
shumpei0407t Ā· 6 years ago
Video
tumblr
Matter.jsć§éŠć‚“ć§ć‚‹ćŖć† ( Ė˜Ļ‰Ė˜ )Ā  ćƒ”ćƒ³ćƒœćƒ¼ćƒ«é¢Øć«ć€éšœå®³ē‰©ć«ć¶ć¤ć‹ć‚‹ćØč·³ć­čæ”ć‚‹ę„Ÿć˜ć«ć—ć¦ćæćŸļ¼ 怀 https://shumpei20190120.netlify.com/ 怀 #DailyChallenge #CodingChallenge Ā  #062 #20190120 #mediaart #programming #design #p5js #matterjs #natureofcode #pinball #colorful
0 notes
processandprocessing Ā· 12 years ago
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
ondinafrate-blog Ā· 8 years ago
Photo
Tumblr media
Day 91 NOC Genetic AlgorithmsĀ 
1 note Ā· View note
movementandcode Ā· 8 years ago
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
joakimquach-blog1 Ā· 8 years ago
Photo
Tumblr media
43/100 - Fractals Circles
9 notes Ā· View notes
yeseul-itp-blog Ā· 8 years ago
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