<?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>Bereketnesh</title>
	<atom:link href="http://blogs.fabfolk.com/bereketnesh/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blogs.fabfolk.com/bereketnesh</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 28 May 2010 07:43:57 +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>Assembly Code</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=68</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=68#comments</comments>
		<pubDate>Thu, 27 May 2010 12:01:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=68</guid>
		<description><![CDATA[;
; Displaying LCD and LED + to make it read temprature
;
; read and send temperature
;
; Neil Gershenfeld
; CBA MIT 10/25/07
;
; (c) Massachusetts Institute of Technology 2007
; Permission granted for experimental and personal use;
; license for commercial sale available from MIT.
;
;BEKY Tried to modify the MIT code.
;We will see on the next episode
;
.include &#8220;tn44def.inc&#8221;
;
; definitions
;
.equ red [...]]]></description>
			<content:encoded><![CDATA[<p>;<br />
; Displaying LCD and LED + to make it read temprature<br />
;<br />
; read and send temperature<br />
;<br />
; Neil Gershenfeld<br />
; CBA MIT 10/25/07<br />
;<br />
; (c) Massachusetts Institute of Technology 2007<br />
; Permission granted for experimental and personal use;<br />
; license for commercial sale available from MIT.<br />
;<br />
;BEKY Tried to modify the MIT code.<br />
;We will see on the next episode</p>
<p>;<br />
.include &#8220;tn44def.inc&#8221;<br />
;<br />
; definitions<br />
;<br />
.equ red = PB0; red pin<br />
.equ green = PB1; green pin<br />
.equ blue = PB2; blue pin<br />
;<br />
; registers<br />
;<br />
.def temp = R16; temporary storage<br />
.def temp1 = R17; temporary storage<br />
.def count = R17; loop counter<br />
.def pwm = R18; PWM counter<br />
;<br />
; code segment<br />
;<br />
.cseg<br />
.org 0<br />
rjmp reset<br />
;<br />
; main program<br />
;<br />
;<br />
.equ DB7 = PA0<br />
.equ DB6 = PA1<br />
.equ DB5 = PA2<br />
.equ DB4 = PA3<br />
.equ E = PA4<br />
.equ RS = PA5<br />
;<br />
; registers<br />
;<br />
.def lcdbyte = R16<br />
.def temp2 = R20<br />
.def temp3 = R21<br />
;<br />
; code segment<br />
;<br />
;<br />
; long_delay<br />
; delay before redraw<br />
;<br />
.equ long_delay_time = 100<br />
long_delay:<br />
   ldi temp1, long_delay_time<br />
   long_delay1:<br />
      ldi temp2, long_delay_time<br />
      long_delay2:<br />
         ldi temp3, long_delay_time<br />
         long_delay3:<br />
            dec temp3<br />
            brne long_delay3<br />
         dec temp2<br />
         brne long_delay2<br />
      dec temp1<br />
      brne long_delay1<br />
   ret<br />
;<br />
; lcd_delay<br />
; delay between commands<br />
;<br />
.equ lcd_delay_time = 100<br />
lcd_delay:<br />
   ldi temp1, lcd_delay_time<br />
   lcd_delay1:<br />
      ldi temp2, lcd_delay_time<br />
      lcd_delay2:<br />
         dec temp2<br />
         brne lcd_delay2<br />
      dec temp1<br />
      brne lcd_delay1<br />
   ret<br />
;<br />
; lcd_putchar<br />
; put character in lcdbyte<br />
;<br />
lcd_putchar:<br />
   ;<br />
   ; set RS for data<br />
   ;<br />
   sbi PORTA, RS<br />
   ;<br />
   ; output high nibble<br />
   ;<br />
   cbi PORTA, DB7<br />
   sbrc lcdbyte, 7<br />
      sbi PORTA, DB7<br />
   cbi PORTA, DB6<br />
   sbrc lcdbyte, 6<br />
      sbi PORTA, DB6<br />
   cbi PORTA, DB5<br />
   sbrc lcdbyte, 5<br />
      sbi PORTA, DB5<br />
   cbi PORTA, DB4<br />
   sbrc lcdbyte, 4<br />
      sbi PORTA, DB4<br />
   ;<br />
   ; strobe E<br />
   ;<br />
   nop<br />
   sbi PORTA, E<br />
   nop<br />
   cbi PORTA, E<br />
   ;<br />
   ; wait<br />
   ;<br />
   rcall lcd_delay ; can be shorter<br />
   ;<br />
   ; output low nibble<br />
   ;<br />
   cbi PORTA, DB7<br />
   sbrc lcdbyte, 3<br />
      sbi PORTA, DB7<br />
   cbi PORTA, DB6<br />
   sbrc lcdbyte, 2<br />
      sbi PORTA, DB6<br />
   cbi PORTA, DB5<br />
   sbrc lcdbyte, 1<br />
      sbi PORTA, DB5<br />
   cbi PORTA, DB4<br />
   sbrc lcdbyte, 0<br />
      sbi PORTA, DB4<br />
   ;<br />
   ; strobe E<br />
   ;<br />
   nop<br />
   sbi PORTA, E<br />
   nop<br />
   cbi PORTA, E<br />
   ;<br />
   ; wait and return<br />
   ;<br />
   rcall lcd_delay ; can be shorter<br />
   ret<br />
;<br />
; lcd_putcmd<br />
; put command in lcdbyte<br />
;<br />
lcd_putcmd:<br />
   ;<br />
   ; clear RS for command<br />
   ;<br />
   cbi PORTA, RS<br />
   ;<br />
   ; output command bits<br />
   ;<br />
   out PORTA, lcdbyte<br />
   ;<br />
   ; strobe E<br />
   ;<br />
   nop<br />
   sbi PORTA, E<br />
   nop<br />
   cbi PORTA, E<br />
   ;<br />
   ; wait and return<br />
   ;<br />
   rcall lcd_delay<br />
   ret<br />
;<br />
; lcd_init<br />
; initialize the LCD<br />
;<br />
lcd_init:<br />
   ;<br />
   ; power-up delay<br />
   ;<br />
   rcall lcd_delay<br />
   ;<br />
   ; initialization sequence<br />
   ;<br />
   ldi lcdbyte, (1 << DB5) + (1 << DB4)<br />
   rcall lcd_putcmd<br />
   ldi lcdbyte, (1 << DB5) + (1 << DB4)<br />
   rcall lcd_putcmd<br />
   ldi lcdbyte, (1 << DB5) + (1 << DB4)<br />
   rcall lcd_putcmd<br />
   ;<br />
   ; 4-bit interface<br />
   ;<br />
   ldi lcdbyte, (1 << DB5)<br />
   rcall lcd_putcmd<br />
   ;<br />
   ; two lines, 5&#215;7 font<br />
   ;<br />
   ldi lcdbyte, (1 << DB5)<br />
   rcall lcd_putcmd<br />
   ldi lcdbyte, (1 << DB7)<br />
   rcall lcd_putcmd<br />
   ;<br />
   ; display on<br />
   ;<br />
   clr lcdbyte<br />
   rcall lcd_putcmd<br />
   ldi lcdbyte, (1 << DB7) + (1 << DB6) + (1 << DB5)<br />
   rcall lcd_putcmd<br />
   ;<br />
   ; entry mode<br />
   ;<br />
   clr lcdbyte<br />
   rcall lcd_putcmd<br />
   ldi lcdbyte, (1 << DB6) + (1 << DB5)<br />
   rcall lcd_putcmd<br />
   ret<br />
;<br />
; lcd_print<br />
; print a null-terminated string<br />
;<br />
lcd_print:<br />
   lcd_print_loop:<br />
      lpm<br />
      mov lcdbyte, R0<br />
      cpi lcdbyte, 0<br />
         breq return<br />
      rcall lcd_putchar<br />
      adiw zl, 1<br />
      rjmp lcd_print_loop<br />
   return:<br />
      ret<br />
;<br />
; strings to print<br />
;<br />
line_1:<br />
   .db &#8220;Holla to&#8221;,0<br />
line_2:<br />
   .db &#8220;fab labs!!&#8221;,0<br />
;<br />
; reset routine<br />
;<br />
reset:<br />
   ;<br />
   ; set clock divider to /8<br />
   ;<br />
   ;ldi temp, (1 << CLKPCE)<br />
   ;ldi temp1, (0 << CLKPS3) | (0 << CLKPS2) | (1 << CLKPS1) | (1 << CLKPS0)<br />
   ;out CLKPR, temp<br />
   ;out CLKPR, temp1<br />
   ;<br />
   ; set stack pointer to top of RAM<br />
   ;<br />
   ldi temp, high(RAMEND)<br />
   out SPH, temp<br />
   ldi temp, low(RAMEND)<br />
   out SPL, temp<br />
   ;<br />
   ; init LED pins for output<br />
   ;<br />
   sbi PORTB, red<br />
   sbi DDRB, red<br />
   sbi PORTB, green<br />
   sbi DDRB, green<br />
   sbi PORTB, blue<br />
   sbi DDRB, blue<br />
   ;<br />
   ; set stack pointer to top of RAM<br />
   ;<br />
   ldi temp, high(RAMEND)<br />
   out SPH, temp<br />
   ldi temp, low(RAMEND)<br />
   out SPL, temp<br />
   ;<br />
   ; init I/O pins<br />
   ;<br />
   cbi PORTA, DB7<br />
   sbi DDRA, DB7<br />
   cbi PORTA, DB6<br />
   sbi DDRA, DB6<br />
   cbi PORTA, DB5<br />
   sbi DDRA, DB5<br />
   cbi PORTA, DB4<br />
   sbi DDRA, DB4<br />
   cbi PORTA, E<br />
   sbi DDRA, E<br />
   cbi PORTA, RS<br />
   sbi DDRA, RS<br />
   ;<br />
   ; init LCD<br />
   ;<br />
   rcall lcd_init<br />
   ;<br />
   ; ldi count, 255<br />
      off_red_loop:<br />
         mov pwm, count<br />
         sbi PORTB, red<br />
         off_red_loop_off:<br />
            dec pwm<br />
            brne off_red_loop_off<br />
         mov pwm, count<br />
         cbi PORTB, red<br />
         off_red_loop_on:<br />
            inc pwm<br />
            brne off_red_loop_on<br />
         dec count<br />
         brne off_red_loop<br />
      ldi count, 255<br />
      red_green_loop:<br />
         mov pwm, count<br />
         cbi PORTB, red<br />
         sbi PORTB, green<br />
         red_green_loop_off:<br />
            dec pwm<br />
            brne red_green_loop_off<br />
         mov pwm, count<br />
         sbi PORTB, red<br />
         cbi PORTB, green<br />
         red_green_loop_on:<br />
            inc pwm<br />
            brne red_green_loop_on<br />
         dec count<br />
	      brne red_green_loop<br />
      green_blue_loop:<br />
         mov pwm, count<br />
         cbi PORTB, green<br />
         sbi PORTB, blue<br />
         green_blue_loop_off:<br />
            dec pwm<br />
            brne green_blue_loop_off<br />
         mov pwm, count<br />
         sbi PORTB, green<br />
         cbi PORTB, blue<br />
         green_blue_loop_on:<br />
            inc pwm<br />
            brne green_blue_loop_on<br />
         dec count<br />
         brne green_blue_loop<br />
      blue_on_loop:<br />
         mov pwm, count<br />
         sbi PORTB, red<br />
         sbi PORTB, green<br />
         blue_on_loop_off:<br />
            dec pwm<br />
            brne blue_on_loop_off<br />
         mov pwm, count<br />
         cbi PORTB, red<br />
         cbi PORTB, green<br />
         blue_on_loop_on:<br />
            inc pwm<br />
            brne blue_on_loop_on<br />
         dec count<br />
         brne blue_on_loop<br />
      on_off_loop:<br />
         mov pwm, count<br />
         cbi PORTB, red<br />
         cbi PORTB, green<br />
         cbi PORTB, blue<br />
         on_off_loop_off:<br />
            dec pwm<br />
            brne on_off_loop_off<br />
         mov pwm, count<br />
         sbi PORTB, red<br />
         sbi PORTB, green<br />
   ; main loop<br />
   ;<br />
   main:<br />
      ;<br />
      ; go to zero position<br />
      ;<br />
      clr lcdbyte<br />
      rcall lcd_putcmd<br />
      ldi lcdbyte, (1 << DB5)<br />
      rcall lcd_putcmd<br />
      ;<br />
      ; print first line<br />
      ;<br />
      ldi zl,low(line_1*2)<br />
      ldi zh,high(line_1*2)<br />
      rcall lcd_print<br />
      ;<br />
      ; move to second line<br />
      ;<br />
      ldi lcdbyte, (1 << DB7) + (1 << DB6)<br />
      rcall lcd_putcmd<br />
      clr lcdbyte<br />
      rcall lcd_putcmd<br />
      ;<br />
      ; print second line<br />
      ;<br />
      ldi zl,low(line_2*2)<br />
      ldi zh,high(line_2*2)<br />
      rcall lcd_print<br />
      ;<br />
      ; pause<br />
      ;<br />
      rcall long_delay<br />
      ;<br />
      ; clear display<br />
      ;<br />
      clr lcdbyte<br />
      rcall lcd_putcmd<br />
      ldi lcdbyte, (1 << DB4)<br />
      rcall lcd_putcmd<br />
      ;<br />
      ; repeat<br />
      ;<br />
      rjmp main</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Molding and Casting</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=64</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=64#comments</comments>
		<pubDate>Wed, 27 Jan 2010 22:04:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=64</guid>
		<description><![CDATA[

I.






From 3D molding



II.






From 3D molding



III.






From 3D molding



IV.






From 3D molding



V.






From 3D molding











]]></description>
			<content:encoded><![CDATA[<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input id="jsProxy" onclick="function onclick(event) { function onclick(event) { function onclick(event) { function onclick(event) { function onclick(event) { function onclick(event) { function onclick(event) { jsCall(); } } } } } } }" type="hidden" />
<p>I.</p>
<table style="height: 300px;" border="0" width="200">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/z1RUOXyF1GKOl_upwF_5pw?feat=embedwebsite"><img style="width: 670px; height: 487px;" src="http://lh5.ggpht.com/_uVo1HJcqySw/S198ZXaEawI/AAAAAAAAACc/G4ag5T-FQac/s800/1.jpg" alt="" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/girmabereketnesh6/3DMolding?feat=embedwebsite">3D molding</a></td>
</tr>
</tbody>
</table>
<p>II.</p>
<table style="width: auto;" border="0">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/UeBy38KtLofov4n5fmeahg?feat=embedwebsite"><img style="width: 665px; height: 482px;" src="http://lh4.ggpht.com/_uVo1HJcqySw/S198ZuKydDI/AAAAAAAAACg/J-XHYlDo-Go/s800/2.jpg" alt="" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/girmabereketnesh6/3DMolding?feat=embedwebsite">3D molding</a></td>
</tr>
</tbody>
</table>
<p>III.</p>
<table style="width: auto;" border="0">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/vhtk6toVz6-lbK7yaXH6vQ?feat=embedwebsite"><img src="http://lh4.ggpht.com/_uVo1HJcqySw/S198Zgu6NBI/AAAAAAAAACk/YANv2yNUUqg/s800/3.jpg" alt="" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/girmabereketnesh6/3DMolding?feat=embedwebsite">3D molding</a></td>
</tr>
</tbody>
</table>
<p>IV.</p>
<table style="width: auto;" border="0">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/jay5Gro5Uogc_VSC_DSP8g?feat=embedwebsite"><img src="http://lh5.ggpht.com/_uVo1HJcqySw/S198ZxGOrcI/AAAAAAAAACo/wZDcSwCraDk/s800/4.jpg" alt="" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/girmabereketnesh6/3DMolding?feat=embedwebsite">3D molding</a></td>
</tr>
</tbody>
</table>
<p>V.</p>
<table style="width: auto;" border="0">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/lbeCzDDuMEfP_W_vUwHyow?feat=embedwebsite"><img style="width: 626px; height: 454px;" src="http://lh4.ggpht.com/_uVo1HJcqySw/S198Z2sBuEI/AAAAAAAAACs/WvH58ovuIHE/s800/5.jpg" alt="" /></a></td>
</tr>
<tr>
<td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;">From <a href="http://picasaweb.google.com/girmabereketnesh6/3DMolding?feat=embedwebsite">3D molding</a></td>
</tr>
</tbody>
</table>
<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input id="jsProxy" onclick="function onclick(event) { function onclick(event) { function onclick(event) { function onclick(event) { jsCall(); } } } }" type="hidden" />
<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input id="jsProxy" onclick="function onclick(event) { function onclick(event) { function onclick(event) { jsCall(); } } }" type="hidden" />
<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input id="jsProxy" onclick="function onclick(event) { function onclick(event) { jsCall(); } }" type="hidden" />
<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input id="jsProxy" onclick="function onclick(event) { jsCall(); }" type="hidden" />
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big projects in barcelona</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=57</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=57#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:55:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=57</guid>
		<description><![CDATA[Dec 09 Projects Bcn
View more documents from bereketnesh.

Fablab Barcelona students have made different designs for something big project. The projects include different furnitures, products and expermental designs.
]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_2743050"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/bereketnesh/dec-09-projects-bcn" title="Dec 09 Projects Bcn">Dec 09 Projects Bcn</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=dec09-projectsbcn-091218065122-phpapp01&#038;stripped_title=dec-09-projects-bcn" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=dec09-projectsbcn-091218065122-phpapp01&#038;stripped_title=dec-09-projects-bcn" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/bereketnesh">bereketnesh</a>.</div>
</div>
<p>Fablab Barcelona students have made different designs for something big project. The projects include different furnitures, products and expermental designs.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=57</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Electronics design fabrication</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=53</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=53#comments</comments>
		<pubDate>Mon, 14 Dec 2009 15:28:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=53</guid>
		<description><![CDATA[Electro
View more documents from bereketnesh.

]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_2742954"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/bereketnesh/electro" title="Electro">Electro</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=electro-091218062707-phpapp01&#038;stripped_title=electro" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=electro-091218062707-phpapp01&#038;stripped_title=electro" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/bereketnesh">bereketnesh</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=53</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something Big</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=48</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=48#comments</comments>
		<pubDate>Thu, 10 Dec 2009 02:50:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=48</guid>
		<description><![CDATA[My Lounge Chr Design
View more documents from bereketnesh.

]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_2712269"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/bereketnesh/my-lounge-chr-design" title="My Lounge Chr Design">My Lounge Chr Design</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=myloungechrdesign-091213213544-phpapp02&#038;stripped_title=my-lounge-chr-design" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=myloungechrdesign-091213213544-phpapp02&#038;stripped_title=my-lounge-chr-design" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/bereketnesh">bereketnesh</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=48</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer controlled cutting</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=42</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=42#comments</comments>
		<pubDate>Thu, 10 Dec 2009 02:43:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=42</guid>
		<description><![CDATA[Press Fit Exercise
View more documents from bereketnesh.

]]></description>
			<content:encoded><![CDATA[<div id="__ss_2361906" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Press Fit Exercise" href="http://www.slideshare.net/bereketnesh/press-fit-exercise">Press Fit Exercise</a><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=press-fitexercise-091027190938-phpapp02&amp;stripped_title=press-fit-exercise" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=press-fitexercise-091027190938-phpapp02&amp;stripped_title=press-fit-exercise" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; padding-top: 2px; font-family: tahoma,arial; height: 26px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/bereketnesh">bereketnesh</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=42</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LED CLTHS</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=40</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=40#comments</comments>
		<pubDate>Wed, 14 Oct 2009 09:46:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[assignment -CAD]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=40</guid>
		<description><![CDATA[
The rotating accessory is LED connected to the cloth, which changes the color of the clothing and shows the temprature, the second is a footwear that will change its form by extending it to the upper and change the color as well.
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/L0LLKveuDRc&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/L0LLKveuDRc&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>The rotating accessory is LED connected to the cloth, which changes the color of the clothing and shows the temprature, the second is a footwear that will change its form by extending it to the upper and change the color as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=40</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semester project</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=18</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=18#comments</comments>
		<pubDate>Wed, 30 Sep 2009 11:31:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=18</guid>
		<description><![CDATA[My Project Fab
View more presentations from guest459ef86f.

Here are the project I proposed to be fabricated here in FabLab. The project is Lighting digital wearable designs which I thought I can go far with it.
]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_2095813"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/guest459ef86f/my-project-fab" title="My Project Fab">My Project Fab</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=myproject-fab-090930070930-phpapp02&#038;stripped_title=my-project-fab" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=myproject-fab-090930070930-phpapp02&#038;stripped_title=my-project-fab" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/guest459ef86f">guest459ef86f</a>.</div>
</div>
<p>Here are the project I proposed to be fabricated here in FabLab. The project is Lighting digital wearable designs which I thought I can go far with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=18</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activities done</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=14</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=14#comments</comments>
		<pubDate>Tue, 29 Sep 2009 14:14:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Addis!]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=14</guid>
		<description><![CDATA[Activities Done2
View more presentations from bereketnesh.

For FabLab Addis- Here are some activities done in FabLab Bcn and We will be posting each activities done every Friday.
]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_2090523"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/bereketnesh/activities-done2" title="Activities Done2">Activities Done2</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=activitiesdone2-090929103756-phpapp01&#038;stripped_title=activities-done2" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=activitiesdone2-090929103756-phpapp01&#038;stripped_title=activities-done2" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/bereketnesh">bereketnesh</a>.</div>
</div>
<p>For FabLab Addis- Here are some activities done in FabLab Bcn and We will be posting each activities done every Friday.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self-Reproducing machine</title>
		<link>http://blogs.fabfolk.com/bereketnesh/?p=9</link>
		<comments>http://blogs.fabfolk.com/bereketnesh/?p=9#comments</comments>
		<pubDate>Tue, 29 Sep 2009 08:42:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project I]]></category>

		<guid isPermaLink="false">http://blogs.fabfolk.com/bereketnesh/?p=9</guid>
		<description><![CDATA[Self Reproducing Machines
View more presentations from bereketnesh.

This is a self reproducing machine proposal
It condenses and distributes molecules in it by casting them inside. The inner and the outer shape is the same so that it duplicates it self. The proportion of distribution is a golden mean proportion which can be seen in plants and animals.
]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_2087421"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/bereketnesh/self-reproducing-machines-2087421" title="Self Reproducing Machines">Self Reproducing Machines</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=selfreproducingmachines-090929032714-phpapp01&#038;stripped_title=self-reproducing-machines-2087421" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=selfreproducingmachines-090929032714-phpapp01&#038;stripped_title=self-reproducing-machines-2087421" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/bereketnesh">bereketnesh</a>.</div>
</div>
<p>This is a self reproducing machine proposal<br />
It condenses and distributes molecules in it by casting them inside. The inner and the outer shape is the same so that it duplicates it self. The proportion of distribution is a golden mean proportion which can be seen in plants and animals.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.fabfolk.com/bereketnesh/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
