View allAll Photos Tagged processor.
Im addicted! I love this project! I added some blending effects and am using a halo blurry image instead of a solid fill ellipse. I... had... no... idea...
I did this diagram in 2002 to get my head around all the players and politics in the interactive television business.
A worker shells Brazil nuts, Puerto Maldonado, Madre de Dios, Peru.
For more on the lives of Brazil nut harvesters, see this video: www.blog.cifor.org/16627/snakes-thieves-and-falling-nuts-...
Photo by Marco Simola/CIFOR
For more information on CIFOR's research on Brazil nuts in Peru, please contact Manuel Guariguata (mailto:m.guariguata@cgiar.org)
If you use one of our photos, please credit it accordingly and let us know. You can reach us through our Flickr account or at: cifor-mediainfo@cgiar.org and m.edliadi@cgiar.org
Another HDR today. I wasn't really happy with this. Its a bit too overdone. I couldn't get the settings right. I like the drama of the clouds, but the trees are looking over processed.
It was a stormy day with major downpours on and off, but between the rain showers, there were bits of sun and blue sky peeking through. Everything always looks greener after the rain.
I've researched metal watercolor palettes up and down on the internet, and have not seen this one. I thought perhaps I'd be able to use it with my little magnetized half-pans, but a) they're a little too big, and b) the box is aluminum, so magnets don't work. Nonetheless, it seems like a really nice little box and I look forward to filling it up. This was the last one. They do have an even larger one, but I think this will suffice for now.
And I can give away my little tins as Christmas presents!
Hey everyone!
Just a reminder that the Process: FRIENDS + FAMILY exhibition opens this Saturday in Brooklyn! If you're in the area, come by and check it out!
ARTISTS INCLUDE:
SCOTT ALBRECHT
SARA ANTOINETTE
RJ CALABRESE
DAMIEN CORRELL
MATTHEW DE LEON
MARTINA FUGAZZATTO
DAMIAN GENUARDI
ANDREW KEIPER
IAN KUALI’I
JESSE LEDOUX
ABE LINCOLN JR.
BLAKE E. MARQUIS
GARRETT MORIN
LV RUIZ
MALENA SELDIN
DAMION SILVER
ERIC SMITH
DAVE TRAWIN
KAIN VUONG
GROVER WATTS
CHRISTINE YOUNG
SHOW DATES:
May 22 – June 12, 2010
Opening Reception May 22, 7PM
LOCATION:
THE GOWANUS STUDIO SPACE
166 7th street,
Brooklyn, NY 11215
More information can be found at:
Processing is not as fast. While I can handle two dragons in 3 days. And thats really intense. I think how to optimize the process.
County naturalist, Lars Higdon instructs volunteers at the seed processing area at the Dane County Seed Shed attached to the William G. Lunney Lake Farm County Park, part of the Capital Springs Recreation Area.
Drawings on the green grass
photo by NNoti Nastenkina
www.flickr.com/photos/nnoti_nastenkina
And nice video is here vimeo.com/54197118#
Hyperconsciousness
Subatomic Nuclei
The Eye is the Human Camera
about the movie Watchmen
flickr today
This is a Process West TMIC (top mount intercooler) for my Subaru STi. It's an upgrade to the OEM TMIC and will hopefully keep things running a bit cooler.
Auto-processed (by Google Photos) picture of Tigger on the bed on 1 March 2020. Color/processing variant.
last frame after running this code:
float dir = 20;
float y = 0.0;
floatx= 0.0;
void setup(){
size (700,500);
}
void draw(){
frameRate(20);
line (0,y,700,y);
fill(random(255),random(255),random(255),1);
stroke(random(255),random(255),random(255));
strokeWeight(27);
y+=dir;
line (x,0,x,500);
fill(random(255),random(255),random(255),50);
stroke(random(255),random(255),random(255));
strokeWeight(27);
x+=dir;
if (y > 700 || y < 0){
dir = dir * -1.01;
}
}