<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blogul lui Lucian</title>
	<atom:link href="http://luciancovaci.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://luciancovaci.wordpress.com</link>
	<description>Medicina &#124; Linux/Unix &#124; Cercetari &#124; Statistici &#124; Blog</description>
	<lastBuildDate>Tue, 05 May 2009 14:13:48 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>ro</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='luciancovaci.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/18a0aedf065fe29bf0785d7299118ab0?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Blogul lui Lucian</title>
		<link>http://luciancovaci.wordpress.com</link>
	</image>
			<item>
		<title>OpenVPN server Mandriva 2008.1</title>
		<link>http://luciancovaci.wordpress.com/2009/05/05/openvpn-server-mandriva-20081/</link>
		<comments>http://luciancovaci.wordpress.com/2009/05/05/openvpn-server-mandriva-20081/#comments</comments>
		<pubDate>Tue, 05 May 2009 13:57:20 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[IT&C]]></category>
		<category><![CDATA[Sisteme de Operare]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[openvpn]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=80</guid>
		<description><![CDATA[Configurare si instalare OpenVPN
Instalam OpenVPN
# urpmi openvpn
Mutam fisierele de configurare, si apoi le configuram
# cd /etc/openvpn
# cp -r /usr/share/openvpn/easy-rsa/ /etc/openvpn/
# mkdir /etc/openvpn/client
#cp -r /usr/share/openvpn/sample-config-files/client.conf /etc/openvpn/client/
#cp -r /usr/share/openvpn/sample-config-files/server.conf /etc/openvpn/
Intram acum in folderul, &#8220;easy-rsa&#8221;  &#8220;# cd /etc/openvpn/easy-rsa&#8221;, si editam fisierul &#8220;vars&#8221;
# vi vars
Si modifcam urmatoarele linii:
export KEY_COUNTRY=RO  # Prescurtarea pen tara
export KEY_PROVINCE=B  # Oras, prima litera
export KEY_CITY=BUCHAREST  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=80&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Configurare si instalare OpenVPN</p>
<p>Instalam OpenVPN</p>
<blockquote><p># urpmi openvpn</p></blockquote>
<p>Mutam fisierele de configurare, si apoi le configuram</p>
<blockquote><p># cd /etc/openvpn</p>
<p># cp -r /usr/share/openvpn/easy-rsa/ /etc/openvpn/</p>
<p># mkdir /etc/openvpn/client</p>
<p>#cp -r /usr/share/openvpn/sample-config-files/client.conf /etc/openvpn/client/</p>
<p>#cp -r /usr/share/openvpn/sample-config-files/server.conf /etc/openvpn/</p></blockquote>
<p>Intram acum in folderul, &#8220;easy-rsa&#8221;  &#8220;# cd /etc/openvpn/easy-rsa&#8221;, si editam fisierul &#8220;vars&#8221;</p>
<blockquote><p># vi vars</p></blockquote>
<p>Si modifcam urmatoarele linii:</p>
<p>export KEY_COUNTRY=RO  # Prescurtarea pen tara<br />
export KEY_PROVINCE=B  # Oras, prima litera<br />
export KEY_CITY=BUCHAREST  # Nume Oras Intreg<br />
export KEY_ORG=&#8221;OpenVPN-ServerClient&#8221;  # Nume server<br />
export KEY_EMAIL=&#8221;user@domeniu.ro&#8221; # Adresa de mail admin OpenVPN</p>
<blockquote><p># . ./vars</p>
<p># ./clean-all</p>
<p># ./build-ca</p>
<p># ./build-key-server client</p>
<p># ./build-dh</p></blockquote>
<blockquote><p># openvpn &#8211;genkey &#8211;secret keys/ta.key</p>
<p># ./build-key client_1</p>
<p># cp keys/client_1.* ../client/</p>
<p># cp keys/ca.crt ../client/</p>
<p># cp keys/ta.key ../client/</p></blockquote>
<p>In fisierul /etc/openvpn/server/conf  trebuie sa il configuram astfel:</p>
<blockquote><p>port 1194</p></blockquote>
<blockquote><p>proto udp</p>
<p>dev tun</p>
<p>ca  /etc/openvpn/easy-rsa/keys/ca.crt</p>
<p>cert  /etc/openvpn/easy-rsa/keys/client.crt</p>
<p>key  /etc/openvpn/easy-rsa/keys/client.key    #This file should be kept secret.</p>
<p>dh  /etc/openvpn/easy-rsa/keys/dh1024.pem</p>
<p>server 10.1.2.0  255.255.255.0</p>
<p>push  &#8220;route 192.168.3.0 255.255.255.0&#8243;</p></blockquote>
<p>### Atentie, activati acesta doar daca mai foloseste si altcineva cheile ca sa se conecteze la OpenVPN</p>
<blockquote><p>duplicate-cn</p>
<p>keepalive 10 120</p>
<p>tls-auth /etc/openvpn/easy-rsa/keys/ta.key 0 # This file is secret</p></blockquote>
<p>Default vine cu  &#8220;cipher BF-CBC        # Blowfish&#8221;, dar eu folosesc asta</p>
<blockquote><p>cipher AES-128-CBC   # AES</p>
<p>persist-key<br />
persist-tun</p>
<p>status openvpn-status.log</p></blockquote>
<p>Nivelul de detalii din loguri.</p>
<blockquote><p>verb 4</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=80&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2009/05/05/openvpn-server-mandriva-20081/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Mandriva security msec</title>
		<link>http://luciancovaci.wordpress.com/2009/04/11/mandriva-security-msec/</link>
		<comments>http://luciancovaci.wordpress.com/2009/04/11/mandriva-security-msec/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 19:38:11 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[IT&C]]></category>
		<category><![CDATA[Sisteme de Operare]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[msec]]></category>
		<category><![CDATA[msec custom]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=77</guid>
		<description><![CDATA[Mandriva Security este o aplicatie care seteaza un nivel de securitate pentru sistemul linux Mandriva Linux.
Nivelurile de securitate in mandriva sunt setate pe 4 default, adica High, aceata setare este scrisa in /etc/sysconfig/msec
care la un anumit interval de timp schimba parolele la un anumit timp de obicei 60 zile, ceea ce e neplacut.
Cum poti sa [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=77&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Mandriva Security este o aplicatie care seteaza un nivel de securitate pentru sistemul linux Mandriva Linux.</p>
<p>Nivelurile de securitate in mandriva sunt setate pe 4 default, adica High, aceata setare este scrisa in /etc/sysconfig/msec</p>
<p>care la un anumit interval de timp schimba parolele la un anumit timp de obicei 60 zile, ceea ce e neplacut.</p>
<p>Cum poti sa modifici acest nivel, din consola la un nivel normal? Modificarea se face cu urmatoarea comanda # msec 2, unde 2 este un nivel de securitate normal, care nu poate sa iti dea un nivel de securitate prea mare.</p>
<p>Noi vrem sa customizam nivel de securitate dupa bunul nostru plac, si dupa serviciile pe care dorim sa le configuram intr-un anuit fel.</p>
<p>Aceasta customizare se face modificand fisierul /etc/security/msec/level.local daca fisierul nu exista il creem, in el trebuie sa scriem asa:</p>
<p>from mseclib import *</p>
<p>allow_remote_root_login(no)</p>
<p>Aceasta directiva / variabila din /etc/security/msec/level.local suprascrie nivelul de securitate cu variabila pe care o vrem noi, in cazul nostru midifica optiunea PermitRootLogin yes din /etc/ssh/ssh_config  in PermitRootLogin no, aceste modificari le face scriptul din /etc/cron.hourly/msec care se executa din ora in ora.</p>
<p>Pentru mai multe optiuni de scris in /etc/security/msec/level.local verifica man mseclib.</p>
<p>Sursa de inspiratie: <a title="msec custom" href="http://mandrivausers.org/old_docs/secure/smsec2.html" target="_blank">msec custom</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=77&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2009/04/11/mandriva-security-msec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Shell Scripting, change MAC in linux</title>
		<link>http://luciancovaci.wordpress.com/2009/04/09/shell-scripting-change-mac-in-linux/</link>
		<comments>http://luciancovaci.wordpress.com/2009/04/09/shell-scripting-change-mac-in-linux/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:04:37 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[IT&C]]></category>
		<category><![CDATA[change MAC]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell scripting]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=72</guid>
		<description><![CDATA[Vom prezenta cum se face un script pentru a schimb o adesa MAC a unei interfete de retea pe un sistem Linux.
 De aici incepe scriptul:
#!/bin/bash
#
# Configurarea interfetelor
ifconfig eth0 down
ifconfig eth0 hw ether 01:00:c3:10:a2:87
ifconfig eth0 up
ifconfig eth0 192.168.5.10 netmask 255.255.255.0
route add default gw 192.168.5.1
#end of script
Asta este scriptul,  pentru a il putea face executabil dam comanda [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=72&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Vom prezenta cum se face un script pentru a schimb o adesa MAC a unei interfete de retea pe un sistem Linux.</p>
<p> De aici incepe scriptul:</p>
<p>#!/bin/bash<br />
#<br />
# Configurarea interfetelor<br />
ifconfig eth0 down<br />
ifconfig eth0 hw ether 01:00:c3:10:a2:87<br />
ifconfig eth0 up<br />
ifconfig eth0 192.168.5.10 netmask 255.255.255.0<br />
route add default gw 192.168.5.1<br />
#end of script</p>
<p>Asta este scriptul,  pentru a il putea face executabil dam comanda chmod +x change-mac.sh</p>
<p>Se considera ca asa ati denumit scriptul, dupa ce ii schimbam MAC-ul se pierde orice setare a interfetei de retea deaceea e bine sa ii spunem care sunt configurarile, si ruta default spre internet.</p>
<p>Pentru ca sa se execute scriptul imediat dupa ce booteaza sistemul de operare e bine sa ii trecem adresa absoluta a scriptului in fisierul /etc/rc.d/rc.local  adresa absoluta a scriptului trebuie sa arate de genul /home/user/bin/script.sh ( sau locul real unde se afla scriptul ).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=72&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2009/04/09/shell-scripting-change-mac-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Dreptul la lene&#8221; / &#8220;Le droit a la paresse&#8221;</title>
		<link>http://luciancovaci.wordpress.com/2009/02/12/dreptul-la-lene-le-droit-a-la-paresse/</link>
		<comments>http://luciancovaci.wordpress.com/2009/02/12/dreptul-la-lene-le-droit-a-la-paresse/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 19:55:53 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=68</guid>
		<description><![CDATA[– de          Paul Lafargue

Le Droit à la          Paresse, de Paul Lafargue (1880, 1896), est sans doute le          pamphlet le plus violent et le plus réjouissant — le plus [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=68&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-family:Tahoma;font-size:medium;"><span style="font-size:13.5pt;font-family:Tahoma;">– de          Paul Lafargue</span></span><br />
<span style="font-family:Tahoma;color:navy;font-size:medium;"><span style="font-size:13.5pt;color:navy;font-family:Tahoma;"><br />
<span style="font-size:x-small;">Le <em><span style="font-style:italic;">Droit à la          Paresse</span></em>, de Paul Lafargue (1880, 1896), est sans doute le          pamphlet le plus violent et le plus réjouissant — le plus fertile, aussi          — qu&#8217;on ait jamais écrit <strong><span style="font-weight:bold;">contre le          travail : il n&#8217;était pas question de composer ce texte magnifique, grand          classique du mouvement ouvrier révolutionnaire, dans une <em><span style="font-style:italic;">police de          labeur</span></em></span></strong>…</span></span></span><br />
<span style="font-family:Tahoma;"><span style="font-family:Tahoma;"><br />
COMENTARIU:</span></span><br />
<span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"><br />
Este o carte scrisa in          1880 (sec. trecut, da, nu e o greseala !) si e mai actuala ca oricand.          caci vorbeste pana si despre criza la care am ajuns azi&#8230;</span></span> <span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"><br />
Etapele SPIRALEI          INFERNALE sunt pe scurt urmatoarele: </span></span><br />
<span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"><br />
1.<strong><span style="font-weight:bold;">Muncim tot mai multe ore si producem tot mai          mult ca sa castigam tot mai mult </span></strong>– asa ni se cere « ideologic          » de catre societatea capitalista – ca doar marii industriasi/ patroni          au nevoie de oameni « motivati » care sa le produca mai mult, sa se          imbogateasca ei mai mult ; <em><span style="font-style:italic;">lenea nu          e buna</span></em>, din punctul lor de vedere caci nu muncim pentru ei si          nu ne inregimentam sa le fie lor bine&#8230;. </span></span><br />
<strong><span style="font-family:Tahoma;color:maroon;"><span style="font-weight:bold;color:maroon;font-family:Tahoma;"><br />
2.          Produsele, la un moment dat, nu se mai vand, caci sunt prea          multe,</span></span></strong><span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"> <strong><span style="font-weight:bold;">piata e saturata</span></strong>, iar oamenii nu          mai au bani – salariile oferite de industriasi/ patroni nu sunt          suficiente pentru a face fata tentatiei generate de produse ; intervine          <em><span style="font-style:italic;">publicitatea</span></em><strong><span style="font-weight:bold;"> </span></strong>care ne convinge sa          cumparam</span></span><br />
<strong><span style="font-family:Tahoma;color:maroon;"><span style="font-weight:bold;color:maroon;font-family:Tahoma;"><br />
3.          Suntem tentati de publicitate, vrem sa cumparam. </span></span></strong><strong><span style="font-family:Tahoma;color:purple;"><span style="font-weight:bold;color:purple;font-family:Tahoma;">M</span></span></strong><strong><span style="font-family:Tahoma;color:maroon;"><span style="font-weight:bold;color:maroon;font-family:Tahoma;">uncim mai          mult, sa castigam mai mult, sa ne permitem. Multi ne lasam tentati          si</span></span></strong><span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"> f<strong><span style="font-weight:bold;">acem si credite.</span></strong></span></span><br />
<strong><span style="font-family:Tahoma;color:maroon;"><span style="font-weight:bold;color:maroon;font-family:Tahoma;"><br />
4. La          un moment dat sunt atat de multe produse pe piata ca nu mai are cine le          cumpare – dar spirala infernala continua</span></span></strong><span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"> : ca doar continuam sa          muncim mai mult, ca sa ne platim creditele, si&#8230;sa consumam mai          mult</span></span><br />
<strong><span style="font-family:Tahoma;color:maroon;"><span style="font-weight:bold;color:maroon;font-family:Tahoma;"><br />
5.          Daca tot sunt dispusi din ce in ce mai multi oameni sa munceasca tot mai          mult, de ce sa angajeze patronii 10 oameni in loc de 7, sau chiar 5, ca          doar vor munci suficient cei 5 deja angajati, daca sunt bine prinsi in          credite si dorinte de consum.</span></span></strong><span style="font-family:Tahoma;"><span style="font-family:Tahoma;"> <span style="color:maroon;"><span style="color:maroon;">Asa apare <strong><em><span style="font-weight:bold;font-style:italic;">somajul </span></em></strong>!          Astfel, tot mai putini oameni muncesc tot mai mult, calitatea          produselor/ serviciilor scade, dar nu conteaza pentru patron caci banii          vin si asa. In ceea ce priveste somerii – este treaba lor ! </span></span></span></span><br />
<strong><span style="font-family:Tahoma;color:maroon;"><span style="font-weight:bold;color:maroon;font-family:Tahoma;"><br />
6.          Creditele sunt din ce in ce mai numeroase si mai mari caci cine intra in          cercul lor iese greu</span></span></strong><br />
<strong><span style="font-family:Tahoma;color:maroon;"><span style="font-weight:bold;color:maroon;font-family:Tahoma;"><br />
7. La          un moment dat piata crapa: locuri de munca, credite, imobiliarul, totul          pica.</span></span></strong><br />
<span style="text-decoration:underline;"><span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"><br />
Ei, noi ne aflam acum in          acest al 7-lea moment.</span></span></span><br />
<span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"><br />
E          incredibil, dar <strong><span style="font-weight:bold;">acelasi autor ne          explica faptul ca <span style="text-decoration:underline;">daca am munci mai putin fiecare dintre noi, am          putea trai toti mai bine, somajul ar scadea &#8211; iar nivelul de viata al          populatiei s-ar imbunatati. Dar nu ar mai castiga atat de mult          patronii.</span></span></strong></span></span><br />
<span style="font-family:Tahoma;color:maroon;"><span style="color:maroon;font-family:Tahoma;"><br />
Parca          nu e absurd ce spune omul asta. Si o spunea acum 123 de ani !</span></span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=68&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2009/02/12/dreptul-la-lene-le-droit-a-la-paresse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Esti pregatit? Noul PCBSD 7.0.1</title>
		<link>http://luciancovaci.wordpress.com/2008/11/23/esti-pregatit-noul-pcbsd-701/</link>
		<comments>http://luciancovaci.wordpress.com/2008/11/23/esti-pregatit-noul-pcbsd-701/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 18:41:48 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[Sisteme de Operare]]></category>
		<category><![CDATA[BSD]]></category>
		<category><![CDATA[FreeBSD.]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[PcBSD]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=64</guid>
		<description><![CDATA[Este disponibil noul PCBSD 7.0.1
Din noutati avem:
- KDE 4.1.2
- versiune pentru AMD64
- suport pentru scriere NTFS
- flash 9 support (Linux -flashplugin9)
Pentru mai multe detalii aici &#8212;&#62; www.pcbsd.org
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=64&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Este disponibil noul PCBSD 7.0.1</p>
<p>Din noutati avem:</p>
<p>- KDE 4.1.2</p>
<p>- versiune pentru AMD64</p>
<p>- suport pentru scriere NTFS</p>
<p>- flash 9 support (Linux -flashplugin9)</p>
<p>Pentru mai multe detalii aici &#8212;&gt; <a href="http://www.pcbsd.org/" target="_blank">www.pcbsd.org</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=64&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2008/11/23/esti-pregatit-noul-pcbsd-701/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Teoria Conspiratiei si Biblia !</title>
		<link>http://luciancovaci.wordpress.com/2008/10/27/teoria-conspiratiei-si-biblia/</link>
		<comments>http://luciancovaci.wordpress.com/2008/10/27/teoria-conspiratiei-si-biblia/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 18:57:45 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[Biblie]]></category>
		<category><![CDATA[articol]]></category>
		<category><![CDATA[controverse]]></category>
		<category><![CDATA[Dumnezeu]]></category>
		<category><![CDATA[Teoria conspiratiei]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=61</guid>
		<description><![CDATA[Un articol interesant despre Taoria Conspiratiei, Biblia  si contextul in care ne aflam.
http://www.gsm1888.ro/articole/teoria.htm
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=61&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Un articol interesant despre Taoria Conspiratiei, Biblia  si contextul in care ne aflam.</p>
<p><a href="http://www.gsm1888.ro/articole/teoria.htm" target="_blank">http://www.gsm1888.ro/articole/teoria.htm</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=61&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2008/10/27/teoria-conspiratiei-si-biblia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Mesaje &#8230;. !</title>
		<link>http://luciancovaci.wordpress.com/2008/09/13/mesaje/</link>
		<comments>http://luciancovaci.wordpress.com/2008/09/13/mesaje/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 20:27:27 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=59</guid>
		<description><![CDATA[&#8220;Atitudinea si nu aptitudinea iti determina altitudinea.&#8221; (Zig Ziglar)
&#8220;Nu orice cu care te confrunti poate fi schimbat, dar niciun lucru nu poate fi schimbat fara sa te confrunti cu el.&#8221; (Lucille Ball)
&#8220;Viata cu Hristos este o speranta fara sfarsit, dar viata fara El este un sfarsit fara speranta.&#8221;
&#8220;Este bine sa fii multumit cu ceea ce [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=59&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#8220;Atitudinea si nu aptitudinea iti determina altitudinea.&#8221; (Zig Ziglar)</p>
<p>&#8220;Nu orice cu care te confrunti poate fi schimbat, dar niciun lucru nu poate fi schimbat fara sa te confrunti cu el.&#8221; (Lucille Ball)</p>
<p>&#8220;Viata cu Hristos este o speranta fara sfarsit, dar viata fara El este un sfarsit fara speranta.&#8221;</p>
<p>&#8220;Este bine sa fii multumit cu ceea ce ai, dar nu cu ceea ce esti.&#8221;</p>
<p>&#8220;Cea mai scurta cale intre o problema si rezolvarea ei este egala cu distanta dintre genunchi si podea.&#8221;</p>
<p>&#8220;Dumnezeu a facut toate lucrurile din nimic. Pana nu te vezi &#8216;nimic&#8217;, El nu poate face mare lucru din tine.&#8221; (Martin Luther)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/luciancovaci.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/luciancovaci.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=59&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2008/09/13/mesaje/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Alte cuvinte de tinut minte!</title>
		<link>http://luciancovaci.wordpress.com/2008/08/26/alte-cuvinte-de-tinut-minte/</link>
		<comments>http://luciancovaci.wordpress.com/2008/08/26/alte-cuvinte-de-tinut-minte/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 18:52:22 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[Maxime]]></category>
		<category><![CDATA[Augustin]]></category>
		<category><![CDATA[okazia]]></category>
		<category><![CDATA[speranta. Dumnezeu]]></category>
		<category><![CDATA[viitor]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=55</guid>
		<description><![CDATA[¨Tot ceea ce suntem este rezultatul a ceea ce gandi.¨ (Buddha)
¨In loc de o mie de cuvinte, mai bine numai unul, dar care aduce pacea. In loc de o mie de cantari, mai bine numai una, dar care sa imprastie doar bucurie.¨ (Buddha)
¨Pana in ziua cand Dumnezeu va binevoi sa-i destainuiasca omului viitorul, toata intelepciunea [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=55&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>¨Tot ceea ce suntem este rezultatul a ceea ce gandi.¨ (Buddha)</p>
<p>¨In loc de o mie de cuvinte, mai bine numai unul, dar care aduce pacea. In loc de o mie de cantari, mai bine numai una, dar care sa imprastie doar bucurie.¨ (Buddha)</p>
<p>¨Pana in ziua cand Dumnezeu va binevoi sa-i destainuiasca omului viitorul, toata intelepciunea va fi cuprinsa in 2 cuvinte: Asteapta si nadajduieste!¨ (Dumas)</p>
<p>¨Dumnezeu nu a facut niciodata o promisiune prea frumoasa ca sa fie adevarata.¨ (Dwight L. Moody)</p>
<p>¨Oameni de succes nu si-au castigat distinctia pentru ca au avut talent sau ocazii anume, ci pentru ca au folosit ocazia care le-a stat la indemana.¨ (B. Marton)</p>
<p>¨Speranta te mentine la suprafata atunci cand ceilalti se ineaca. Speranta te ajuta sa iti doresti sa traiesti cand altii refuza. Speranta iti da curajul sa incerci cand ceilalti renunta.¨ (Burton Briggs)</p>
<p>¨Invata sa scrii durerile pe nisip si bucuriile pe stanca.¨ (Augustin)</p>
<p>¨Amanarea este asasinul oportunitatii.¨ (Necunoscut)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/luciancovaci.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/luciancovaci.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=55&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2008/08/26/alte-cuvinte-de-tinut-minte/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Alte maxime de serie.</title>
		<link>http://luciancovaci.wordpress.com/2008/08/21/alte-maxime-de-serie/</link>
		<comments>http://luciancovaci.wordpress.com/2008/08/21/alte-maxime-de-serie/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 03:38:32 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[Maxime]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=53</guid>
		<description><![CDATA[¨Din cer, chiar si cea mai mizerabila viata va parea doar o noapte petrecuta intr-un hotel inconfortabil.¨ (Teresa de Avila)
¨Nu astepta un raspuns de 1000 de dolari la rugaciune de 10 centi.¨ (Doug Batchelor)
¨Omul are nevoie de dragoste. Viata fara duiosie si fara iubire nu este decat un mecanism uscat si scartietor.&#8221; (Victor Hugo)
¨Ziua de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=53&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>¨Din cer, chiar si cea mai mizerabila viata va parea doar o noapte petrecuta intr-un hotel inconfortabil.¨ (Teresa de Avila)</p>
<p>¨Nu astepta un raspuns de 1000 de dolari la rugaciune de 10 centi.¨ (Doug Batchelor)</p>
<p>¨Omul are nevoie de dragoste. Viata fara duiosie si fara iubire nu este decat un mecanism uscat si scartietor.&#8221; (Victor Hugo)</p>
<p>¨Ziua de ieri este un cec anulat: uit-o. Ziua de maine este o polita: nu conta pe ea. Ziua de azi este o suma cash: foloseste-o!¨ (Edward C. Bliss)</p>
<p>¨Pentru ca sa vezi cat de mare este un om, masoara-i inaltimea idealurilor, adancimea convingerilor, largimea vederilor si lungimea rabdarii.¨ (Anonim)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/luciancovaci.wordpress.com/53/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/luciancovaci.wordpress.com/53/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=53&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2008/08/21/alte-maxime-de-serie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
		<item>
		<title>Site-uri de comentarii despre ¨Vestea Buna¨</title>
		<link>http://luciancovaci.wordpress.com/2008/08/18/vetea-buna/</link>
		<comments>http://luciancovaci.wordpress.com/2008/08/18/vetea-buna/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 03:46:18 +0000</pubDate>
		<dc:creator>Lucian Covaci</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biblia]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[bucurie]]></category>
		<category><![CDATA[carti]]></category>
		<category><![CDATA[Galateni]]></category>
		<category><![CDATA[mantuirea]]></category>
		<category><![CDATA[Pavel]]></category>
		<category><![CDATA[tristete]]></category>
		<category><![CDATA[vestea buna]]></category>

		<guid isPermaLink="false">http://luciancovaci.wordpress.com/?p=48</guid>
		<description><![CDATA[Am primit de la un prieten niste link-uri catre niste site-uri, de fapt un site cu mai multe carti si articole ce pot fii citite online.
M-am gandit sa vi le impartasesc si voua, link-urile sunt:
http://vestibune.ro/Prezentare/Prezentare.htm
http://vestibune.ro/Carti/Galateni/Gal%20Cap1.htm
http://www.gsm1888.ro/cuprins/hristos.htm
Siturile sunt in limba romana, sfatul meu cititile nu o sa fiti dezamagiti !
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=48&subd=luciancovaci&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Am primit de la un prieten niste link-uri catre niste site-uri, de fapt un site cu mai multe carti si articole ce pot fii citite online.</p>
<p>M-am gandit sa vi le impartasesc si voua, link-urile sunt:</p>
<p><a href="http://vestibune.ro/Prezentare/Prezentare.htm" target="_blank">http://vestibune.ro/Prezentare/Prezentare.htm</a></p>
<p><a href="http://vestibune.ro/Carti/Galateni/Gal%20Cap1.htm" target="_blank">http://vestibune.ro/Carti/Galateni/Gal%20Cap1.htm</a></p>
<p><a href="http://www.gsm1888.ro/cuprins/hristos.htm" target="_blank">http://www.gsm1888.ro/cuprins/hristos.htm</a></p>
<p>Siturile sunt in limba romana, sfatul meu cititile nu o sa fiti dezamagiti !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/luciancovaci.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/luciancovaci.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/luciancovaci.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/luciancovaci.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/luciancovaci.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/luciancovaci.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/luciancovaci.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/luciancovaci.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/luciancovaci.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/luciancovaci.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/luciancovaci.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/luciancovaci.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=luciancovaci.wordpress.com&blog=2069377&post=48&subd=luciancovaci&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://luciancovaci.wordpress.com/2008/08/18/vetea-buna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/965cbc1f2910ca7167b9326c23f980bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">luciancovaci</media:title>
		</media:content>
	</item>
	</channel>
</rss>