2013-12-30

Arduino: LM35 Termometre sıcaklığını okuma kodu

/* LM35 Termometre okuma kodu. 
 Termometre LM35 bir ucu 5V'a diğer ucu Analog 0'a bağlı.
 Okuma ucu Analog 0'a bağlanacak.
 LM35 0 derecede 0V, 100 derecede 1 V değerini vermektedir
 LM35 1 derecede başına voltaj 0.01 V artmaktadır. ör: 0.19V= 19 derece
*/ int SicaklikPin = 0; // LM35 sensöre bağlı pin int OkunanDeger; // Analog 0'dan okunacak değer (0-1023) float Sicaklik;   void setup(void) {   Serial.begin(9600);    } // Sensörden'den okunan değer ve sicaklik serial monitör'e gönderilecek void loop(void) {   OkunanDeger = analogRead(SicaklikPin);   Serial.print("Analog okuma = ");   Serial.println(OkunanDeger); // okunan analog değer   Sicaklik = (5.0 * OkunanDeger * 100.0) / 1024;   Serial.print("Sicaklik= ");   Serial.println(Sicaklik); // hesaplanan sıcaklık delay (1000); }





2013-12-29

Arduino: Fotosel ile yanıp sönen LED

/* 
 Fotosel ışık ile karşılaşınca direnci artan bir eleman. 
 Bu devre çalıştırıldığında Fotosel ışık alınca LED yanıp sönme hızı yavaşlar.
 Fotosel'e gelen ışık azalınca LED hızlı yanıp söner.
 Fotosel (LDR) bir ucu 5V'a diğer ucu Analog 0'a bağlı.
 Fotosel'in diğer ucu 10K dirence, direnç ise toprağa bağlanacak.
*/
 
int photocellPin = 0;     // Fotosel ve 10K a0'a bağlı
int photocellReading;     // Analog 0'dan okunacak değer
// Arduino devrelerinde bulunan 13 nolu LED'e verdiğimiz isim: "led".

int led = 13;

void setup(void) {
  // Fotosel'den okunan değer serial monitör'e gönderilecek
  Serial.begin(9600);   
  // 13 nolu Digital pin'i OUTPUT moduna ayarlar
  pinMode(led, OUTPUT);   
}
 
void loop(void) {
  photocellReading = analogRead(photocellPin);  
 
  Serial.print("Analog reading = ");
  Serial.print(photocellReading);     // okunan analog değer
 
  // Işık şiddetine isim vereceğiz
  if (photocellReading < 20) {
    Serial.println(" - Karanlık");
  } else if (photocellReading < 200) {
    Serial.println(" - Loş");
  } else if (photocellReading < 500) {
    Serial.println(" - Aydınlık");
  } else if (photocellReading < 800) {
    Serial.println(" - Parlak");
  } else {
    Serial.println(" - Çok parlak");
    
  }
// LED'i yakıp söndürür

  digitalWrite(led, HIGH);   // LED'i açar
  delay(photocellReading);   // bekleme süresi = fotosel değeri
  digitalWrite(led, LOW);    // LED'i kapatır
  delay(photocellReading);   // bekleme süresi = fotosel değeri

}



2013-12-28

Arduino Analog Okuma

/*
  Analog Serial Okuma
  Analog pin 0 üzerindeki değeri okur, sonucu "serial monitor" penceresine yazdırır.
  Potansiyometre orta bağlantısını pin A0'e bağlayın, dış pinleri +5V ve toprağa bağlayın. 
 
 Bu örneğin kodu kamu mülkiyetindedir.
 */

// Bu bölüm çalışınca bir kez yürütülür:
void setup() {
  // seri iletişimi 9600 bits / saniye hızında başlat:
  Serial.begin(9600);
}

// bu döngü sonsuza kadar çalışır:
void loop() {
  // analog pin 0 üzerindeki değeri okur:
  int sensorValue = analogRead(A0);
  // değeri ekrana yazdırır:
  Serial.println(sensorValue);
  delay(1);        // kararlılık için eklenen ufak bekleme
}


Arduino'da göz kırpma


/*
  Denediğim ilk şey 
  Göz kırp 
  Bir saniye aralıklar ile LED'i açıp kapatır.
 
  Kod telif hakkı kamuya aittir.
 */
 
// Arduino devrelerinde 13 nolu Pin'e bir LED bağlıdır.  (Kırmızı Ok)
// ona bir isim verelim:
int led = 13;

// devre güç kaynağına bağlandığında veya reset tuşuna basıldığında setup bölümü bir kez çalışır:
void setup() {                
  // Pin'i ÇIKTI pin'i olarak tanımlar:
  pinMode(led, OUTPUT);     
}

// Bu bölümde sonsuza kadar çalışan döngü (LOOP) bulunur:
void loop() {
  digitalWrite(led, HIGH);   // LED'i aç (HIGH gerilimi yüksek konuma getirir (5V))
  delay(1000);               // beklenecek milisaniye (burada 1 saniye)
  digitalWrite(led, LOW);    // Gerilimi düşük konuma getirerek LED'i kapat
  delay(1000);               // beklenecek milisaniye (burada 1 saniye)
// Delay değerleri ile oynayarak hızı değiştirebilirsiniz. 
}


/*
Kodu File >Upload ile kodunuzu Arduino'ya gönderebilirsiniz.
Hata mesajı alırsanız Arduino'nun bağlı olduğundan, sürücünün yüklü olduğundan ve doğru COM portunun seçili olduğundan emin olun. COM portunu Tools > Serial Port menüsünde bulabilirsiniz. 
*/


Gerekli parçalar:
  1. 1x Arduino Uno 
  2. 1x A>B tip USB kablo 
  3. - Arduino yazılımı ve sürücüsü









2013-12-24

The Biggest Scientific Discoveries Of 2013





Astronomers from the California institute of technology in Pasadena this year came to the conclusion that there are at least 100 billion planets in our galaxy. The study provided evidence that planetary systems in the galaxy are the norm by analyzing Planets orbiting the star called Kepler-32. Not all of the planets are habitable for life forms like ours though, in November NASA suggested that one in five stars have earth like planets in the habitable zone. Kepler-32 is a dwarf type star and is 1301.1 light years from us. Originally Kepler-32 was thought to have two planets orbiting around it, but in April 2013 it was confirmed that 3 other planets are in its system. In our galaxy there are about 200 billion stars and 40 to 50 billion of them are like our own sun. This means there would be at least 11 billion earth like planets that could potentially have intelligent life forms living on the surface.

scientists at the University of Rochester announced that they have discovered one of the main reasons we need to sleep. Science understood the negative effects associated with lack of sleep,but up until now has not been able to fully understand the reasons why we need to sleep. There study's show that when we sleep, our brain cleans out the waste that builds up during the time we are awake. According to the scientists when we are awake the cells in the brain produce waste products and when we are asleep the neurones in the brain shrink by half. This allows cerebrospinal fluid to be pumped around the brain cleaning the waste out and then transferring it to the liver for elimination.

Researchers at the Oregon Health and Science University have announced that they had cloned human embryos and collected stem cells from them. For more than a decade scientists have struggled to overcome the technical problems to create batches of the body's master cells, but it seems they have succeeded.The cloned embryos were also grown into specialised skin cells and heart cells, which is the first step towards transplant medicines. Scientists used the cloning technique that led to Dolly the sheep and according to the team caffeine turned out to be the addition to the cloning process.Dolly the sheep was born in 1996 after researchers created an embryo by fusing a cell from a sheep's udder with an egg that had its nucleus removed. Even though these study's can help people the discover will reignite the controversial subject that is cloning.

scientists have discovered the origin of cosmic rays, study's have shown that at least some of the harmful rays come from supernovas. Cosmic rays are high energy particles that shot through space at nearly the speed of light, the mystery of were they came from has baffled scientists for a hundred years. The cosmic rays do not affect us hear on earth because of the earths atmosphere, however they do crash in to air molecules high in the upper atmosphere creating showers of charged particles, some of which reach the ground.
The study found evidence from gamma rays that had come from the decay of a type of particle, called a neutral pion, which is created when cosmic rays interact with the material surrounding a supernova. The next question will be whether the majority of cosmic rays come from exploding stars or just some of them.

The human brain is an extremely complex system, this has made studying the brain and understanding how it works a difficult task in neuroscience. However scientists have succeeded in growing mini-human-like "organoids" in vitro. One of the organoids is a small brain and is created by culturing human pluripotent stem cells in a three dimensional rotational bioreactor. Other small organs have been grown as well including liver buds and kidneys providing better models for studying human disease than their animal equivalents like mice. By creating these mini organs scientists can study and try to understand what causes certain diseases.

Music by -Kevin McLeod
Hypnothis
Incomptech
Three people enjoy the summer sky over the Delaware river, NJ, USA - Halfblue
Kepler-11 is a small, cool star around which six planets orbit - NASA Blueshift
This is artist's conception shows Kepler-34b-David A. Aguilar (CfA)
Image of a hypothetical ocean planet with a terrestrial atmosphere and two satellites-Lucianomendez
Alien Atlanta -patrickiron
The Mad Scientist Series-Mathia
It's time to sleep-Giacomo Carena
No Work-cell105
Ct-scan of the brain with hydrocephalus-Lucien Monfils
Images from a patient with normal pressure hydrocephalue-Nevit Dilmen
Syrongomyelia, 45F-Nevit Dilmen
The Blood Brain Barrier and Astrocytes type 1-Ben Brahim Mohammed
OSU Fermentation Science Pilot Plant-Sam Beebe
Human cell-line colony being cloned in vitro through use of cloning rings-Paphrag
NASA Goddard Space Flight Center-Solar Rays Hit Space Age High
Visualization of a DTI measurement of a human brain-Thomas Schultz
A chimpanzee brain at the Science Museum London-Gaetan Lee

2013-12-16

Memo's 50 Memo



Memo'nun 50. Yaş günü. Belgrat Ormanları, Mangal, Piknik, Muhabbet, Pasta, time lapse, remiks... Yaşam böyle bir şey işte... 

Baş oyuncular:
Memo + Beto
Diğer oyuncular:
Memo + Beto'nun çocuğu
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşının çocuğu
Betonun arkadaşının çocuğu 
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşının çocuğu
Betonun arkadaşının çocuğu 
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşının çocuğu
Betonun arkadaşının çocuğu 
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşı
Betonun arkadaşı
Memonun arkadaşının çocuğu
Betonun arkadaşının çocuğu 
Yoldan geçenler 
Köpek
Horoz
Karga
Bayağı alakarga

Teşekkürler:
Bu soğukta gelenler
Çay sorumluları 
Kahve sorumluları
Mangal sorumluları
Sucuk sorumluları
Avusturya lisesi pasta ekibi
Ev yapımı şarapları
Kurabiyeyi yapanlar

Belediye
Coşkun sucuk,
Cumhuriyet sucukları
Pınar sucuk
Diğer irili ufaklı Şarap firmaları 

Music: Goto80 Disk Machine Sky Pole Remix
Yönetmen: Ben

Case Studies: When you can't or won't run an experiment (and still want to study atypical language development)

2013-12-06

Yalan yanlış sorular





Bir sorunun yanlış olmasının ne önemi var? ÖSYM / MEB gibi kurumlar, eğitimin düzenlenmesi, bileni bilmeyenden ayırma gibi görevleri yerine getirmesi gereken kurumlar. Seçim ve seçim sonucu seçilenin yandaşlarının bazı kurumların başına getirilmesi, objektif olarak öğrenci seçme işlevini yürütmesi gereken kurumların tarafsızlığı ve yeterliliği konusunda soruları akıllara getirmektedir. Aşağıdaki soruda iki yanlış şık olması: Soruyu soran mı bilmiyor? Çizimi yapan mı? sorusunu akla getirmektedir. Kontrol eden de mi görmedi veya kontrol eden de mi bilmiyor. Bu sorular ilk kez büyük kitleler üzerinde mi deneniyor? Yanlış soruyu iptal etmek, sınav sırasında bocalayan, moralleri bozulan vakit kaybeden çocuklar ne olacak gibi başlangıcı yetersiz kişilerin yanlış koltuklarda oturması sonucu oluşan fiili durumlar ile karşı karşıyayız. Bir kez olduğunda hata diyebileceğimiz durum süreklilik kazanınca hata oldu deme şansı da bırakmamaktadır. Bileni bilmeyenden ayıracak kurumlarda bilmeyenler değil, bilenler çalışmalıdır. 




--


http://www.google.com/search?q=nevit+dilmen
http://yandex.com/yandsearch?text=nevit+dilmen


2013-12-05

Kanlıca > Emirgan > Kanlıca

Anish kapoor @ Istanbul

Eski Datça

Damsfly

Trees / Ağaçlar

Turkish tea