<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gıda - Web - Teknoloji != Hasanibrahim</title>
	<atom:link href="http://ibrahimkozan.com/feed/?lang=en" rel="self" type="application/rss+xml" />
	<link>http://ibrahimkozan.com</link>
	<description>Gıda - Web - Teknoloji</description>
	<lastBuildDate>Sun, 08 Aug 2010 09:52:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Converting from decimal to the base which is wanted with the C Programming Language</title>
		<link>http://ibrahimkozan.com/c-programlama-dili-ile-10-luk-tabandan-istenilen-tabana-gecme/?lang=en</link>
		<comments>http://ibrahimkozan.com/c-programlama-dili-ile-10-luk-tabandan-istenilen-tabana-gecme/?lang=en#comments</comments>
		<pubDate>Thu, 15 Jul 2010 10:04:26 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[ANSI C]]></category>
		<category><![CDATA[Computer (Technical)]]></category>
		<category><![CDATA[Homework]]></category>
		<category><![CDATA[My Works]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/c-programlama-dili-ile-10-luk-tabandan-istenilen-tabana-gecme/</guid>
		<description><![CDATA[
#include &#60;stdio.h&#62;
&#160;
#include &#60;stdlib.h&#62;
&#160;
int main &#40;void&#41;
&#160;
&#123;
&#160;
  int first,number,number2,base,base2, ramainder, divided,counter=0,c;
&#160;
  printf&#40;&#34;Please enter a number\n&#34;&#41;;
&#160;
  scanf&#40;&#34;%d&#34;, &#38;number&#41;;
&#160;
  printf&#40;&#34;Please enter a base\n&#34;&#41;;
&#160;
  scanf&#40;&#34;%d&#34;, &#38;base&#41;;
&#160;
  number2=number;base2=base; first=number;
&#160;
  for &#40;c=0;c&#60;number;c++&#41;  
&#160;
  &#123;
&#160;
	  if &#40;number2/base2 &#62; base2&#41; &#123;number2/=base2; counter++;&#125;
&#160;
	  else break;
&#160;
  &#125;
&#160;
  counter+=1;
&#160;
int string,i&#91;counter&#93;;
&#160;
  string=counter-1;// Because counter [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #339933;">#include &lt;stdlib.h&gt;</span>
&nbsp;
<span style="color: #993333;">int</span> main <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span>
&nbsp;
<span style="color: #009900;">&#123;</span>
&nbsp;
  <span style="color: #993333;">int</span> first<span style="color: #339933;">,</span>number<span style="color: #339933;">,</span>number2<span style="color: #339933;">,</span>base<span style="color: #339933;">,</span>base2<span style="color: #339933;">,</span> ramainder<span style="color: #339933;">,</span> divided<span style="color: #339933;">,</span>counter<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">,</span>c<span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Please enter a number<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>number<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Please enter a base<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>base<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  number2<span style="color: #339933;">=</span>number<span style="color: #339933;">;</span>base2<span style="color: #339933;">=</span>base<span style="color: #339933;">;</span> first<span style="color: #339933;">=</span>number<span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span>c<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>c<span style="color: #339933;">&lt;</span>number<span style="color: #339933;">;</span>c<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span>  
&nbsp;
  <span style="color: #009900;">&#123;</span>
&nbsp;
	  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>number2<span style="color: #339933;">/</span>base2 <span style="color: #339933;">&gt;</span> base2<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>number2<span style="color: #339933;">/=</span>base2<span style="color: #339933;">;</span> counter<span style="color: #339933;">++;</span><span style="color: #009900;">&#125;</span>
&nbsp;
	  <span style="color: #b1b100;">else</span> <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span>
&nbsp;
  counter<span style="color: #339933;">+=</span><span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #993333;">int</span> <span style="color: #993333;">string</span><span style="color: #339933;">,</span>i<span style="color: #009900;">&#91;</span>counter<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #993333;">string</span><span style="color: #339933;">=</span>counter<span style="color: #339933;">-</span><span style="color: #0000dd;">1</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">// Because counter started from one but striing started from zero</span>
&nbsp;
  <span style="color: #b1b100;">do</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	  divided<span style="color: #339933;">=</span>number<span style="color: #339933;">/</span>base<span style="color: #339933;">;</span>
&nbsp;
	  ramainder<span style="color: #339933;">=</span>number<span style="color: #339933;">-</span>base<span style="color: #339933;">*</span>divided<span style="color: #339933;">;</span>
&nbsp;
	  i<span style="color: #009900;">&#91;</span><span style="color: #993333;">string</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>ramainder<span style="color: #339933;">;</span>
&nbsp;
	  number<span style="color: #339933;">=</span>divided<span style="color: #339933;">;</span>
&nbsp;
	  string<span style="color: #339933;">--;</span>
&nbsp;
	  <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>number<span style="color: #339933;">&gt;</span>base<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d(10) = %d&quot;</span><span style="color: #339933;">,</span>first<span style="color: #339933;">,</span> number<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//Why did i put it here?answer is: At the last thing of divided will be the first number :)</span>
&nbsp;
<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">string</span><span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> string<span style="color: #339933;">&lt;</span>counter<span style="color: #339933;">;</span> <span style="color: #993333;">string</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,</span> i<span style="color: #009900;">&#91;</span><span style="color: #993333;">string</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;(%d)&quot;</span><span style="color: #339933;">,</span>base<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
&nbsp;
  <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/c-programlama-dili-ile-10-luk-tabandan-istenilen-tabana-gecme/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Obama owes the victory to the internet</title>
		<link>http://ibrahimkozan.com/obama-zaferini-internete-borclu/?lang=en</link>
		<comments>http://ibrahimkozan.com/obama-zaferini-internete-borclu/?lang=en#comments</comments>
		<pubDate>Tue, 16 Mar 2010 12:45:53 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[Teknoloji]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/obama-zaferini-internete-borclu/</guid>
		<description><![CDATA[U.S. President Barack Obama&#8217;s election campaign that runs the David Plouffe, people and technologies constitutes the main elements of the campaign conducted by the &#8220;Contact e-mail list, 20 percent of votes took place,&#8221; he said.
Plouffe, Turkcell in Istanbul came as a guest of the Academy&#8217;s &#8220;Online Marketing Techniques&#8221; and &#8220;the courage needed to win on&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><span style="background-color: #ffffff;" title="ABD Başkanı Barack Obama'nın seçim kampanyasını yürüten David Plouffe, insanlar ve teknolojilerin yürüttükleri kampanyanın ana unsurlarını oluşturduğunu belirterek, &quot;Bize oy verenlerin yüzde 20'si e-posta listesinde yer alıyordu&quot; dedi.">U.S. President Barack Obama&#8217;s election campaign that runs the David Plouffe, people and technologies constitutes the main elements of the campaign conducted by the &#8220;Contact e-mail list, 20 percent of votes took place,&#8221; he said.</p>
<p></span><span style="background-color: #ffffff;" title="Plouffe, Turkcell Akademi'nin konuğu olarak geldiği İstanbul'da &quot;Online Pazarlama Teknikleri&quot; ve &quot;Kazanmak İçin Gereken Cesaret&quot; konulu bir konferans verdi.">Plouffe, Turkcell in Istanbul came as a guest of the Academy&#8217;s &#8220;Online Marketing Techniques&#8221; and &#8220;the courage needed to win on&#8221; gave a lecture.</p>
<p></span><span style="background-color: #ffffff;" title="Konuşmasında, mobil teknolojinin, internet ve e-postanın yürüttükleri kampanyanın merkezinde yer aldığının altını çizen Plouffe, insanlara dayalı bir kampanya yürütmelerinin arkasındaki asıl unsurun insanların daha çok dostlarına, aile fertlerine ve meslektaşlarına güvenmeleri olduğunu, mobil iletişimle ulaştıkları çok sayıda kişinin de bu güven sayesinde yaygınlığı">In his speech, mobile technology, internet and e-mail that conducted the campaign at the center underlines the Plouffe, people-based campaign behind the main elements of the people more friendly, families, individuals and their colleagues to trust that the mobile communication they reach a large number of people in this trust with the prevalence of</span><span title="sağladığını söyledi.">providing said.</p>
<p></span><span style="background-color: #ffffff;" title="Kampanyalarda konuşulanların milyonlarca Amerikalı tarafından bilinebildiğini, sıradan kişilere internet ve e-posta yoluyla mesajların ulaşmasını sağladıklarını ifade eden Plouffe, &quot;Sonuçta birini yeni bir ürünü denemesine ikna etmenin en iyi yollarından biri sizin tanıdığınız biri vasıtasıyla anlatılmasıdır. Birşeyden kardeşlerimiz, arkadaşlarımız, çevremizdekiler bahsederse ikna olmamız">In campaigns talking millions of Americans known by ordinary people the internet and e-mail messages from reaching their providing declaratory Plouffe, &#8220;As a result, one new product to try to persuade the best way of you, someone you know through is described. Something our brother, our friend, talking about çevremizdekiler if convinced that we </span><span title="daha kolay olur&quot; şeklinde konuştu.">easier &#8220;as said.</p>
<p></span><span style="background-color: #ffffff;" title="İnsanlara mobil cihazla ulaşmanın büyük önem taşıdığına işaret eden Plouffe, &quot;İnsanlar ve teknolojiler biraraya geldi, kampanyamızın ana unsurlarını oluşturdu. 68 milyon kişi oy verdi. Bize oy verenlerin yüzde 20'si e-posta listesinde yer alıyordu. Kampanyada bunun etkisini gördük&quot; dedi.">People with the mobile device to access important pointing out that Plouffe, &#8220;People and technology came together, the main elements of our campaign and created. 68 million people voted. Contact votes 20 percent of e-mail list was included. In the campaign that we see the effect,&#8221; he said.</p>
<p></span><span style="background-color: #ffffff;" title="30 milyon Amerikalıyla bağlantı">Connection to 30 million Americans</p>
<p></span><span style="background-color: #ffffff;" title="E-posta, SMS ve videoyla insanlara çok hızlı ulaşmaya çalıştıklarını vurgulayan Plouffe, e-postalarla gönderdikleri metin ve videoların etkisini karşılaştırdıklarını, videoların daha etkin olduğunu ve insanların bunları paylaşma yoluna gittiklerini belirtti.">E-mail, SMS and video with the people they are trying to reach very fast Plouffe stressed, they send e-mail with text and video they had compared the effect of the video is more effective and people go to them to share the road said.</p>
<p></span><span style="background-color: #ffffff;" title="Plouffe, &quot;Bizim kampanyada teknolojik dünyayı kullanarak yaptığımız şey, birkaç yıl içinde bütün dünyayı esir alacak&quot; dedi.">Plouffe, &#8220;We&#8217;ve done things in the campaign&#8217;s technological world, captured in a few years all the world will take,&#8221; he said. </span><span style="background-color: #ffffff;" title="Başarılarındaki en önemli unsurun, mobil iletişim sayesinde insanların büyük kısmına ulaşmak olduğuna dikkati çeken Plouffe, &quot;ABD'de özellikle gençler gazete okumayı pek sevmez. Televizyon reytingleri de çok yüksek değil. Bizdeki başkanlık seçimde insanlar televizyonların başında değil, laptopların, bilgisayarların başında oturuyorlar. Facebook">Success in the most important element of mobile communications, with the majority of people to attain that striking Plouffe, &#8220;in the United States, especially young people to read newspapers do not like it very much. TV Ratings also not very high. We in the presidential election, people not at the beginning of television, laptops, computers are sitting in front. Facebook </span><span title=", twitter'a giriyorlar ve gördüklerini, bildiklerini burada paylaşıyor&quot; şeklinde konuştu.">, twitter&#8217;a are entered and saw, here is sharing what they know &#8220;the said.</p>
<p></span><span title="Barack Obama'nın destekçileriyle olan iletişiminin çok önemli olduğunu dile getiren Plouffe, şöyle devam etti:">Barack Obama&#8217;s supporters that their communication is very important that expressed Plouffe, said:</p>
<p></span><span style="background-color: #ffffff;" title="&quot;30 milyon Amerikalıyla Barack Obama arasında bir ilişki kurduk. Bu kişiler Obama'nın kampanyasına inandı. Kendisinin telefonla insanlara ulaşmak gibi zorunluluğu yoktu. Ama yaptı. Obama onlara 'bu benim değil, bizim kampanyamız' dedi. Teknolojiyi kullandı. Bana internet olmasaydı Obama başkan">&#8220;30 million Americans Barack Obama with a relationship between, we have established. These people believe in Obama&#8217;s campaign was. Kendi with the phone reaching out to people like there was no obligation. But I did. Obama to them &#8216;this is not mine, our, our campaign,&#8217; he said. The technology used. I would be internet Obama president </span><span title="olabilir miydi?'">may be had? &#8221; </span><span title="diye soruyorlar. Barack Obama, çok başarılı ve iyi bir iletişimci, ancak internet olmasaydı Başkan seçilebilir miydi bilmiyorum.&quot;">I ask. Barack Obama, a very successful and a good communicator, but I do not know the Internet did not exist was the President can be chosen. &#8221;</p>
<p></span><span title="İnternetten 500 milyon dolar topladık">We have collected 500 million dollars from the Internet</p>
<p></span><span title="David Plouffe, seçim kampanyası sürecinde ciddi paraya da ihtiyaç olduğuna işaret ederek, internet üzerinden 500 milyon dolar para topladıklarını, internet olmasaydı bu kadar finansman toplamalarının mümkün olmadığını söyledi.">David Plouffe, in the process of election campaign also needs to be pointed out serious money, the $ 500 million over the internet they collect money, the internet would be so much of the financing is not possible to collect.</p>
<p></span><span title="Kampanyaya 1 milyar dolar para harcadıklarını, 6 bin kişinin tam zamanlı olarak çalıştığını, 120'den fazla dijital anlamda iletişim kurmaya çalışan personel bulunduğunu anlatan Plouffe, şöyle devam etti:">Spend $ 1 billion in campaign funds, 6 thousand people are working as full-time, more than 120 staff to communicate in the digital sense who told Plouffe, said:</p>
<p></span><span title="&quot;Kampanyanın başında aslında hiç kimse Obama ile çalışmak istemedi. Çünkü çok ihtimalsiz gibi görünüyordu. Hillary Clinton kazanacak gibi düşünülüyordu. Teknoloji ve kişiler pekçok kişiyi çekti. Teknolojik anlamda özel sektörden birçok kişi kampanyamıza katıldı. Bizim için çalışanlar bunun kariyerlerindeki en güzel nokta olduğunu söylediler.">&#8220;Campaign at the beginning in fact, no one Obama worked with did not want to. Because without possibility seemed. Hillary Clinton will win as it was thought. Technology and people who many people drew. Technological sense from the private sector, many people in our campaign attended. For us, the employees of this career, the most beautiful spots said it was. </span><span title="Bazılarına para bile ödemedik. 5 bin e-mail adresiyle başladık, 13 milyona kadar çıktı. Bence e-mail, oldukça büyük bir devrim. E-mail, insanlara Jurassic Park gibi geliyor&quot; şeklinde konuştu.">We did not even pay some money. We started with 5 thousand e-mail address, output up to 13 million. I think e-mail, a big revolution. E-mail to people, such as Jurassic Park is coming &#8220;as said.</p>
<p></span><span title="Plouffe, soruları da yanıtlarken, kampanyadaki anlamlı konuşmaların büyük kısmını Obama'nın kendisinin kaleme aldığını, yine e-postaların büyük kısmını kendisinin yazdığını, yazamadıklarının üzerinden geçtiğini ve rehberlik yaptığını ifade etti.">Plouffe, responding to questions in the campaign, the majority of meaningful speech Obama took his pen, yet the majority of e-mail that he used to write the summer over and that guide said.</p>
<p></span><span title="Kaynak: CnnTurk asd">Source: CNNTurk asd</span></p>
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/obama-zaferini-internete-borclu/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ordinary paper turned into a powerful battery!</title>
		<link>http://ibrahimkozan.com/siradan-kagit-guclu-bir-pile-donustu/?lang=en</link>
		<comments>http://ibrahimkozan.com/siradan-kagit-guclu-bir-pile-donustu/?lang=en#comments</comments>
		<pubDate>Tue, 16 Mar 2010 12:39:41 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[Teknoloji]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/siradan-kagit-guclu-bir-pile-donustu/</guid>
		<description><![CDATA[American scientists, ordinary paper, nano technology very cheap, very lightweight and super storage capacity was able to turn into a powerful battery.
&#8220;Paper to Electronic&#8221; stated this development could cause electronic devices to smaller and lighter, hybrid or electronic tools in the future of very light, small and very long-life batteries can operate from a wide [...]]]></description>
			<content:encoded><![CDATA[<p><span style="background-color: #ffffff;" title="Amerikalı bilimadamları, sıradan bir kağıdı, nano teknoloji sayesinde çok ucuz, çok hafif ve süper depolama kapasitesine sahip güçlü bir pile dönüştürmeyi başardı.">American scientists, ordinary paper, nano technology very cheap, very lightweight and super storage capacity was able to turn into a powerful battery.</p>
<p></span><span style="background-color: #ffffff;" title="&quot;Kağıt elektroniğini&quot; doğurabileceği belirtilen bu gelişme, elektronik cihazların küçülüp hafiflemesi, hibrid veya elektronik araçların ileride çok hafif, küçük ve çok uzun ömürlü pillerle çalışması gibi geniş bir alan için kapıyı araladı.">&#8220;Paper to Electronic&#8221; stated this development could cause electronic devices to smaller and lighter, hybrid or electronic tools in the future of very light, small and very long-life batteries can operate from a wide area, such as He opened the door.</p>
<p></span><span style="background-color: #ffffff;" title="Gelecek vaat eden elektrikli araçların önünde bugün için var olan en büyük engellerden biri, kullanılacak pilin ağırlığı ve kısa ömrü.">Promising electric vehicles in front of the biggest obstacles that exist today are, to use weight and short battery life.</p>
<p></span><span style="background-color: #ffffff;" title="Proceedings of the National Academy of Sciences adlı dergide yayımlanan araştırmayı yapan, California Stanford Üniversitesi'nden araştırmacılar, &quot;gümüş ve karbon nano materyallerinden yapılmış bir mürekkep ile kaplı kağıt yüzeyinden ibaret, çok hafif ve güçlü bir elektrik enerjisi depolama kaynağı&quot; oluşturmayı başardı.">Proceedings of the National Academy of Sciences called on the magazine which published research, California, Stanford University researchers, &#8220;silver and made of carbon nano-material with an ink-coated paper surface consists of a very lightweight and powerful electrical energy storage source&#8221; has managed to create.</p>
<p></span><span style="background-color: #ffffff;" title="Karbon nano tüpleri ve gümüş nano kablolarından oluşan yüzeye sahip kağıt pil, gelecek için büyük ümit vaat ediyor.">Carbon nano tubes and nano-wire made of silver paper to the surface of the battery, great for the future is promising.</p>
<p></span><span style="background-color: #ffffff;" title="Bilimciler geçmişte de, silikon nano kabloların kullanımı sayesinde bugünün lityum iyon pillerinin 10 kat güçlendirilebildiğini kanıtlamıştı.">Scientists in the past, thanks to the use of silicon nano wire today&#8217;s lithium ion batteries 10 times stronger proved.</p>
<p></span><span style="background-color: #ffffff;" title="Makalede, &quot;Kağıt teknolojisi kullanılarak, düşük maliyetlerle, hafif ve yüksek performanslı enerji depolama olanağının gerçekleştirildiği, pilde kollektörler ve elektrodlar yerine iletken kağıdın kullanıldığı&quot; belirtildi.">In the article, &#8220;the paper by using technology, with low cost, lightweight and high-performance energy storage facilities was carried out, the battery instead of the collectors and the electrodes used conductive paper&#8221; was specified.</p>
<p></span><span style="background-color: #ffffff;" title="Bu tip bir pilin, elektrikli otomobillerin veya hibrid otomobillerin hareket ettirilmesinde kullanılabileceği, elektronik cihazların daha hafif ve daha uzun ömürlü olmasını sağlayacağı kaydedildi.">This type of battery, electric cars or hybrid cars may be used for mobile electronic devices will make lighter and more durable has been saved.</p>
<p></span><span style="background-color: #ffffff;" title="Makalenin yazarlarından Yi Cui, toplumun düşük maliyetli ve yüksek enerjili enerji depolama araçlarına ihtiyaç duyduğunu vurguladı.">Yi Cui of the authors of the article, the community&#8217;s low-cost and high energy is needed for energy storage devices stressed. </span><span style="background-color: #ffffff;" title="Yu Cui, bu yeni tip pili &quot;süper depolama kapasiteli&quot; olarak tanımlayarak, bunun, otomobillerin yanı sıra, &quot;yüksek enerji gerektiren her tür alette de kullanılabileceğini&quot; kaydetti.">Cui Yu, this new type of battery &#8220;super storage capacity as defined by the car as well,&#8221; requiring a high energy can be used in all types of instruments &#8220;was recorded.</p>
<p></span><span style="background-color: #ffffff;" title="Yu Cui, &quot;kağıt pilimiz çok düşük maliyetli ve şebeke halinde bağlantıya uygun&quot; dedi.">Cui Yu, &#8220;Our paper battery in a very low-cost and network connections suitable,&#8221; he said.</span><span style="background-color: #ffffff;" title="Profesör Peidong Yang da yeni teknolojinin ticari olarak çok yakında piyasaya çıkacağını belirtti.">Professor Yang also new technology commercially Peidong will be available very soon as the said.</p>
<p></span><span style="background-color: #ffffff;" title="Kaynak: CnnTurk asdasd">Source: CNNTurk</span></p>
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/siradan-kagit-guclu-bir-pile-donustu/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Always On Top</title>
		<link>http://ibrahimkozan.com/pencereleri-ustte-tutma-always-on-top/?lang=en</link>
		<comments>http://ibrahimkozan.com/pencereleri-ustte-tutma-always-on-top/?lang=en#comments</comments>
		<pubDate>Tue, 16 Mar 2010 11:45:06 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[Computer (Technical)]]></category>
		<category><![CDATA[Programlar]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/pencereleri-ustte-tutma-always-on-top/</guid>
		<description><![CDATA[ Hello,
I&#8217;m going to expalin you about a mini programme that useful for a multiprocess worker users. This programme make a windows to &#8220;always on Top&#8221; thus while you are working on another file, you can see a window at right-below or where you want.
First of all, usage is very easy. after download the File, [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px initial initial;" title="Alwaysontop" src="http://www.searchengineplan.com/blogs/alwaysontop3d.jpg" alt="" width="198" height="196" align="left" /> Hello,</p>
<p>I&#8217;m going to expalin you about a mini programme that useful for a multiprocess worker users. This programme make a windows to &#8220;always on Top&#8221; thus while you are working on another file, you can see a window at right-below or where you want.</p>
<p>First of all, usage is very easy. after download the File,  click on file than click &#8220;ctrl+alt+t&#8221;. This makes the window ,that is active on curent screen, &#8220;always on top&#8221;</p>
<p>Here is the download:</p>
Note: There is a file embedded within this post, please visit this post to download the file.Enjoy <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Note: There is a file embedded within this post, please visit this post to download the file. Buyrun:  Note: There is a file embedded within this post, please visit this post to download the file. <em><a href="http://www.fadsoft.net/AlwaysOnTopMaker.zip">Click &amp; Download Always On Top</a></em><br />
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/pencereleri-ustte-tutma-always-on-top/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a rectengular shape wtih C Programming Language</title>
		<link>http://ibrahimkozan.com/c-programlama-dili-ile-dikdortgen-yapmacizme/?lang=en</link>
		<comments>http://ibrahimkozan.com/c-programlama-dili-ile-dikdortgen-yapmacizme/?lang=en#comments</comments>
		<pubDate>Sat, 14 Nov 2009 12:34:54 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[ANSI C]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/c-programlama-dili-ile-dikdortgen-yapmacizme/</guid>
		<description><![CDATA[
/*
&#160;
* Rectangular.c
&#160;
* * Copyright 2009 Hasanibrahim hasan@ibrahimkozan.com
&#160;
* * This program is free software; you can redistribute it and/or modify
&#160;
* it under the terms of the GNU General Public License as published by
&#160;
* the Free Software Foundation; either version 2 of the License, or
&#160;
* (at your option) any later version.
&#160;
* * This program is distributed in [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/*
&nbsp;
* Rectangular.c
&nbsp;
* * Copyright 2009 Hasanibrahim hasan@ibrahimkozan.com
&nbsp;
* * This program is free software; you can redistribute it and/or modify
&nbsp;
* it under the terms of the GNU General Public License as published by
&nbsp;
* the Free Software Foundation; either version 2 of the License, or
&nbsp;
* (at your option) any later version.
&nbsp;
* * This program is distributed in the hope that it will be useful,
&nbsp;
* but WITHOUT ANY WARRANTY; without even the implied warranty of
&nbsp;
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
&nbsp;
 * GNU General Public License for more details.
&nbsp;
 * * You should have received a copy of the GNU General Public License
&nbsp;
* along with this program
&nbsp;
*/</span>
&nbsp;
<span style="color: #339933;">#include &lt;stdio.h&gt;</span>
<span style="color: #339933;">#include &lt;stdlib.h&gt;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> argc<span style="color: #339933;">,</span> <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>argv<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #993333;">int</span> shortedge<span style="color: #339933;">,</span>longedge<span style="color: #339933;">,</span> space <span style="color: #339933;">,</span> i<span style="color: #339933;">,</span>j<span style="color: #339933;">,</span>k<span style="color: #339933;">;</span>
    <span style="color: #000066;">printf</span> <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;short edge =&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,&amp;</span>shortedge<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;long edge =&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>longedge<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    space<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span>longedge<span style="color: #339933;">-</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #0000dd;">2</span><span style="color: #339933;">+</span><span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
    shortedge<span style="color: #339933;">=</span>shortedge<span style="color: #339933;">-</span><span style="color: #0000dd;">2</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
    <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&lt;</span>longedge<span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">//This is TOP Edge</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;* &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span>j<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>j<span style="color: #339933;">&lt;</span>shortedge<span style="color: #339933;">;</span>j<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">//Here is MITTLE</span>
    <span style="color: #009900;">&#123;</span>
    <span style="color: #000066;">printf</span> <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;*&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span>k<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>k<span style="color: #339933;">&lt;</span>space<span style="color: #339933;">;</span>k<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
                         <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;*<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&lt;</span>longedge<span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">//This is BOTTOM edge</span>
    <span style="color: #009900;">&#123;</span><span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;* &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
&nbsp;
  system<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;PAUSE&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
  <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>i must explain a bit, i didn&#8217;t write any control to check is longedge <br />
true or false, you can add </p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>shortedge<span style="color: #339933;">&lt;</span>longadge<span style="color: #009900;">&#41;</span></pre></div></div>

<p> i put space between * *, you can delete it, but if you, <br />
you must modify a bit,<br />
 First Change</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"> <span style="color: #009900;">&#123;</span><span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;* &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p> to</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"> <span style="color: #009900;">&#123;</span><span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;*&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>
Second Change</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"> space<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span>longedge<span style="color: #339933;">-</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #0000dd;">2</span><span style="color: #339933;">+</span><span style="color: #0000dd;">1</span><span style="color: #339933;">;</span></pre></div></div>

<p> to</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"> space<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span>longedge<span style="color: #339933;">-</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>
it&#8217;s all, i hope it can be useful for you, Hasan ibrahim</p>
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/c-programlama-dili-ile-dikdortgen-yapmacizme/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Diabetic and dietetic foods</title>
		<link>http://ibrahimkozan.com/diyabetik-diyetetik-gidalar/?lang=en</link>
		<comments>http://ibrahimkozan.com/diyabetik-diyetetik-gidalar/?lang=en#comments</comments>
		<pubDate>Sat, 12 Sep 2009 14:06:27 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/diyabetik-diyetetik-gidalar/</guid>
		<description><![CDATA[Diabetes or diabetes, we all know, &#8220;sugar disease&#8221; of scientific söylenimi can say more. Where did you remove this subject may be fitness can ask:) and I noticed that our society often confused preclude a bit of confusion I do think I did a little research about these two concepts.
Now remain in my mind from [...]]]></description>
			<content:encoded><![CDATA[<div id="result_box" dir="ltr">Diabetes or diabetes, we all know, &#8220;sugar disease&#8221; of scientific söylenimi can say more. Where did you remove this subject may be fitness can ask:) and I noticed that our society often confused preclude a bit of confusion I do think I did a little research about these two concepts.</p>
<p>Now remain in my mind from the principles of nutrition, let me express this as far as diabetes. Diabetes, blood sugar can also be more than the normal rate. Why is blood sugar accumulation in your mind he could ask.</p>
<p>Our intent from the sugar glucose. Glucose, the body of water, the air is so valuable and indispensable fuel. This fuel we use in our brain and all the organs, mainly in the liver more than that before then would be stored as fat in the sebaceous glands. Let me briefly explain the circulation of food in the body ..</p>
<p>We receive food by mouth for the first time in the mouth, then starts to digest the stomach and small intestine. But the main digestion, small intestine are. Here, our body materials, cement, iron with k protein, fat, vitamins and carbohydrates are absorbed. Carbohydrates and the way the first time, the liver is stored here, according to the needs or in need of diabetes began gönderiliyor.İşte body part here .. Pancreas, called insulin, the hormone is secreted, target orgaan go through the blood glucose, insulin and it took it sticks to the body organ is transferred to the relevant cells. If insulin is not enough, not enough glucose and glucose in the blood is not transferred, and consequently glucose circulating in the free state is starting to increase. This we call the first type of event that insufficient insulin is called diabetes. The second type of diabetes, the pancreas, insulin secretion, but normal levels of insulin secreted at this time because of the defective and ultimately unable to fulfill vini still gets stuck in traffic and glucose blood glucose level is rising again ..</p>
<p>First part over, I will continue tomorrow:)</p></div>
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/diyabetik-diyetetik-gidalar/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Food Developments: Adobe Flash ;)</title>
		<link>http://ibrahimkozan.com/gidalarda-yeni-gelismeler-adobe-flash/?lang=en</link>
		<comments>http://ibrahimkozan.com/gidalarda-yeni-gelismeler-adobe-flash/?lang=en#comments</comments>
		<pubDate>Wed, 25 Mar 2009 17:03:57 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Gida flash]]></category>
		<category><![CDATA[Gida ve animasyon]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/?p=73</guid>
		<description><![CDATA[IN new developments lesson, i and my teacher Prof. Dr. Ismail Sait Dogan decided to explain Adobe Flash Programme.

Sistem Gereksinimleri ile Ba?lad?m  
********************************************************
Program hakkinda once teknik bir takim bilgiler sundum, nerelerde hangi amaca dayali olacagi konusunda bilgileri aktardiktan sonra, konunun daha iyi anlasilmasi icin aninda bi program hazirlamaya karar verdim. 
  Datashow  ile [...]]]></description>
			<content:encoded><![CDATA[<p><strong>IN new developments lesson, i and my teacher Prof. Dr. Ismail Sait Dogan decided to explain Adobe Flash Programme.</strong></p>
<p><img src="http://h.ibrahimkozan.googlepages.com/DSC02169.JPG" alt="" width="507" height="379" /><span style="color: #ff0000;"><em></em></span></p>
<p><span style="color: #ff0000;"><em>Sistem Gereksinimleri ile Ba?lad?m <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></span></p>
<p>********************************************************</p>
<p><strong>Program hakkinda once teknik bir takim bilgiler sundum, nerelerde hangi amaca dayali olacagi konusunda bilgileri aktardiktan sonra, konunun daha iyi anlasilmasi icin aninda bi program hazirlamaya karar verdim.</strong> <img src="http://h.ibrahimkozan.googlepages.com/DSC02179.JPG" alt="" width="508" height="379" /></p>
<p><span style="color: #ff0000;"> </span> <span style="color: #ff0000;">Datashow  ile istege dayali bi program yaparak devam ettim <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<p>********************************************************</p>
<p><strong>Anlatimim sirasinda kafalarda soru isaretleri kalmamasi icin karsilikli diyalog seklinde sunumu devam ettirdim. Herkesin hosuna gitmesini, arkadaslarin gozlerindeki isiktan anladim ve bu beni cok sevindirdi <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p><img src="http://h.ibrahimkozan.googlepages.com/DSC02185.JPG" alt="" width="508" height="379" /><span style="color: #ff0000;"><em></em></span></p>
<p><span style="color: #ff0000;"><em>Bazen hararetli anlar da oldu <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></span></p>
<p>********************************************************</p>
<p><strong>Daha sonra bitise yakin bir zamanda duduklu tencere , ekmek yapimi metodlarini anlatan ve BiyotaShifa adli ben ve calisma arkadasima ait bir urunun online fiyatlandirmasina dayali ornekleri paylasarak ufak sempozyuma son verdim <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p><img src="http://h.ibrahimkozan.googlepages.com/DSC02199.JPG" alt="" width="508" height="379" /><em><span style="color: #ff0000;"> </span></em> <em><span style="color: #ff0000;"> </span></em> <em><span style="color: #ff0000;"> </span></em> <em><span style="color: #ff0000;"> </span></em> <em><span style="color: #ff0000;"> </span></em></p>
<p><em><span style="color: #ff0000;">Düdüklü Tencere projemi ve digerlerini anlatarak sonlandirdim <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></em></p>
<p>********************************************************</p>
<p>S<strong>onuçta bir çok ki?i programin yuklenmesi, ogrenilmesi, fiyatlandirilmasi konusunda sorular sordular ve en kisa zamanda ogrenmek istedikleri hararetlerinden belliydi.  Ozellikle Sayin Prof. Dr. ?smail Sait Dogan hocam, bu konuda israrli bi sekilde beraber calismamizi istedi.  Zaman ayirdiginiz icin tesekkurler</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/gidalarda-yeni-gelismeler-adobe-flash/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To calculate compound interest with C Programming Language</title>
		<link>http://ibrahimkozan.com/faiz-hesaplamasi/?lang=en</link>
		<comments>http://ibrahimkozan.com/faiz-hesaplamasi/?lang=en#comments</comments>
		<pubDate>Tue, 10 Mar 2009 15:06:55 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[Homework]]></category>
		<category><![CDATA[c ile faiz]]></category>
		<category><![CDATA[faiz hesaplamasi]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/?p=68</guid>
		<description><![CDATA[

#include stdio.h
#include stdlib.h
&#160;
    main&#40;&#41; &#123;
int year=0;
float your_money;
printf&#40;&#34;Your money i.e.: 1000  \n&#34;&#41;;
scanf &#40;&#34;%f&#34;, &#38;your_money&#41;;
float annual_interest;
printf &#40;&#34;Please enter your annual interest i.e: 0.75 \n&#34;&#41;;
scanf &#40;&#34;%f&#34;, &#38;annual_interest&#41;;
int howlong;
printf&#40;&#34;How many years will your money stay in bank   ? i.e.: 5 \n&#34;&#41;;
scanf&#40;&#34;%d&#34;, &#38;howlong&#41;;
while &#40;year&#60;howlong&#41;
&#123;
your_money+=your_money*annual_interest;
year++;
&#125;
printf&#40;&#34; After %d years, Your money will be %f $ or [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://img50.imageshack.us/img50/8731/adwa.jpg" alt="" /></p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include stdio.h</span>
<span style="color: #339933;">#include stdlib.h</span>
&nbsp;
    main<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #993333;">int</span> year<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #993333;">float</span> your_money<span style="color: #339933;">;</span>
<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Your money i.e.: 1000  <span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
scanf <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>your_money<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #993333;">float</span> annual_interest<span style="color: #339933;">;</span>
<span style="color: #000066;">printf</span> <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Please enter your annual interest i.e: 0.75 <span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
scanf <span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>annual_interest<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #993333;">int</span> howlong<span style="color: #339933;">;</span>
<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;How many years will your money stay in bank   ? i.e.: 5 <span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>howlong<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>year<span style="color: #339933;">&lt;</span>howlong<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
your_money<span style="color: #339933;">+=</span>your_money<span style="color: #339933;">*</span>annual_interest<span style="color: #339933;">;</span>
year<span style="color: #339933;">++;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; After %d years, Your money will be %f $ or € etc <span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> howlong<span style="color: #339933;">,</span> your_money<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;But i can say this money will not be useful for you :p &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  system<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;PAUSE&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
  <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/faiz-hesaplamasi/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to remove an integer from an integer with C programming language</title>
		<link>http://ibrahimkozan.com/kullanici-tarafindan-atanan-iki-gercel-sayi-arasindaki-farkin-tam-kismini-gosterir/?lang=en</link>
		<comments>http://ibrahimkozan.com/kullanici-tarafindan-atanan-iki-gercel-sayi-arasindaki-farkin-tam-kismini-gosterir/?lang=en#comments</comments>
		<pubDate>Fri, 06 Mar 2009 15:06:35 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[ANSI C]]></category>
		<category><![CDATA[Homework]]></category>
		<category><![CDATA[C de fonksiyon kullanımı]]></category>
		<category><![CDATA[C ile çıkarma]]></category>
		<category><![CDATA[C ödev.]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/?p=67</guid>
		<description><![CDATA[it will show removal result. First there will be two float numbers assigned by users.

#include stdio.h
#include stdlib.h
&#160;
minus &#40; float x, float y &#41;
&#123;
      float z;
      z=x-y;
      return z;
&#125;
&#160;
int main&#40;&#41;
&#123;
  float a,b,c; 
  int d;
  printf&#40;&#34;Please enter two float digits with space.i.e: 12.322 16.2323n&#34;&#41;;
  scanf&#40;&#34;%f %f&#34;, &#38;a, &#38;b&#41;;
  c=minus&#40;a,b&#41;;
  d=&#40;int&#41;c;
  printf&#40;&#34;Result= %d&#34;, d&#41;;
   
  return 0;
&#125;

Wtih functions, [...]]]></description>
			<content:encoded><![CDATA[<p>it will show removal result. First there will be two float numbers assigned by users.</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include stdio.h</span>
<span style="color: #339933;">#include stdlib.h</span>
&nbsp;
minus <span style="color: #009900;">&#40;</span> <span style="color: #993333;">float</span> x<span style="color: #339933;">,</span> <span style="color: #993333;">float</span> y <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
      <span style="color: #993333;">float</span> z<span style="color: #339933;">;</span>
      z<span style="color: #339933;">=</span>x<span style="color: #339933;">-</span>y<span style="color: #339933;">;</span>
      <span style="color: #b1b100;">return</span> z<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  <span style="color: #993333;">float</span> a<span style="color: #339933;">,</span>b<span style="color: #339933;">,</span>c<span style="color: #339933;">;</span> 
  <span style="color: #993333;">int</span> d<span style="color: #339933;">;</span>
  <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Please enter two float digits with space.i.e: 12.322 16.2323n&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f %f&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>a<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>b<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  c<span style="color: #339933;">=</span>minus<span style="color: #009900;">&#40;</span>a<span style="color: #339933;">,</span>b<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  d<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span><span style="color: #009900;">&#41;</span>c<span style="color: #339933;">;</span>
  <span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Result= %d&quot;</span><span style="color: #339933;">,</span> d<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   
  <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Wtih functions, life is easy <img src='http://ibrahimkozan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/kullanici-tarafindan-atanan-iki-gercel-sayi-arasindaki-farkin-tam-kismini-gosterir/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iki gercel sayinin toplaminin tam sayi cinsinden gosterimi</title>
		<link>http://ibrahimkozan.com/iki-gercel-sayinin-toplaminin-tam-sayi-cinsinden-gosterimi/?lang=en</link>
		<comments>http://ibrahimkozan.com/iki-gercel-sayinin-toplaminin-tam-sayi-cinsinden-gosterimi/?lang=en#comments</comments>
		<pubDate>Fri, 06 Mar 2009 14:48:53 +0000</pubDate>
		<dc:creator>Hasan İbrahim Kozan</dc:creator>
				<category><![CDATA[ANSI C]]></category>
		<category><![CDATA[Homework]]></category>
		<category><![CDATA[C de fonksiyon]]></category>
		<category><![CDATA[C de toplama]]></category>
		<category><![CDATA[C programlama dili toplama işlemi]]></category>

		<guid isPermaLink="false">http://ibrahimkozan.com/?p=66</guid>
		<description><![CDATA[#include stdio.h
#include stdlib.h
topla ( float x, float y )
{
      float z;
      z=x+y;
      return z;
}
int main()
{
  float a,b,c; 
  int d;
  printf(&#8221;bosluk birakarak iki gercel sayi giriniz. Orn: 12.322 16.2323n&#8221;);
  scanf(&#8221;%f %f&#8221;, a, &#38;b);
  c=topla(a,b);
  d=(int)c;
  printf(&#8221;Sonuc= %d&#8221;, d);
   
  return 0;
}
]]></description>
			<content:encoded><![CDATA[<p>#include stdio.h<br />
#include stdlib.h</p>
<p>topla ( float x, float y )<br />
{<br />
      float z;<br />
      z=x+y;<br />
      return z;<br />
}</p>
<p>int main()<br />
{<br />
  float a,b,c; <br />
  int d;<br />
  printf(&#8221;bosluk birakarak iki gercel sayi giriniz. Orn: 12.322 16.2323n&#8221;);<br />
  scanf(&#8221;%f %f&#8221;, a, &amp;b);<br />
  c=topla(a,b);<br />
  d=(int)c;<br />
  printf(&#8221;Sonuc= %d&#8221;, d);<br />
   <br />
  return 0;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://ibrahimkozan.com/iki-gercel-sayinin-toplaminin-tam-sayi-cinsinden-gosterimi/?lang=en/feed/&amp;lang=en</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
