<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.linux.redhat.fedora.electroniclab">
    <title>gmane.linux.redhat.fedora.electroniclab</title>
    <link>http://blog.gmane.org/gmane.linux.redhat.fedora.electroniclab</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/477"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/474"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/471"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/470"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/469"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/466"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/464"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/463"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/462"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/461"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/460"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/459"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/454"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/453"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/452"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/451"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/450"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/448"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/444"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/442"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/477">
    <title>[free-electronic-lab] asimut: Getting a ?u in the output patternwith structural simulation</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/477</link>
    <description>&lt;pre&gt;Hi,

I have the following code for an inverter:

============================
--inverter (NOT) gate
entity invg is port
(
  a   : in  bit;
  x   : out bit;
  vdd : in bit;
  vss : in bit
);
end invg;

architecture vbe of invg is begin
  x &amp;lt;= not (a);
end vbe;
============================

I saved this in invg.vbe Next I ran the following commands:
  boom -l 3 -d invg
  boog invg_o invg -x 1 -m 2

This resulted in the file invg.vst which contains the following:

============================
entity invg is
   port (
      a   : in      bit;
      x   : out     bit;
      vdd : in      bit;
      vss : in      bit
 );
end invg;

architecture structural of invg is
Component inv_x2
   port (
      i   : in      bit;
      nq  : out     bit;
      vdd : in      bit;
      vss : in      bit
 );
end component;


begin

x_ins : inv_x2
   port map (
      i   =&amp;gt; a,
      nq  =&amp;gt; x,
      vdd =&amp;gt; vdd,
      vss =&amp;gt; vss
   );


end structural;
============================

I now created a pattern to drive the input. Howeve&lt;/pre&gt;</description>
    <dc:creator>Ashwith Rego</dc:creator>
    <dc:date>2012-05-20T09:29:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/474">
    <title>[free-electronic-lab] asimut core dumps when there is a save in thepattern file</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/474</link>
    <description>&lt;pre&gt;Hi,

I was trying a structural simulation using asimut (I've attached the
files in mux.tar). The files andg.vst, org.vst and invg.vst were
generated by boog.I ran the following command:
    asimut mux mux_in mux_out

The output I got is the following:
###----- processing pattern 0 : 0 ps -----###
###----- processing pattern 1 : 0 ps -----###
###----- processing pattern 2 : 0 ps -----###
###----- processing pattern 3 : 0 ps -----###
###----- processing pattern 4 : 0 ps -----###
###----- processing pattern 5 : 0 ps -----###
###----- processing pattern 6 : 0 ps -----###
###----- processing pattern 7 : 0 ps -----###
###----- processing pattern 8 : 0 ps -----###
###----- processing pattern 9 : 0 ps -----###
###----- processing pattern 10 : 0 ps -----###
###----- processing pattern 11 : 0 ps -----###
###----- processing pattern 12 : 0 ps -----###
###----- processing pattern 13 : 0 ps -----###
###----- processing pattern 14 : 0 ps -----###
###----- processing pattern 15 : 0 ps -----###
Segmentation fault (core du&lt;/pre&gt;</description>
    <dc:creator>Ashwith Rego</dc:creator>
    <dc:date>2012-05-19T17:41:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/471">
    <title>[free-electronic-lab] gnucap and ngspice usage and feedback</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/471</link>
    <description>&lt;pre&gt;If you have used gnucap and/or ngspice, what has been your experience with
the usage of these tools for simulation especially of larger analog blocks
regarding the tool's speed, accuracy, issues with convergence etc? I will
appreciate the valuable feedback form this forum.

Thanks,
_______________________________________________
electronic-lab mailing list
electronic-lab&amp;lt; at &amp;gt;lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/electronic-lab&lt;/pre&gt;</description>
    <dc:creator>Yusuf Matcheswala</dc:creator>
    <dc:date>2012-05-17T21:42:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/470">
    <title>[free-electronic-lab] Xilinx System Generator Alternative</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/470</link>
    <description>&lt;pre&gt;Hi,

I have two questions.

1. Are there any alternatives to Xilinx's System generator? Possibly
something that converts octave or scilab (preferably xcos) code to
VHDL or Verilog.
2. What sort of support is available for SystemVerilog in FEL?

Thanks
Ashwith J. Rego
-----------------
My Webpage: http://ashwith.wordpress.com/
Find me on LinkedIn at: http://www.linkedin.com/in/ashwith
Follow Me on Twitter at: http://twitter.com/Louisda16th
_______________________________________________
electronic-lab mailing list
electronic-lab&amp;lt; at &amp;gt;lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/electronic-lab&lt;/pre&gt;</description>
    <dc:creator>Ashwith Rego</dc:creator>
    <dc:date>2012-05-13T13:34:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/469">
    <title>[free-electronic-lab] FEL added to easyfix</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/469</link>
    <description>&lt;pre&gt;Hi,

I have added Fedora Electronic Lab Trac to easyfix:

  http://fedoraproject.org/easyfix/#fedora-electronic-lab

If there is a particular task/ticket that is easy for newbies to get
started with, one needs to add the word "easyfix" in the keyword
section of the ticket, and it will show up at the above URL.

Regards,

SK

&lt;/pre&gt;</description>
    <dc:creator>Shakthi Kannan</dc:creator>
    <dc:date>2012-05-04T16:30:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/466">
    <title>[free-electronic-lab] Help with installation</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/466</link>
    <description>&lt;pre&gt;I have serious problems with the live-cd just blows up in intalacion and not
actual mind is wrong, someone can help me

 "Primero Muerto Antes de Dejar Algo Inconcluso"

Jose Carlos Garcia Diaz

My profiles: [image: Facebook] &amp;lt;http://www.facebook.com/chepecarlos&amp;gt; [image:
WordPress] &amp;lt;http://alsw.wordpress.com/&amp;gt; [image:
Twitter]&amp;lt;http://twitter.com/alswBlog&amp;gt; [image:
devianArt] &amp;lt;http://chepecarlos.deviantart.com/&amp;gt; [image: Google
Plus]&amp;lt;https://plus.google.com/107649588304660451493/&amp;gt;
Contact me: [image: Google Talk] feliciachepe&amp;lt; at &amp;gt;gmail.com [image:
Skype]carlos.garcia.expor [image:
MSN] feliciachepe&amp;lt; at &amp;gt;hotmail.com [image: Google Talk] chepecarlos&amp;lt; at &amp;gt;alswblog.org
Mis ultima aporte en ALSW(Anime y linux): Un css para vestidos gala
:)&amp;lt;http://alswblog.org/2012/05/01/un-css-para-vestidos-gala/&amp;gt;
_______________________________________________
electronic-lab mailing list
electronic-lab&amp;lt; at &amp;gt;lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/electronic-lab&lt;/pre&gt;</description>
    <dc:creator>Jose Carlos Garcia Diaz</dc:creator>
    <dc:date>2012-05-04T06:39:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/464">
    <title>[free-electronic-lab] Test: FEL F17 Nightly build</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/464</link>
    <description>&lt;pre&gt;Hi,

I would appreciate if anyone could install and test the F17 Fedora
Electronic Lab nightly spin and report any issues:

  http://alt.fedoraproject.org/pub/alt/nightly-composes/

  http://koji.fedoraproject.org/koji/taskinfo?taskID=3940839

Thanks!

SK

&lt;/pre&gt;</description>
    <dc:creator>Shakthi Kannan</dc:creator>
    <dc:date>2012-04-05T23:57:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/463">
    <title>[free-electronic-lab] Tools used by EE,IITM for semiconductor device modelling</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/463</link>
    <description>&lt;pre&gt;Hi,

Some of the tools required/used by EE, IIT, Madras [1] for
semiconductor device modelling:

1. Linear algebra

- gmm++  http://home.gna.org/getfem/download.html

  $ sudo yum install gmm-devel

2. Finite element libraries

- getfem++ http://download.gna.org/getfem/html/homepage/
- libmesh http://libmesh.sourceforge.net/
- deal.II  http://www.dealii.org/

  Need to be packaged. Tickets at:
  https://fedorahosted.org/fedora-electronic-lab/ticket/122
  https://fedorahosted.org/fedora-electronic-lab/ticket/123
  https://fedorahosted.org/fedora-electronic-lab/ticket/124

3. Meshing tools

- Gmsh http://geuz.org/gmsh/

  Need to be packaged. Ticket at:
  https://fedorahosted.org/fedora-electronic-lab/ticket/125

4. Visualization tools

- Paraview http://www.paraview.org/
- VisIt https://wci.llnl.gov/codes/visit/

  $ sudo yum install paraview

  VisIt needs to be packaged. Ticket is at:
  https://fedorahosted.org/fedora-electronic-lab/ticket/99

5. Drawing / Presentation

- sketch http://www.frontiernet.net/~&lt;/pre&gt;</description>
    <dc:creator>Shakthi Kannan</dc:creator>
    <dc:date>2012-02-22T06:28:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/462">
    <title>[free-electronic-lab] [Free Electronic Lab] #125: Package gmsh</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/462</link>
    <description>&lt;pre&gt;#125: Package gmsh
-------------------------+-----------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  EPEL-6
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+-----------------------
 Gmsh is a 3D finite element grid generator with a build-in CAD engine and
 post-processor. Its design goal is to provide a fast, light and user-
 friendly meshing tool with parametric input and advanced visualization
 capabilities. Gmsh is built around four modules: geometry, mesh, solver
 and post-processing. The specification of any input to these modules is
 done either interactively using the graphical user interface or in ASCII
 text files using Gmsh's own scripting language.

 http://geuz.org/gmsh/

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-22T06:23:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/461">
    <title>[free-electronic-lab] [Free Electronic Lab] #124: Package deal.II</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/461</link>
    <description>&lt;pre&gt;#124: Package deal.II
-------------------------+-----------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  EPEL-6
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+-----------------------
 deal.II is a C++ program library targeted at the computational solution of
 partial differential equations using adaptive finite elements. It uses
 state-of-the-art programming techniques to offer you a modern interface to
 the complex data structures and algorithms required.

 http://dealii.org/

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-22T06:21:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/460">
    <title>[free-electronic-lab] [Free Electronic Lab] #123: Package libmesh</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/460</link>
    <description>&lt;pre&gt;#123: Package libmesh
-------------------------+-----------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  EPEL-6
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+-----------------------
 The libMesh library provides a framework for the numerical simulation of
 partial differential equations using arbitrary unstructured
 discretizations on serial and parallel platforms. A major goal of the
 library is to provide support for adaptive mesh refinement (AMR)
 computations in parallel while allowing a research scientist to focus on
 the physics they are modeling.

 http://libmesh.sourceforge.net/

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-22T06:20:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/459">
    <title>[free-electronic-lab] [Free Electronic Lab] #122: Package GetFEM++</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/459</link>
    <description>&lt;pre&gt;#122: Package GetFEM++
-------------------------+-----------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  EPEL-6
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+-----------------------
 GetFEM++ is basically a generic C++ finite element library which aims to
 offer the widest range of finite element methods and elementary matrix
 computations for the approximation of linear or non-linear problems,
 possibly in hybrid form and possibly coupled

 http://download.gna.org/getfem/html/homepage/

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-22T06:18:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/454">
    <title>[free-electronic-lab] [Free Electronic Lab] #121: Package data-reify</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/454</link>
    <description>&lt;pre&gt;#121: Package data-reify
-------------------------+------------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  Fedora 17
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+------------------------
 http://hackage.haskell.org/package/data-reify-0.6

 Required by Kansas Lava.

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-16T11:32:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/453">
    <title>[free-electronic-lab] [Free Electronic Lab] #120: Package dotgen</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/453</link>
    <description>&lt;pre&gt;#120: Package dotgen
-------------------------+------------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  Fedora 17
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+------------------------
 http://hackage.haskell.org/package/dotgen-0.4.1

 Required by Kansas Lava.

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-16T11:31:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/452">
    <title>[free-electronic-lab] [Free Electronic Lab] #119: Packagenetlist-to-vhdl</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/452</link>
    <description>&lt;pre&gt;#119: Package netlist-to-vhdl
-------------------------+------------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  Fedora 17
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+------------------------
 http://hackage.haskell.org/package/netlist-to-vhdl-0.3.1

 Required by Kansas Lava.

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-16T11:31:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/451">
    <title>[free-electronic-lab] [Free Electronic Lab] #118: Package netlist</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/451</link>
    <description>&lt;pre&gt;#118: Package netlist
-------------------------+------------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  Fedora 17
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+------------------------
 http://hackage.haskell.org/package/netlist-0.3.1

 Required for Kansas Lava.

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-16T11:30:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/450">
    <title>[free-electronic-lab] [Free Electronic Lab] #117: Packagekansas-lava-cores</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/450</link>
    <description>&lt;pre&gt;#117: Package kansas-lava-cores
-------------------------+------------------------
 Reporter:  shakthimaan  |       Owner:  chitlesh
     Type:  task         |      Status:  new
 Priority:  major        |   Milestone:  Fedora 17
Component:  FEL          |     Version:  devel
 Keywords:               |  Blocked By:
 Blocking:               |
-------------------------+------------------------
 http://hackage.haskell.org/package/kansas-lava-cores-0.1.2

 Requires kansas-lava to be packaged first.

&lt;/pre&gt;</description>
    <dc:creator>Free Electronic Lab</dc:creator>
    <dc:date>2012-02-16T11:28:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/448">
    <title>[free-electronic-lab] [Event Report] GNUnify, February 10-11, 2012,Pune, India</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/448</link>
    <description>&lt;pre&gt;Hi,

I attended GNUnify 2012 [1] on February 10-11, 2012 at Symbiosis
Institute of Computer Studies and Research [2], Pune, India.

Day I

The first day first session that I attended was on "Build your own
cloud computing infrastructure" [3] by Arun Khan [4]. He addressed the
different concepts and tools available for setting up a private
computing infrastructure. After the first session, I moved to listen
to Saleem Ansari's [5] talk on "Torque Box - Ruby App Server" [6].
TorqueBox is small adaptation layer on top of JBoss's Java application
server. I then attended Srikant Patnaik's [7] talk on "Web based
embedded project design" [8]. He demonstrated a simple example of
using an LED with Arduino and controlling it with a Python CGI
webserver. He also demonstrated the use of Fritzing to build the
demoed circuit. All the tools are available on Fedora:

  $ sudo yum install fritzing arduino

After lunch, I attended the talk on "Btrfs - The next Generation
Filesystem on Linux" by Neependra Khare [9]. He addresse&lt;/pre&gt;</description>
    <dc:creator>Shakthi Kannan</dc:creator>
    <dc:date>2012-02-13T11:30:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/444">
    <title>[free-electronic-lab] pycells</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/444</link>
    <description>&lt;pre&gt;Hi,



Do the layout tools in FEL such as Magic, Electric, Toped etc. use or
provide the facility to create pyCells?



Further, has any one used or knows if pcells can be created using the
pycell studio IDE from Ciranova to create pyCells that can be used in the
above layout tools?



I have seen a utitlity in FEL called skill2py but cannot find any
documentation or data about it?



Thanks



Yusuf

&lt;/pre&gt;</description>
    <dc:creator>Yusuf Matcheswala</dc:creator>
    <dc:date>2012-02-02T19:00:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/442">
    <title>[free-electronic-lab] freehdl could be blocked in F17</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/442</link>
    <description>&lt;pre&gt;Chitlesh,
I think you'd want to take over freehdl maintainership:
https://admin.fedoraproject.org/pkgdb/acls/name/freehdl
Otherwise freehdl would be blocked from F17 and leave eclipse-veditor and 
qucs with broken deps:
http://lists.fedoraproject.org/pipermail/devel/2012-February/162028.html

_______________________________________________
electronic-lab mailing list
electronic-lab&amp;lt; at &amp;gt;lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/electronic-lab&lt;/pre&gt;</description>
    <dc:creator>Scott Tsai</dc:creator>
    <dc:date>2012-02-02T10:33:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/441">
    <title>[free-electronic-lab] FEL in Panama</title>
    <link>http://comments.gmane.org/gmane.linux.redhat.fedora.electroniclab/441</link>
    <description>&lt;pre&gt;Hi everyone:

My name is Kiara Navarro and I'm currently using Fedora Electronic Spin.
Less than a year ago I started in the world of fedora and I could enjoy
this electronic version.
I wanted to write yours because I'll teach a workshop about Fedora
Electronic in Panama and I wish share some material that brings current
Fedora Electronic. This would help me organize the material in a dynamic
way to the public that would be in the workshop.

I searched a lot of information about FEL there is not much in the Spanish
language. However,  initiatives like this in Latin America could help us
better promote spin between the public.

If you have some online conference in which i could see information,
features, activies about FEL would be great, preferably in English.

I'm currently a student of electrical engineering and telecommunications in
the Technological Panama University, and I would like to give more students
the opportunity to know fedora and electronic features offered.

Still, if yours have some kind of&lt;/pre&gt;</description>
    <dc:creator>Kiara Navarro</dc:creator>
    <dc:date>2012-02-01T06:15:57</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.linux.redhat.fedora.electroniclab">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.redhat.fedora.electroniclab</link>
  </textinput>
</rdf:RDF>

