background preloader

Project Shapeshifter

Project Shapeshifter
Related:  eyalrosenthal

מבחן: איזה צד של המוח שלכם דומיננטי יותר, הימני או השמאלי? | הפטריה הביטו היטב על סרטון הרקדנית המסתובבת הבא. האם הרקדנית מסתובבת בכיוון השעות או שמא מסתובבת נגד כיוון השעון? תתפלאו, אבל מספר בני אדם שונים שיסתכלו על התמונה הזאת, יענו תשובות שונות. ייתכן כי גם אתם, אם תתרכזו זמן מה בסרטון המחזורי הזה, תגלו כי כוון הריקוד שלה התהפך. מבחן אינטרנטי קצר ופשוט שיקח לכם שלושים שניות מהחיים, מתיימר לקבוע אלו מבין חלקי המוח שלכם, הימני או השמאלי הוא זה ששולט אצלכם. את האשליה האופטית הנהדרת "מבחן הרקדנית", אשליה מאוד מוכרת ברשת, יצר האמן היפני נובויוקי קאיאהרה, והיא מצליחה לתעתע במוח שלנו בזכות העובדה שהצללית בה אנחנו צופים מכילה מידע דו מימדי בלבד ולא מאפשרת למוח לקבוע בוודאות באיזה כיוון מסתובבת הרקדנית. בשורה התחתונה, אנחנו לא מבינים גדולים במדעי המוח, אבל אנחנו יכולים לשער כי גם המבחן אותו ביצעתם למעלה הוא למעשה קשקוש מוחלט, ונוצר רק בשביל הכיף, ובשביל שכותבים כמוני ייאלצו לבזבז דקות ארוכות מסמנם ברשת בחיפוש אחר מחקרים ותשובות מעמיקות בהקשר הזה. קליק למבחן תודה למיכאל על הטיפ מבחן הרקדנית באמצעות הרשמו לקבלת עדכון יומי על הסיפורים החדשים שלנו פטריות נוספות:

Awakening Our Truth | We are Spiritual Beings having a Human Experience, learning Unconditional Love in a story we call Life, it's an Illusion we create from One Mind Thinking #GodHome ~ Awakening Our Truth Noam Chomsky on the Purpose of Education by Maria Popova On the value of cultivating the capacity to seek the significant. In this talk based on his presentation at the Learning Without Frontiers conference in January, philosopher, linguist, and cognitive scientist Noam Chomsky — easily one of our time’s sharpest thinkers — discusses the purpose of education. Despite the slow pace and the cheesy AfterEffects animated typography, the video is a treasure trove of insight on everything from the role of technology to the pitfalls of policy. On the industrialization of education, echoing Sir Ken Robinson’s admonition about its effects on creativity: There have been many measures taken to try to turn the educational system towards more control, more indoctrination, more vocational training, imposing a debt, which traps students and young people into a life of conformity… That’s the exact opposite of [what] traditionally comes out of The Enlightenment. On technology: Technology is basically neutral. On the whimsy of inquiry: ↬ @openculture

Coding tutorials and books Siv-food סיו-פוד: עוגת קפה טבעונית אחת מההתמכרויות הכי גרועות שלי - קפה. אני לא יודעת אם אצליח להיגמל אי פעם, אז בינתיים אני חיה עם זה... נס קפה עם חלב סויה זה אחד מהדברים המנחמים ביותר שיש, השלוק הראשון הוא כמו טיפול פסיכולוגי של שעה מכווץ לתוך כמה שניות. אז כדי לחגוג את ההתמכרות הכנתי עוגת קפה, כזאת שתלווה את הקפה שלכם בכל שעה, עם הצימוקים הטמונים בה שהופכים אותה למפתיעה וטעימה אפילו עוד יותר. רכיבים: (ל-2 תבניות אינגליש קייק) חומרים יבשים: 1.5 כוסות קמח 10 גרם (שקית) אבקת אפיה קורט מלח 0.5 כוס צימוקים רטובים: 3/4 כוס סוכר 1 כוס חלב סויה (או חלב צמחי אחר) 3 כפות אבקת נס קפה מגורען מאיכות טובה 1 שקית סוכר וניל 1 בננה מעוכה היטב 0.5 כוס שמן לציפוי: 100 גרם שוקולד מריר 0.5 כוס חלב סויה הכנה: מחממים תנור לחום בינוני (180 מעלות) מערבבים בקערה את החומרים היבשים. בתאבון!

Drawing a Cylinder with Processing Posted by Jan Vantomme on 10 December 2010. Tags: 3d, processing, teaching In this second article, I’m going to show you how you can create your own custom 3D shapes with Processing. You’ll learn how to draw a cylinder by using the beginShape(), endShape() and vertex() functions. A cylinder consists of a top, bottom and body. void drawCylinder(int sides, float r){ float angle = 360 / sides; beginShape(); for (int i = 0; i < sides; i++) { float x = cos( radians( i * angle ) ) * r; float y = sin( radians( i * angle ) ) * r; vertex( x, y ); } endShape(CLOSE);} The image below shows you how you this function can be used to draw a detailed circle with 30 vertices and other geometric shapes with less vertices. ! The code we have so far only draws the top of our cylinder. We need to add an extra parameter to the drawCylinder() function to use the height of the cylinder. The last thing we need to do is draw the body of our cylinder. Drawing a Cone Download

Chewbacca Actor Shares Vintage Photos From 'Star Wars' Set A long time ago on a movie set far, far away, people gathered to make the original Star Wars trilogy. Our memories of these films usually revolve around their iconic scenes, but one actor is giving a sneak peek at dozens of behind-the-scenes photos.

Toxiclibs explorations: 3D sketching app - Pepf's Blob import processing.opengl.*; import toxi.geom import toxi.geom.mesh import toxi.volume import toxi.processing ToxiclibsSupport gfx; TriangleMesh mesh; VolumetricBrush brush; VolumetricSpace volume; IsoSurface surface; float yRot=0; float xRot=0; PFont myFont; float mapY, mapX,xPos,yPos,zPos; void setup() { size(600,600,OPENGL); noLoop(); gfx = new ToxiclibsSupport(this); volume = new VolumetricSpaceArray( new Vec3D(600,600,600), 50, 50, 50 ); surface = new ArrayIsoSurface( volume ); mesh = new TriangleMesh(); ellipseMode(CENTER); brush = new RoundBrush( volume, 50 ); myFont = createFont("Arial", 16); textFont(myFont); volume.closeSides(); surface.reset(); surface.computeSurfaceMesh( mesh, .1 ); void draw() { xPos = mapX*cos(yRot); yPos = mapX*sin(yRot); zPos = -mapY*sin(xRot); background(0); lights(); pushMatrix(); translate( width/2, height/2, 0); rotateY( yRot); rotateX( xRot); scale(1); fill(255); stroke(255,0,0); line(0,0,300,0); line(0,yPos,xPos,yPos); stroke(0,255,0); line(0,0,0,300); line(xPos,0,xPos,yPos); stroke(0,0,250);

Related: