<?xml version="1.0"?>
<rss version="2.0">
<channel>

<title>shakthimaan.com</title>
<link>http://www.shakthimaan.com/news.xml</link>
<description>/news</description>
<webMaster>shakthimaan@gmail.com (Shakthi Kannan)</webMaster>

<!-- Recent feed -->
<item>
<title>Clojure meet</title>
<link>http://clojure.org</link>
<guid>http://clojure.org</guid>
<description>A hands-on workshop on &lt;a href=&quot;http://clojure.org/&quot;&gt;Clojure&lt;/a&gt; was organized in &lt;a href=&quot;http://www.ilughyd.org.in&quot;&gt;TwinCLinGs'&lt;/a&gt; August months' meet at &lt;a href=&quot;http://www.rhythm.com/india/overview.html&quot;&gt;Rhythm &amp; Hues Studios Pvt. Ltd&lt;/a&gt;, Hitech City, Hyderabad, India by &lt;a href=&quot;http://freegeek.in/blog/&quot;&gt;Bhaishampayan Ghose&lt;/a&gt;, co-founder and chief geek at &lt;a href=&quot;http://infinitelybeta.com/&quot;&gt;Infinitely Beta&lt;/a&gt;. A picture of the attendees:&lt;br /&gt;
&lt;img src=&quot;http://shakthimaan.com/downloads/glv/hyd/images/clojure-hyderabad-workshop-aug-29-2010.jpg&quot; alt=&quot;clojure meet attendees&quot;&gt;&lt;/img&gt;&lt;br /&gt;
The &lt;a href=&quot;http://www.slideshare.net/zaph0d/pune-clojure-course-outline&quot;&gt;slides&lt;/a&gt; are available. You can install clojure on Fedora using:
&lt;pre&gt;
  $ sudo yum install clojure
&lt;/pre&gt;
A clojure programming book is also available at &lt;a href=&quot;http://en.wikibooks.org/wiki/Clojure&quot;&gt;http://en.wikibooks.org/wiki/Clojure&lt;/a&gt; to get started! Thanks to volunteers who sponsored for Bhaishampayan Ghoses' travel, to and from Pune, India.&lt;br /&gt;
</description>
<pubDate>Mon, 30 Aug 2010 18:00:00 GMT</pubDate>
</item>

<item>
<title>KMR Foundation</title>
<link>http://shakthimaan.com/downloads/glv/hyd/olpc/1-tuxmath.jpg</link>
<guid>http://shakthimaan.com/downloads/glv/hyd/olpc/1-tuxmath.jpg</guid>
<description>Visited &lt;a href=&quot;http://www.kmrfoundation.org/&quot;&gt;KMRF&lt;/a&gt; who needed assistance in installation, troubleshooting, and use of the &lt;a href=&quot;http://wiki.laptop.org/go/Home&quot;&gt;XO&lt;/a&gt; laptops. I had a chance to visit the Government school in Aziznagar, Ranga Reddy district, Andhra Pradesh, India, where they have their XO laptop deployment. Most of the students can speak only in Telugu. They have a chart in the classroom for English-Telugu reference.&lt;br /&gt;
&lt;img src=&quot;http://shakthimaan.com/downloads/glv/hyd/olpc/2-text-reference.jpg&quot; alt=&quot;olpc text chart&quot;&gt;&lt;/img&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.geekcomix.com/dm/tuxmath/gallery/&quot;&gt;Tuxmath&lt;/a&gt; was installed, and they enjoy using it a lot:&lt;br /&gt;
&lt;img src=&quot;http://shakthimaan.com/downloads/glv/hyd/olpc/1-tuxmath.jpg&quot; alt=&quot;olpc text chart&quot;&gt;&lt;/img&gt;&lt;br /&gt;
</description>
<pubDate>Sun, 22 Aug 2010 06:00:00 GMT</pubDate>
</item>

<item>
<title>nesC</title>
<link>http://nescc.sourceforge.net/</link>
<guid>http://nescc.sourceforge.net/</guid>
<description>&lt;a href=&quot;http://nescc.sourceforge.net/&quot;&gt;nesC&lt;/a&gt; is now available for Fedora. It is an extension to the C programming language designed for use with &lt;a href=&quot;http://www.tinyos.net/&quot;&gt;TinyOS&lt;/a&gt;, which is used in wireless sensor networks. Install it using:
&lt;pre&gt;
  $ sudo yum --enablerepo=updates-testing update nesc
&lt;/pre&gt;
It could not be shipped with Fedora earlier because it used the now deprecated &lt;a href=&quot;http://www.opensource.org/licenses/intel-open-source-license.php&quot;&gt;Intel Open Source license&lt;/a&gt;. Thanks to &lt;a href=&quot;http://www.barnowl.org/&quot;&gt;David Gay&lt;/a&gt; and &lt;a href=&quot;http://csl.stanford.edu/~pal/&quot;&gt;Philip Levis&lt;/a&gt;, it has now been updated with dual BSD/GPL license. There is also support for GNU Emacs with the emacs-nesc package.
&lt;pre&gt;
  $ sudo yum --enablerepo=updates-testing update emacs-nesc
&lt;/pre&gt;
Here is a screenshot of GNU Emacs with syntax highlighting in nesc-mode:
&lt;img src=&quot;http://www.shakthimaan.com/downloads/screenshots/emacs-nesc-screenshot.png&quot; alt=&quot;Emacs nesc screenshot&quot;&gt;&lt;/img&gt;&lt;br /&gt;
</description>
<pubDate>Tue, 17 Aug 2010 03:30:00 GMT</pubDate>
</item>

<item>
<title>Teal</title>
<link>http://www.trusster.com/products/teal</link>
<guid>http://www.trusster.com/products/teal</guid>
<description>&lt;a href=&quot;http://www.trusster.com/products/teal/&quot;&gt;Teal&lt;/a&gt;, the popular verification utility and connection library is now available for Fedora:
&lt;pre&gt;
  $ sudo yum install teal
&lt;/pre&gt;
It is a C++ multithreaded library to verify verilog designs. It deals with simulation logging, error reporting, threading, memory model management. It basically provides all the low level building blocks needed to start a verification environment. A simple example:
&lt;pre&gt;
#include &lt;teal.h&gt;
using namespace teal;
int verification_top ()
{
  vreg clock (“testbench.clk”);
  vout log (“Chapter 4- Example 1”);
  dictionary::start (“simple_clock_test.txt”);
  uint number_of_periods (dictionary::find (“number_of_clocks”,20));
  for (int i(0); i &lt; number_of_periods; ++i)  {
    log &lt;&lt; note &lt;&lt; “i is “ &lt;&lt; i &lt;&lt; clock is &lt;&lt; clock &lt;&lt; endm;
  }
  dictionary::stop ();
  vlog::get (expected) &lt;&lt; “test completed” &lt;&lt; endl;
}
&lt;/pre&gt;
It is released under the Trusster open source license, but, that is incompatible with the GPL. But, thanks to the founders of Trusster.com, &lt;a href=&quot;http://www.trusster.com/welcome/about/&quot;&gt;Mike Mintz and Robert Ekendahl&lt;/a&gt;, who agreed to release the same under the LGPLv2+ and GPLv2+ license for Fedora!&lt;br /&gt;
</description>
<pubDate>Mon, 02 Aug 2010 19:00:00 GMT</pubDate>
</item>

<item>
<title>Computational Fluid Dynamics General Notation System</title>
<link>http://cgns.sourceforge.net</link>
<guid>http://cgns.sourceforge.net</guid>
<description>The &lt;a href=&quot;http://cgns.sourceforge.net/&quot;&gt;Computational Fluid Dynamics General Notation System&lt;/a&gt; (CGNS) library is now available in Fedora under the zlib license. Install it using:
&lt;pre&gt;
  $ yum install cgnslib
&lt;/pre&gt;
It provides a general, portable, and extensible standard for the storage and retrieval of computational fluid dynamics (CFD) analysis data. It consists of a collection of conventions, and free and open software implementing those conventions. It is self-descriptive, machine-independent, &lt;a href=&quot;http://www.grc.nasa.gov/WWW/cgns/user/index.html&quot;&gt;well-documented&lt;/a&gt;, and administered by an international &lt;a href=&quot;http://cgns.sourceforge.net/steering.html&quot;&gt;Steering Committee&lt;/a&gt;.&lt;br /&gt;
</description>
<pubDate>Tue, 20 Jul 2010 13:00:00 GMT</pubDate>
</item>

    
<item>
<title>Chalmers Lava2000</title>
<link>http://hackage.haskell.org/package/chalmers-lava2000</link>
<guid>http://hackage.haskell.org/package/chalmers-lava2000</guid>
<description>&lt;a href=&quot;http://hackage.haskell.org/package/chalmers-lava2000&quot;&gt;Chalmers Lava2000&lt;/a&gt;, a hardware description library in Haskell is now available for Fedora. Thanks to &lt;a href=&quot;http://www.cse.chalmers.se/~emax/index.html&quot;&gt;Emil Axelsson&lt;/a&gt; and &lt;a href=&quot;http://fedoraproject.org/wiki/JensPetersen&quot;&gt;Jens Peterson&lt;/a&gt; for their feedback, and package review. You can install the same using:
&lt;pre&gt;
$ sudo yum install ghc-chalmers-lava2000       \
                   ghc-chalmers-lava2000-devel \
                   ghc-chalmers-lava2000-doc
&lt;/pre&gt;
To illustrate a half adder example with the use of the Lava library, create a Test.hs file:
&lt;pre&gt;
import Lava

halfAdd (a, b) = (sum, carry)
  where
    sum   = xor2 (a, b)
    carry = and2 (a, b)
&lt;/pre&gt;
Load it with ghci (Glasgow Haskell Compiler):
&lt;pre&gt;
$ ghci Test.hs

GHCi, version 6.12.2: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Loading package ffi-1.0 ... linking ... done.
[1 of 1] Compiling Main             ( Test.hs, interpreted )
Ok, modules loaded: Main.
&lt;/pre&gt;
Test half adder with low, high inputs using:
&lt;pre&gt;
*Main> simulate halfAdd(low, high)
Loading package syb-0.1.0.2 ... linking ... done.
Loading package base-3.0.3.2 ... linking ... done.
Loading package array-0.3.0.0 ... linking ... done.
Loading package filepath-1.1.0.3 ... linking ... done.
Loading package old-locale-1.0.0.2 ... linking ... done.
Loading package old-time-1.0.0.3 ... linking ... done.
Loading package unix-2.4.0.0 ... linking ... done.
Loading package directory-1.0.1.0 ... linking ... done.
Loading package process-1.0.1.2 ... linking ... done.
Loading package time-1.1.4 ... linking ... done.
Loading package random-1.0.0.2 ... linking ... done.
Loading package haskell98 ... linking ... done.
Loading package chalmers-lava2000-1.1.1 ... linking ... done.
(high,low)
*Main> 
&lt;/pre&gt;
Testing half adder with high, high inputs gives:
&lt;pre&gt;
*Main> simulate halfAdd(high, high)
(low,high)
&lt;/pre&gt;
You can also generate vhdl file using:
&lt;pre&gt;
*Main> writeVhdl "halfAdd" halfAdd

Loading package syb-0.1.0.2 ... linking ... done.
Loading package base-3.0.3.2 ... linking ... done.
Loading package array-0.3.0.0 ... linking ... done.
Loading package filepath-1.1.0.4 ... linking ... done.
Loading package old-locale-1.0.0.2 ... linking ... done.
Loading package old-time-1.0.0.4 ... linking ... done.
Loading package unix-2.4.0.1 ... linking ... done.
Loading package directory-1.0.1.1 ... linking ... done.
Loading package process-1.0.1.2 ... linking ... done.
Loading package time-1.1.4 ... linking ... done.
Loading package random-1.0.0.2 ... linking ... done.
Loading package haskell98 ... linking ... done.
Loading package chalmers-lava2000-1.1.1 ... linking ... done.
Writing to file "halfAdd.vhd" ... Done.
&lt;/pre&gt;
Copy /usr/share/chalmers-lava2000-1.1.1/Vhdl/lava.vhd to your project directory, and you can verify the generated halfAdd.vhd with it using &lt;a href=&quot;http://ghdl.free.fr/&quot;&gt;ghdl&lt;/a&gt;:
&lt;pre&gt;
$ ghdl -a lava.vhd
$ ghdl -a halfAdd.vhd 
$
&lt;/pre&gt;
You are encouraged to read the &lt;a href=&quot;http://www.cse.chalmers.se/edu/course/TDA956/Papers/lava-tutorial.ps&quot;&gt;&quot;Slightly Revised Tutorial on Lava&quot;&lt;/a&gt; by &lt;a href=&quot;http://www.chalmers.se/cse/EN/people/claessen-koen&quot;&gt;Koen Claessen&lt;/a&gt;, and &lt;a href=&quot;http://www.cse.chalmers.se/~ms/&quot;&gt;Mary Sheeran&lt;/a&gt; for more detailed documentation on using the library.&lt;br /&gt;
</description>
<pubDate>Thu, 01 Jul 2010 11:00:00 GMT</pubDate>
</item>
    
<item>
<title>Hardware Complexity Tool</title>
<link>http://hct.sf.net</link>
<guid>http://hct.sf.net</guid>
<description>&lt;a href=&quot;http://hct.sourceforge.net/index.html&quot;&gt;Hardware Complexity Tool&lt;/a&gt; (hct) is now available for Fedora. It generates scores that represent the complexity of the modules of integrated circuit design projects. It uses &lt;a href=&quot;http://www.literateprogramming.com/mccabe.pdf&quot;&gt;McCabes' cyclomatic complexity&lt;/a&gt; for understanding branch complexity. You can run hct on verilog, vhdl, cdl (computer design language) files or directories that contain these files. For example:&lt;br /&gt;
&lt;pre&gt;
$ hct verilog
Directory: /tmp/verilog

verilog, 18 file(s)
+--------------------+--------------+------+-------+----------+--------+
| FILENAME           | MODULE       | IO   | NET   | MCCABE   | TIME   |
+--------------------+--------------+------+-------+----------+--------+
| Case.v                              0      0       18         0.1504 |
|                      case           0      0       18                |
+----------------------------------------------------------------------+
| modules.v                           1      0       2          0.0137 |
|                      m1             1      0       1                 |
|                      m2             0      0       1                 |
+----------------------------------------------------------------------+
| RAM.v                               7      0       4          0.1653 |
|                      RAM            7      0       4                 |
+----------------------------------------------------------------------+
| hello_world.v                       0      0       1          0.0113 |
|                      hello_world    0      0       1                 |
+----------------------------------------------------------------------+
| one_day2.v                          0      0       2          0.0423 |
|                      one_day2       0      0       2                 |
+----------------------------------------------------------------------+
| S430.v                              13     4       1          0.2438 |
|                      S430           13     4       1                 |
+----------------------------------------------------------------------+
| one_day3.v                          0      0       4          0.0305 |
|                      one_day3       0      0       4                 |
+----------------------------------------------------------------------+
| first_counter.v                     4      3       3          0.0765 |
|                      first_~unter   4      3       3                 |
+----------------------------------------------------------------------+
| Multiplier.v                        7      4       1          0.1646 |
|                      Multiplier     7      4       1                 |
+----------------------------------------------------------------------+
| Sys430.v                            10     12      9          0.5017 |
|                      Sys430         3      12      5                 |
|                      LEDTest        7      0       4                 |
+----------------------------------------------------------------------+
| first_counter_tb.v                  0      1       1          0.0279 |
|                      first_~er_tb   0      1       1                 |
+----------------------------------------------------------------------+
| longtest.v                          9      5       12         2.1130 |
|                      RAMB16_S9      9      5       12                |
+----------------------------------------------------------------------+
| GPR.v                               8      0       3          0.1039 |
|                      GPR            8      0       3                 |
+----------------------------------------------------------------------+
| encoder_u~g_case.v                  3      0       16         0.1384 |
|                      encode~_case   3      0       16                |
+----------------------------------------------------------------------+
| RAMB16_S9.v                         9      5       12         2.0922 |
|                      RAMB16_S9      9      5       12                |
+----------------------------------------------------------------------+
| comment.v                           0      0       1          0.0264 |
|                      comment        0      0       1                 |
+----------------------------------------------------------------------+
| encoder_using_if.v                  3      0       17         0.1941 |
|                      encode~ng_if   3      0       17                |
+----------------------------------------------------------------------+
| MUX2.v                              0      0       1          0.0035 |
|                      INV            0      0       1                 |
+----------------------------------------------------------------------+
&lt;/pre&gt;
</description>
<pubDate>Fri, 18 Jun 2010 23:00:00 GMT</pubDate>
</item>


<item>
<title>First blog post after marriage!</title>
<link>http://www.shakthimaan.com/installs/dell-vostro-1310.html</link>
<guid>http://www.shakthimaan.com/installs/dell-vostro-1310.html</guid>
<description>
First blog post after marriage! Have updated my Dell Vostro 1310 to Fedora rawhide. The relevant &lt;a href=&quot;http://www.shakthimaan.com/installs/dell-vostro-1310.html&quot;&gt; configuration outputs&lt;/a&gt; are now made available:&lt;br /&gt;
&lt;a href=&quot;http://www.shakthimaan.com/downloads/laptop/dell-vostro-1310/f13/lspci.txt&quot;&gt;/sbin/lspci&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.shakthimaan.com/downloads/laptop/dell-vostro-1310/f13/lsmod.txt&quot;&gt;/sbin/lsmod&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.shakthimaan.com/downloads/laptop/dell-vostro-1310/f13/menu.lst.txt&quot;&gt;/boot/grub/menu.lst&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.shakthimaan.com/downloads/laptop/dell-vostro-1310/f13/dmesg.txt&quot;&gt;dmesg&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Updating tcl to tcl-8.5.8-2.fc14 solves &lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=540296&quot;&gt;540296&lt;/a&gt;. One can now do:&lt;br /&gt;
&lt;pre&gt;
$ tclsh
% package require Tk
&lt;/pre&gt;
Running &quot;mcu8051ide --check-libraries&quot; should now be clean on Fedora:
&lt;pre&gt;
Checking libraries...
	1/9 Checking for library BWidget
		Library present	... YES
		Version 1.7	... YES
	2/9 Checking for library Itcl
		Library present	... YES
		Version 3.4	... YES
	3/9 Checking for library Tcl
		Library present	... YES
		Version 8.2	... YES
	4/9 Checking for library md5
		Library present	... YES
		Version 2.0	... YES
	5/9 Checking for library crc16
		Library present	... YES
		Version 1.1	... YES
	6/9 Checking for library Tk
		Library present	... YES
		Version 8.5	... YES
	7/9 Checking for library img::png
		Library present	... YES
		Version 1.3	... YES
	8/9 Checking for library tdom
		Library present	... YES
		Version 0.8	... YES
	9/9 Checking for library Tclx
		Library present	... YES
		Version 8.0	... YES
RESULTS:
	Number of fails: 0
	Everything seems ok
&lt;/pre&gt;
Pushed recent &lt;a href=&quot;http://mcu8051ide.sf.net&quot;&gt;mcu8051ide&lt;/a&gt; 1.3.7 and &lt;a href=&quot;http://vrq.sf.net&quot;&gt;vrq&lt;/a&gt; 1.0.76 to Fedora repository.&lt;br /&gt;
</description>
<pubDate>Wed, 16 Jun 2010 14:00:00 GMT</pubDate>
</item>


    
<item>
<title>Blender meet, Hyderabad</title>
<link>http://shakthimaan.com/downloads/glv/hyd/blender-hyderabad-meet-may-16-2010.png</link>
<guid>http://shakthimaan.com/downloads/glv/hyd/blender-hyderabad-meet-may-16-2010.png</guid>
<description>Attended May months' &lt;a href=&quot;http://ilughyd.org.in/&quot;&gt;Hyderabad user group&lt;/a&gt; meeting on Sunday, May 16, 2010 at:&lt;br /&gt;
&lt;pre&gt;
Rhythm &amp; Hues Studios India Pvt. Ltd.
The V, Vega Block, 11th Floor,
Left Wing, Plot No - 17, Software Units Layout
HITEC City, Madhapur, 
Hyderabad 500 081
India
&lt;/pre&gt;
Satish &quot;iloveblender&quot; Goda gave a very informative talk about the history of the &lt;a href=&quot;http://www.blender.org/&quot;&gt;Blender&lt;/a&gt; project, &lt;a href=&quot;http://www.blender.org/features-gallery/blender-open-projects/&quot;&gt;animation movies created&lt;/a&gt; using the Blender software, pipelines involved in animation movie production, and on how the blender community functions in producing open animation movies with the guidance of &lt;a href=&quot;http://www.blender.org/blenderorg/blender-foundation/history/&quot;&gt;Ton Roosendaal&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;

Their open animation movie projects are code named after names of fruits. One interesting aspect is that before starting on a new movie project, one can pay and pre-order the DVD, and your name is added to the credits when the movie is released. This funding also helps the team in producing the movie!&lt;br /&gt;&lt;br /&gt;

Thanks to the Management of Rhythm &amp; Hues Studios India Pvt. Ltd. for hosting our user group meet at their auditorium. Special thanks to "cheedhu" and "iloveblender" for initiating the effort. We hope to have more sessions of blender and other F/OSS sessions at this venue.&lt;br /&gt;&lt;br /&gt;

A photo taken at the end of the session:&lt;br /&gt;
&lt;img src=&quot;http://shakthimaan.com/downloads/glv/hyd/blender-hyderabad-meet-may-16-2010.png&quot; alt=&quot;blender meet photo&quot;&gt;&lt;/img&gt;&lt;br /&gt;
</description>
<pubDate>Mon, 17 May 2010 14:30:00 GMT</pubDate>
</item>

    
<item>
<title>KMR Foundation</title>
<link>http://www.kmrfoundation.org</link>
<guid>http://www.kmrfoundation.org</guid>
<description>Visited &lt;a href=&quot;http://www.sreenidhiinternational.com/&quot;&gt;Sreenidhi International School&lt;/a&gt; and members of the &lt;a href=&quot;http://www.kmrfoundation.org/&quot;&gt;KMR Foundation&lt;/a&gt; today, Saturday, May 8, 2010 in Hyderabad. They have &lt;a href=&quot;http://laptop.org/en/&quot;&gt;OLPC&lt;/a&gt; XOs that they are using for class(grade) IV students in a school near their premises at Aziznagar, Ranga Reddy district, Andhra Pradesh, India. They require support for Telugu language and use of XO software for the school students. Here is a screenshot of one of the XOs:&lt;br /&gt;
&lt;img alt=&quot;olpc xo&quot; src=&quot;http://shakthimaan.com/downloads/glv/hyd/olpc/olpc-xo.png&quot;&gt;&lt;/img&gt;&lt;br /&gt;
</description>
<pubDate>Sat, 08 May 2010 21:00:00 GMT</pubDate>
</item>

<item>
<title>perl-Sys-CPU</title>
<link>http://search.cpan.org/~mkoderer/Sys-CPU/CPU.pm</link>
<guid>http://search.cpan.org/~mkoderer/Sys-CPU/CPU.pm</guid>
<description>Pushed &lt;a href=&quot;http://search.cpan.org/~mkoderer/Sys-CPU/CPU.pm/&quot;&gt;perl-Sys-CPU&lt;/a&gt; to Fedora repository. You can use it like:&lt;br /&gt;
&lt;pre&gt;
use Sys::CPU;
  
$number_of_cpus = Sys::CPU::cpu_count();
printf("I have %d CPU's\n", $number_of_cpus);

print "  Speed : ", Sys::CPU::cpu_clock(), "\n";
print "  Type  : ", Sys::CPU::cpu_type(), "\n";
&lt;/pre&gt;
</description>
<pubDate>Fri, 07 May 2010 01:00:00 GMT</pubDate>
</item>

<item>
<title>\newcommand macro substitution</title>
<link>http://gitorious.org/di-git-ally-managing-love-letters</link>
<guid>http://gitorious.org/di-git-ally-managing-love-letters</guid>
<description>Used \newcommand to abstract the four actor names in &lt;a href=&quot;http://shakthimaan.com/downloads.html#di-git-ally-managing-love-letters&quot;&gt;di-git-ally managing love letters&lt;/a&gt; presentation:&lt;br /&gt;
&lt;pre&gt;
\newcommand{\oneactor}{pretty-zinta}
\newcommand{\twoactor}{raaani-mukerji}
\newcommand{\threeactor}{nayantaaara}
\newcommand{\fouractor}{aishvarya-ray}
&lt;/pre&gt;
You can now get the &lt;a href=&quot;http://gitorious.org/di-git-ally-managing-love-letters&quot;&gt;sources from gitorious&lt;/a&gt;, and replace the above names to your liking, and rebuild the presentation by invoking &lt;em&gt;make&lt;/em&gt; from the sources directory.&lt;br /&gt;
</description>
<pubDate>Wed, 21 Apr 2010 00:22:00 GMT</pubDate>
</item>

<item>
<title>mcu8051ide 1.3.5</title>
<link>http://mcu8051ide.sourceforge.net/</link>
<guid>http://mcu8051ide.sourceforge.net/</guid>
<description>Pushed recent &lt;a href=&quot;http://mcu8051ide.sourceforge.net/&quot;&gt;mcu8051ide&lt;/a&gt; 1.3.5 package to Fedora repository that has bug fixes.
&lt;br /&gt;
</description>
<pubDate>Tue, 13 Apr 2010 00:11:00 GMT</pubDate>
</item>

<item>
<title>Fedora Summer Coding 2010, DGC GTK+ GUI</title>
<link>https://fedoraproject.org/wiki/Category:Summer_Coding_2010_ideas#DGC_GTK_GUI</link>
<guid>https://fedoraproject.org/wiki/Category:Summer_Coding_2010_ideas#DGC_GTK_GUI</guid>
<description>Inviting prospective students for Digital Gate Compiler (DGC) GTK+ GUI implementation for &lt;a href=&quot;https://fedoraproject.org/wiki/Category:Summer_Coding_2010&quot;&gt;Fedora Summer Coding 2010&lt;/a&gt;. More details are available at &lt;a href=&quot;https://fedoraproject.org/wiki/Summer_Coding_2010_ideas_-_DGC_GTK_GUI&quot;&gt;Summer Coding 2010 - DGC GTK GUI&lt;/a&gt;.
&lt;br /&gt;
</description>
<pubDate>Mon, 12 Apr 2010 00:10:00 GMT</pubDate>
</item>

<item>
<title>vrq 1.0.74</title>
<link>http://vrq.sf.net/</link>
<guid>http://vrq.sf.net/</guid>
<description>Pushed recent &lt;a href=&quot;http://vrq.sourceforge.net/&quot;&gt;VRQ&lt;/a&gt; (Verilog Parser) 1.0.74 package to Fedora repository.
&lt;br /&gt;
</description>
<pubDate>Mon, 05 Apr 2010 00:22:30 GMT</pubDate>
</item>

</channel>
</rss>
