<?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>Skema Rangkaian&#124;Electronic Schematic Circuit Diagram</title>
	<atom:link href="http://skemarangkaian.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://skemarangkaian.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 01:15:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Java applet program that allows the user to draw lines, rectangles and ovals</title>
		<link>http://skemarangkaian.com/java-applet-program-that-allows-the-user-to-draw-lines-rectangles-and-ovals/</link>
		<comments>http://skemarangkaian.com/java-applet-program-that-allows-the-user-to-draw-lines-rectangles-and-ovals/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 01:15:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Other Circuits]]></category>
		<category><![CDATA[applet]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[java awt]]></category>
		<category><![CDATA[public void paint]]></category>
		<category><![CDATA[sujith]]></category>

		<guid isPermaLink="false">http://skemarangkaian.com/java-applet-program-that-allows-the-user-to-draw-lines-rectangles-and-ovals/</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import java.awt.*; import java.applet.*; /* &#60;applet code=&#34;Sujith&#34; width=200 height=200&#62; &#60;/applet&#62; */ public class Sujith extends Applet &#123; public void paint&#40;Graphics g&#41; &#123; for&#40;int i=0;i&#60;=250;i++&#41; &#123; Color c1=new Color&#40;35-i,55-i,110-i&#41;; g.setColor&#40;c1&#41;; g.drawRect&#40;250+i,250+i,100+i,100+i&#41;; g.drawOval&#40;100+i,100+i,50+i,50+i&#41;; g.drawLine&#40;50+i,20+i,10+i,10+i&#41;; &#125; &#125; &#125; [...]]]></description>
		<wfw:commentRss>http://skemarangkaian.com/java-applet-program-that-allows-the-user-to-draw-lines-rectangles-and-ovals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java program for implentation of consumer problem using inter thread communication</title>
		<link>http://skemarangkaian.com/java-program-for-implentation-of-consumer-problem-using-inter-thread-communication/</link>
		<comments>http://skemarangkaian.com/java-program-for-implentation-of-consumer-problem-using-inter-thread-communication/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 01:15:21 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Other Circuits]]></category>
		<category><![CDATA[Got]]></category>
		<category><![CDATA[producer]]></category>
		<category><![CDATA[producer consumer problem]]></category>
		<category><![CDATA[public static void]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[true system]]></category>

		<guid isPermaLink="false">http://skemarangkaian.com/java-program-for-implentation-of-consumer-problem-using-inter-thread-communication/</guid>
		<description><![CDATA[Write a Java program that correctly implements producer consumer problem using the concept of inter thread communication. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [...]]]></description>
		<wfw:commentRss>http://skemarangkaian.com/java-program-for-implentation-of-consumer-problem-using-inter-thread-communication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fuse Monitor Indicator</title>
		<link>http://skemarangkaian.com/fuse-monitor-indicator/</link>
		<comments>http://skemarangkaian.com/fuse-monitor-indicator/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 01:16:49 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Skema Elektronika]]></category>

		<guid isPermaLink="false">http://skemarangkaian.com/fuse-monitor-indicator/</guid>
		<description><![CDATA[Description: The idea for this project may have come to me in a flash of inspiration, and its a very simple way to check if a fuse has blown without removing it from its holder. Notes The simplicity of this circuit uses just two components, but with just one resistor and an LED this circuit [...]]]></description>
		<wfw:commentRss>http://skemarangkaian.com/fuse-monitor-indicator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program for Deadlock detection algorithm</title>
		<link>http://skemarangkaian.com/program-for-deadlock-detection-algorithm/</link>
		<comments>http://skemarangkaian.com/program-for-deadlock-detection-algorithm/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 13:15:23 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Other Circuits]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[conio]]></category>
		<category><![CDATA[deadlock]]></category>
		<category><![CDATA[printf]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[stdio]]></category>

		<guid isPermaLink="false">http://skemarangkaian.com/program-for-deadlock-detection-algorithm/</guid>
		<description><![CDATA[INPUT: enter total no. of processes : 4 enter claim matrix : 0 1 0 0 1 0 0 1 0 1 0 0 0 0 1 1 0 1 0 1 enter allocation matrix : 1 0 1 1 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 [...]]]></description>
		<wfw:commentRss>http://skemarangkaian.com/program-for-deadlock-detection-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lie Detector Circuit #2</title>
		<link>http://skemarangkaian.com/lie-detector-circuit-2/</link>
		<comments>http://skemarangkaian.com/lie-detector-circuit-2/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 01:15:43 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Detector]]></category>
		<category><![CDATA[Sensor]]></category>

		<guid isPermaLink="false">http://skemarangkaian.com/lie-detector-circuit-2/</guid>
		<description><![CDATA[This lie detector circuit can be built in a few minutes, but can be incredibly useful when you want to know if someone is really telling you the truth. It is not as sophisticated as the ones the professionals use, but it works. It works by measuring skin resistance, which goes down when you lie. [...]]]></description>
		<wfw:commentRss>http://skemarangkaian.com/lie-detector-circuit-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

