<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Typicon Man's blog</title>
	<atom:link href="http://typiconman.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://typiconman.wordpress.com</link>
	<description>Analysis from a decidedly Russian-American, Paleoconservative perspective</description>
	<lastBuildDate>Sat, 05 Sep 2009 16:54:41 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Connect to Duke via Cisco VPN by Brent Perdue</title>
		<link>http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-387</link>
		<dc:creator>Brent Perdue</dc:creator>
		<pubDate>Sat, 05 Sep 2009 16:54:41 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-387</guid>
		<description>(8) Import the Duke security certificate for both root and user:

    For root:
    sudo cisco_cert_mgr -R -op import

    When prompted for &quot;Enter filename:&quot;, input
    /usr/local/src/duke-vpn-files/ThawteServerCA.509

    For user:
    cisco_cert_mgr -U -op import

    Enter filename:
    /usr/local/src/duke-vpn-files/ThawteServerCA.509
    Import Password: 
    Password: 
    Confirm Password: 

(9) Connect to the Duke VPN server:

    vpnclient connect duke-broadband

    Once connected:
    ctrl-z
    bg

    Note: To check IP addresses, type &quot;ifconfig&quot;.

(10) Disconnect from server:

     vpnclient disconnect</description>
		<content:encoded><![CDATA[<p>(8) Import the Duke security certificate for both root and user:</p>
<p>    For root:<br />
    sudo cisco_cert_mgr -R -op import</p>
<p>    When prompted for &#8220;Enter filename:&#8221;, input<br />
    /usr/local/src/duke-vpn-files/ThawteServerCA.509</p>
<p>    For user:<br />
    cisco_cert_mgr -U -op import</p>
<p>    Enter filename:<br />
    /usr/local/src/duke-vpn-files/ThawteServerCA.509<br />
    Import Password:<br />
    Password:<br />
    Confirm Password: </p>
<p>(9) Connect to the Duke VPN server:</p>
<p>    vpnclient connect duke-broadband</p>
<p>    Once connected:<br />
    ctrl-z<br />
    bg</p>
<p>    Note: To check IP addresses, type &#8220;ifconfig&#8221;.</p>
<p>(10) Disconnect from server:</p>
<p>     vpnclient disconnect</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connect to Duke via Cisco VPN by Brent Perdue</title>
		<link>http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-386</link>
		<dc:creator>Brent Perdue</dc:creator>
		<pubDate>Thu, 03 Sep 2009 17:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-386</guid>
		<description>Brent Perdue
09/02/2009
2.6.28-15-generic #49-Ubuntu SMP x86_64 GNU/Linux

Here are the steps I followed in getting vpnc installed
and working with the Duke VPN server.

(1) Start by downloading the tarball of the Cisco VPN client
    for Linux from Duke OIT:
    http://www.oit.duke.edu/net-security/network/remote/vpn/index.php
    Notes: This tarball also includes the Cisco VPN   configuration files for the Duke network.  These are really the files needed. A NetID username and password is required to download software from Duke OIT.

(2) Extract the contents of the tarball somewhere, and copy the Cisco VPN config files to another directory.  I did all the following steps in /usr/local/src, but it is not crucial to put everything there.

    mkdir duke-vpn-files
    tar xzvf vpn_client_linux_460.tar.gz
    cp -v vpnclient/duke-*.pcf duke-vpn-files/
    mv -v vpn_client_linux_460.tar.gz duke-vpn-files/
    rm -vr vpnclient/

(3) Download the security certificate from Duke OIT, and put it in the duke-vpn-files/ directory:
    http://www.oit.duke.edu/net-security/network/remote/vpn/certificate.php
    The name of the certificate file upon writing this HOWTO
    was ThawteServerCA.509.

(4) By default, vpnc is not compiled with openssl support.  To use vpnc with the Duke VPN, openssl is needed.  The version of vpnc available in the repositories will not work with the Duke VPN.  So, download the source code for vpnc (0.5.3 was the lastest version upon writing this HOWTO):

http://www.unix-ag.uni-kl.de/~massar/vpnc/

(5) Dependencies:

    - To get vpnc to compile the following packages need to be installed, if they aren&#039;t already.  I used synaptic to install the packages that were not already installed.

      libgcrypt11
      libgcrypt11-dev
      libgpg-error0
      libgpg-error-dev
      openssl
      libcurl4-openssl-dev

(6) Compiling and installation:

    - Extract the contents of the vpnc tarball somewhere.   Again, I put it in /usr/local/src.

      tar xzvf vpnc-0.5.3.tar.gz
      cd vpnc-0.5.3

    - If all the dependencies have been fulfilled by installing the above packages, then the code is ready to compile with one additional step.  The Makefile needs to be edited to enable openssl support.  Open Makefile in a text editor (I use nano), and uncomment the following lines:

 OPENSSL_GPL_VIOLATION = -DOPENSSL_GPL_VIOLATION
 OPENSSLLIBS = -lcrypto

    - Save the Makefile, close the editor, compile, and install the program:

      make
      make install

(7) Configuration:

    - Now that vpnc is installed, it is time to set up its configuration files to be able to connect to the Duke VPN.  This is done by converting the Cisco .pcf configuration files provided by Duke into vpnc configuration files using the &#039;pcf2vpnc&#039; script included in the vpnc distribution.  In addition, the Duke security certificate needs to be converted to a form that vpnc can understand by using &#039;openssl&#039;.

      cd duke-vpn-files/
      pcf2vpnc duke-broadband.pcf duke-broadband.conf
      openssl x509 -in ThawteServerCA.509 -inform DER -out ThawteServerCA.pem -outform PEM

    - The config file needs to be edited to tell vpnc to use the certificate.  Open duke-broadband.conf in a text editor, and add the following line at the end:

      CA-File /etc/vpnc/ThawteServerCA.pem

    - Now copy both the configuration file and the certificate to /etc/vpnc:

      sudo cp -v duke-broadband.conf /etc/vpnc
      sudo chmod 600 /etc/vpnc/duke-broadband.conf
      sudo cp -v ThawteServerCA.pem /etc/vpnc

    - Notes:  This step (7) can be repeated for any of the other .pcf files: duke-wireless.pcf, duke-dialup.pcf, if needed.

(8) Running the program:

    sudo vpnc duke-broadband


Final Notes:  I was at a friend&#039;s house when I got this working.  He has cable internet. I have Verizon DSL at my apartment and a Westell Versalink 327W modem/router.  It turns out that the Westell router can&#039;t handle VPN connections.  So, I am out of luck with using this at home unless I change my ISP.</description>
		<content:encoded><![CDATA[<p>Brent Perdue<br />
09/02/2009<br />
2.6.28-15-generic #49-Ubuntu SMP x86_64 GNU/Linux</p>
<p>Here are the steps I followed in getting vpnc installed<br />
and working with the Duke VPN server.</p>
<p>(1) Start by downloading the tarball of the Cisco VPN client<br />
    for Linux from Duke OIT:<br />
    <a href="http://www.oit.duke.edu/net-security/network/remote/vpn/index.php" rel="nofollow">http://www.oit.duke.edu/net-security/network/remote/vpn/index.php</a><br />
    Notes: This tarball also includes the Cisco VPN   configuration files for the Duke network.  These are really the files needed. A NetID username and password is required to download software from Duke OIT.</p>
<p>(2) Extract the contents of the tarball somewhere, and copy the Cisco VPN config files to another directory.  I did all the following steps in /usr/local/src, but it is not crucial to put everything there.</p>
<p>    mkdir duke-vpn-files<br />
    tar xzvf vpn_client_linux_460.tar.gz<br />
    cp -v vpnclient/duke-*.pcf duke-vpn-files/<br />
    mv -v vpn_client_linux_460.tar.gz duke-vpn-files/<br />
    rm -vr vpnclient/</p>
<p>(3) Download the security certificate from Duke OIT, and put it in the duke-vpn-files/ directory:<br />
    <a href="http://www.oit.duke.edu/net-security/network/remote/vpn/certificate.php" rel="nofollow">http://www.oit.duke.edu/net-security/network/remote/vpn/certificate.php</a><br />
    The name of the certificate file upon writing this HOWTO<br />
    was ThawteServerCA.509.</p>
<p>(4) By default, vpnc is not compiled with openssl support.  To use vpnc with the Duke VPN, openssl is needed.  The version of vpnc available in the repositories will not work with the Duke VPN.  So, download the source code for vpnc (0.5.3 was the lastest version upon writing this HOWTO):</p>
<p><a href="http://www.unix-ag.uni-kl.de/~massar/vpnc/" rel="nofollow">http://www.unix-ag.uni-kl.de/~massar/vpnc/</a></p>
<p>(5) Dependencies:</p>
<p>    &#8211; To get vpnc to compile the following packages need to be installed, if they aren&#8217;t already.  I used synaptic to install the packages that were not already installed.</p>
<p>      libgcrypt11<br />
      libgcrypt11-dev<br />
      libgpg-error0<br />
      libgpg-error-dev<br />
      openssl<br />
      libcurl4-openssl-dev</p>
<p>(6) Compiling and installation:</p>
<p>    &#8211; Extract the contents of the vpnc tarball somewhere.   Again, I put it in /usr/local/src.</p>
<p>      tar xzvf vpnc-0.5.3.tar.gz<br />
      cd vpnc-0.5.3</p>
<p>    &#8211; If all the dependencies have been fulfilled by installing the above packages, then the code is ready to compile with one additional step.  The Makefile needs to be edited to enable openssl support.  Open Makefile in a text editor (I use nano), and uncomment the following lines:</p>
<p> OPENSSL_GPL_VIOLATION = -DOPENSSL_GPL_VIOLATION<br />
 OPENSSLLIBS = -lcrypto</p>
<p>    &#8211; Save the Makefile, close the editor, compile, and install the program:</p>
<p>      make<br />
      make install</p>
<p>(7) Configuration:</p>
<p>    &#8211; Now that vpnc is installed, it is time to set up its configuration files to be able to connect to the Duke VPN.  This is done by converting the Cisco .pcf configuration files provided by Duke into vpnc configuration files using the &#8216;pcf2vpnc&#8217; script included in the vpnc distribution.  In addition, the Duke security certificate needs to be converted to a form that vpnc can understand by using &#8216;openssl&#8217;.</p>
<p>      cd duke-vpn-files/<br />
      pcf2vpnc duke-broadband.pcf duke-broadband.conf<br />
      openssl x509 -in ThawteServerCA.509 -inform DER -out ThawteServerCA.pem -outform PEM</p>
<p>    &#8211; The config file needs to be edited to tell vpnc to use the certificate.  Open duke-broadband.conf in a text editor, and add the following line at the end:</p>
<p>      CA-File /etc/vpnc/ThawteServerCA.pem</p>
<p>    &#8211; Now copy both the configuration file and the certificate to /etc/vpnc:</p>
<p>      sudo cp -v duke-broadband.conf /etc/vpnc<br />
      sudo chmod 600 /etc/vpnc/duke-broadband.conf<br />
      sudo cp -v ThawteServerCA.pem /etc/vpnc</p>
<p>    &#8211; Notes:  This step (7) can be repeated for any of the other .pcf files: duke-wireless.pcf, duke-dialup.pcf, if needed.</p>
<p>(8) Running the program:</p>
<p>    sudo vpnc duke-broadband</p>
<p>Final Notes:  I was at a friend&#8217;s house when I got this working.  He has cable internet. I have Verizon DSL at my apartment and a Westell Versalink 327W modem/router.  It turns out that the Westell router can&#8217;t handle VPN connections.  So, I am out of luck with using this at home unless I change my ISP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connect to Duke via Cisco VPN by hpg</title>
		<link>http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-372</link>
		<dc:creator>hpg</dc:creator>
		<pubDate>Thu, 07 May 2009 14:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-372</guid>
		<description>Information from Duke OIT ...
  worked perfectly on Xubuntu 9.04

  (1) download ...
        http://www.duke.edu/~kjr10/vpn/vpn-4.8.02.tar.gz
  (2) gunzip vpn-4.8.02.tar.gz
  (3) tar -xvf vpn-4.8.02.tar
  (4) cd vpn
  (5) sudo ./vpn_install
             answer &quot;yes&quot; for source code path
             answer &quot;no&quot;  for start VPN on boot
  (6) /opt/cisco-vpnclient/bin/cisco_cert_mgr -R -op import
             enter &quot;ThawteServerCA.509&quot; when prompted
  (7) sudo /etc/init.d/vpnclient_init start
  (8) vpnclient connect duke-broadband
             enter username and password

  ... voila! ...

[Editor&#039;s note: Just tried on Ubuntu Jaunty 64-bit AMD, and it crashed with  a seg fault.]</description>
		<content:encoded><![CDATA[<p>Information from Duke OIT &#8230;<br />
  worked perfectly on Xubuntu 9.04</p>
<p>  (1) download &#8230;<br />
        <a href="http://www.duke.edu/~kjr10/vpn/vpn-4.8.02.tar.gz" rel="nofollow">http://www.duke.edu/~kjr10/vpn/vpn-4.8.02.tar.gz</a><br />
  (2) gunzip vpn-4.8.02.tar.gz<br />
  (3) tar -xvf vpn-4.8.02.tar<br />
  (4) cd vpn<br />
  (5) sudo ./vpn_install<br />
             answer &#8220;yes&#8221; for source code path<br />
             answer &#8220;no&#8221;  for start VPN on boot<br />
  (6) /opt/cisco-vpnclient/bin/cisco_cert_mgr -R -op import<br />
             enter &#8220;ThawteServerCA.509&#8243; when prompted<br />
  (7) sudo /etc/init.d/vpnclient_init start<br />
  (8) vpnclient connect duke-broadband<br />
             enter username and password</p>
<p>  &#8230; voila! &#8230;</p>
<p>[Editor's note: Just tried on Ubuntu Jaunty 64-bit AMD, and it crashed with  a seg fault.]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Evangelism does not mean Ethnophobia: a response to &#8220;The Dawn&#8221; by Suzanne</title>
		<link>http://typiconman.wordpress.com/2007/11/04/evangelism-does-not-mean-ethnophobia-a-response-to-the-dawn/#comment-361</link>
		<dc:creator>Suzanne</dc:creator>
		<pubDate>Fri, 27 Feb 2009 21:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/2007/11/04/evangelism-does-not-mean-ethnophobia-a-response-to-the-dawn/#comment-361</guid>
		<description>Converts who are resistant to Russian or Greek culture are sadly missing an important element of the faith they have chosen to profess.   You can&#039;t go back to Pre-Schism Ireland in the year 600 and be &quot;Celtic Orthodox.&quot;  You can&#039;t do it, because there are no time machines to transport you!  For whatever reason, God chose Greece, Russia and other Eastern countries to preserve the true faith.  If you don&#039;t like the &quot;ethnic&quot; side of Orthodoxy, I&#039;m afraid your journey will somehow lack some very nourishing fruit.</description>
		<content:encoded><![CDATA[<p>Converts who are resistant to Russian or Greek culture are sadly missing an important element of the faith they have chosen to profess.   You can&#8217;t go back to Pre-Schism Ireland in the year 600 and be &#8220;Celtic Orthodox.&#8221;  You can&#8217;t do it, because there are no time machines to transport you!  For whatever reason, God chose Greece, Russia and other Eastern countries to preserve the true faith.  If you don&#8217;t like the &#8220;ethnic&#8221; side of Orthodoxy, I&#8217;m afraid your journey will somehow lack some very nourishing fruit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Study: Being Gay Prevents Global Warming by Suzanne</title>
		<link>http://typiconman.wordpress.com/2007/10/13/study-being-gay-prevents-global-warming/#comment-360</link>
		<dc:creator>Suzanne</dc:creator>
		<pubDate>Fri, 27 Feb 2009 21:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/2007/10/13/study-being-gay-prevents-global-warming/#comment-360</guid>
		<description>Oh come on...
 Misquoting Plato: How liberals corrupted ancient philosophy is my favorite book!

(I doubt Chavez and Amadinijad are &quot;Western-style&quot; pro-gay.)</description>
		<content:encoded><![CDATA[<p>Oh come on&#8230;<br />
 Misquoting Plato: How liberals corrupted ancient philosophy is my favorite book!</p>
<p>(I doubt Chavez and Amadinijad are &#8220;Western-style&#8221; pro-gay.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ukraine&#8217;s Political Drama by Alex</title>
		<link>http://typiconman.wordpress.com/2008/07/29/ukraine1020/#comment-357</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 09 Feb 2009 20:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/?p=66#comment-357</guid>
		<description>Kharkov is going to host Euro-2012 games. The city will accept ten thousand fans from Europe. And none of them knows, that during 2007 year 10423 tuberculosis infected persons have died in Ukraine. Many of them have forgotten, that illness. Germany, Finland, Austria, Italy do not inoculate their citizenzs against this lethal disease.

Unfortunately, funds became insufficient and the Kharkov authorities made an original decision. Keeping within the limits of Euro-2012 preparation Kharkov reduces the number of tubercular departments. So, by March, 15th 345 places of 545 available will be reduced in the first Kharkov’s antitubercular clinic №1. But do not worry, it is a temporary situation: liquidation of last two hundred places and complete liquidation of the whole clinic will occur till the end of this year.
&lt;a&gt;http://ua-ru-news.blogspot.com/2009/01/shvonders-struggle-with-crisis.html&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Kharkov is going to host Euro-2012 games. The city will accept ten thousand fans from Europe. And none of them knows, that during 2007 year 10423 tuberculosis infected persons have died in Ukraine. Many of them have forgotten, that illness. Germany, Finland, Austria, Italy do not inoculate their citizenzs against this lethal disease.</p>
<p>Unfortunately, funds became insufficient and the Kharkov authorities made an original decision. Keeping within the limits of Euro-2012 preparation Kharkov reduces the number of tubercular departments. So, by March, 15th 345 places of 545 available will be reduced in the first Kharkov’s antitubercular clinic №1. But do not worry, it is a temporary situation: liquidation of last two hundred places and complete liquidation of the whole clinic will occur till the end of this year.<br />
<a>http://ua-ru-news.blogspot.com/2009/01/shvonders-struggle-with-crisis.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Priorities for the New Patriarch by James Stuart</title>
		<link>http://typiconman.wordpress.com/2009/02/02/priorities-for-the-new-patriarch/#comment-355</link>
		<dc:creator>James Stuart</dc:creator>
		<pubDate>Mon, 02 Feb 2009 22:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/?p=120#comment-355</guid>
		<description>I am struck on how the variety of Western press articles (or lack of) on the enthronement of Patriarch Kirill, distills
to two or three limited themes, his relationship with other world religious leaders, especially the Roman Catholic Pope, his relationship with the Russian
government and the question of of him being a reformer/modernizer. 

Another item that is mentioned quite often with sinister connotations, is his 
&quot;possibly&quot;, &quot;potentially&quot;, &quot;high unlikely but in the realm of possibility&quot;, of him having a &quot;rumored&quot;,  &quot;whispered&quot;, &quot;controversial&quot; past with the Soviet KGB, and his role in importing of tax free tobacco products, that made him extremely rich in the process. The press didn&#039;t dig deep enough, because he also ran 3/4 of the church
bingo (gambling) halls of America. 

Excuse the tongue-in-cheek, it&#039;s just to show how patently ridiculous these &quot;wink,&quot; &quot;wink,&quot; schoolyard rumors are. Scrape just the surface of these character assassination pieces wrapped in news articles, show the depths the Western press plunges to. 
Even though there is a large variety journalistic voices, they are saying essentially the same things, I wonder who is pulling the strings of all their editors. It&#039;s as if
everyone works for a few large corporations, and trot out the official company line. Either way it is deliberate, so much for providing facts to people to digest and make an opionion.

Were the KGB monitoring the the Russian Orthodox Church, of course. It&#039;s widely known, at least to those who look for it, that Kirill (Vladimir) as a child did not 
join the atheist sponsored Red Pioneers Scouting group (scouting for young commies). And later on in high school he argued with teachers that taught the Darwin 
theory of evolution, that it was wrong. Later as a cleric he worked in ways to tell the Soviets what they wanted, and at the same time undermine their
authority, for instance by restoring the Smolensk diocesce that was ruined by Bolsheviks/Soviets, Nazis, WWII, etc. 

The then Metropolitan Kirill crushed illegal duty free schemes of church income back in the &#039;90s when the Russia was lauded in the West as a model emerging 
democracy, while at home everyone was going broke, Russia was being swindled and sold out by sneaky businessmen and corrupt bureacrats. It was a nuanced situation that was lost on
nearly the entire muckracking Western press, where copy sells much better when you report (false) scandals and then (maybe) apoligize for it at the 
bottom of page 2 &quot;corrections&quot; in tiny lettering. Sorry folks looks like yellow journalism is still thriving even now in the 21th century. Do these 6th grade tactics really work?

The Church has a gone a long way from the early &#039;90s, where I now regulary see on television, icons in offices, on military aircraft, even at police headquarters. Over 30,000 people took the plunge during the Feast of Theophany (Baptism of Christ) in freezing waters in Russia; the numbers are increasing every year. (Right now you couldn&#039;t pay be to do it, one day I&#039;ll gather the courage as well.) For me as an average Orthodox Christian at the local level, some things I look forward to Patriarch Kirill leading the Church in is fostering parish life, social outreach, lay involvment that includes increased levels of church attendance and understanding of the services. Maybe in this the Patriarch is being modern, he&#039;s encouraging the clergy to go seek out youth outside of the Church walls, where-ever they are. Then again what is old seems new again. A lot of time, people, church property, traditions, were lost to the devastation of communism. We need to keep commemorating and never forgetting the people and restore what we can, at the same time, the Church has to keep moving forward to restablish itself as the moral compass of society and fill the vacuum and emptiness left by the athiest state.

On meeting with the Pope, it all depends on actions by the Catholic Church. I cannot wait when the Catholic Church officially backs away from proselytizing in traditional Orthodox lands. There are plenty of people in traditionally Catholic countries that don&#039;t go to church regulary and are somewhat 
lost. 

I have travelled numerous times to Europe and I&#039;m struck by wonder and saddness on seeing the great old Catholic churches, especially in Spain and Italy. Many are quite large and also quite empty; European society is riddled with religious apathy. During Catholic mass, maybe a dozen pews are filled on a regular Sunday, while a typical church was built to accomodate hundreds.

Like any good sheperd, take care of your own flock, make sure it is healthy and growing before trying to take on more sheep. And surely do not try and &quot;borrow&quot; sheep from your neighbor.

Patriarch Kirill is a very good choice to lead the Russian Orthodox Church, I have seen his involvement in shows like Name of Russia, practically jumping on stage in Kiev at a rock concert to give a quick pep-rally/sermon to the 100,000 people in attendance, a regular weekly religious program on TV, etc. We really need him in today&#039;s apathetic and economically trying times.</description>
		<content:encoded><![CDATA[<p>I am struck on how the variety of Western press articles (or lack of) on the enthronement of Patriarch Kirill, distills<br />
to two or three limited themes, his relationship with other world religious leaders, especially the Roman Catholic Pope, his relationship with the Russian<br />
government and the question of of him being a reformer/modernizer. </p>
<p>Another item that is mentioned quite often with sinister connotations, is his<br />
&#8220;possibly&#8221;, &#8220;potentially&#8221;, &#8220;high unlikely but in the realm of possibility&#8221;, of him having a &#8220;rumored&#8221;,  &#8220;whispered&#8221;, &#8220;controversial&#8221; past with the Soviet KGB, and his role in importing of tax free tobacco products, that made him extremely rich in the process. The press didn&#8217;t dig deep enough, because he also ran 3/4 of the church<br />
bingo (gambling) halls of America. </p>
<p>Excuse the tongue-in-cheek, it&#8217;s just to show how patently ridiculous these &#8220;wink,&#8221; &#8220;wink,&#8221; schoolyard rumors are. Scrape just the surface of these character assassination pieces wrapped in news articles, show the depths the Western press plunges to.<br />
Even though there is a large variety journalistic voices, they are saying essentially the same things, I wonder who is pulling the strings of all their editors. It&#8217;s as if<br />
everyone works for a few large corporations, and trot out the official company line. Either way it is deliberate, so much for providing facts to people to digest and make an opionion.</p>
<p>Were the KGB monitoring the the Russian Orthodox Church, of course. It&#8217;s widely known, at least to those who look for it, that Kirill (Vladimir) as a child did not<br />
join the atheist sponsored Red Pioneers Scouting group (scouting for young commies). And later on in high school he argued with teachers that taught the Darwin<br />
theory of evolution, that it was wrong. Later as a cleric he worked in ways to tell the Soviets what they wanted, and at the same time undermine their<br />
authority, for instance by restoring the Smolensk diocesce that was ruined by Bolsheviks/Soviets, Nazis, WWII, etc. </p>
<p>The then Metropolitan Kirill crushed illegal duty free schemes of church income back in the &#8217;90s when the Russia was lauded in the West as a model emerging<br />
democracy, while at home everyone was going broke, Russia was being swindled and sold out by sneaky businessmen and corrupt bureacrats. It was a nuanced situation that was lost on<br />
nearly the entire muckracking Western press, where copy sells much better when you report (false) scandals and then (maybe) apoligize for it at the<br />
bottom of page 2 &#8220;corrections&#8221; in tiny lettering. Sorry folks looks like yellow journalism is still thriving even now in the 21th century. Do these 6th grade tactics really work?</p>
<p>The Church has a gone a long way from the early &#8217;90s, where I now regulary see on television, icons in offices, on military aircraft, even at police headquarters. Over 30,000 people took the plunge during the Feast of Theophany (Baptism of Christ) in freezing waters in Russia; the numbers are increasing every year. (Right now you couldn&#8217;t pay be to do it, one day I&#8217;ll gather the courage as well.) For me as an average Orthodox Christian at the local level, some things I look forward to Patriarch Kirill leading the Church in is fostering parish life, social outreach, lay involvment that includes increased levels of church attendance and understanding of the services. Maybe in this the Patriarch is being modern, he&#8217;s encouraging the clergy to go seek out youth outside of the Church walls, where-ever they are. Then again what is old seems new again. A lot of time, people, church property, traditions, were lost to the devastation of communism. We need to keep commemorating and never forgetting the people and restore what we can, at the same time, the Church has to keep moving forward to restablish itself as the moral compass of society and fill the vacuum and emptiness left by the athiest state.</p>
<p>On meeting with the Pope, it all depends on actions by the Catholic Church. I cannot wait when the Catholic Church officially backs away from proselytizing in traditional Orthodox lands. There are plenty of people in traditionally Catholic countries that don&#8217;t go to church regulary and are somewhat<br />
lost. </p>
<p>I have travelled numerous times to Europe and I&#8217;m struck by wonder and saddness on seeing the great old Catholic churches, especially in Spain and Italy. Many are quite large and also quite empty; European society is riddled with religious apathy. During Catholic mass, maybe a dozen pews are filled on a regular Sunday, while a typical church was built to accomodate hundreds.</p>
<p>Like any good sheperd, take care of your own flock, make sure it is healthy and growing before trying to take on more sheep. And surely do not try and &#8220;borrow&#8221; sheep from your neighbor.</p>
<p>Patriarch Kirill is a very good choice to lead the Russian Orthodox Church, I have seen his involvement in shows like Name of Russia, practically jumping on stage in Kiev at a rock concert to give a quick pep-rally/sermon to the 100,000 people in attendance, a regular weekly religious program on TV, etc. We really need him in today&#8217;s apathetic and economically trying times.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Priorities for the New Patriarch by Tom Heneghan</title>
		<link>http://typiconman.wordpress.com/2009/02/02/priorities-for-the-new-patriarch/#comment-354</link>
		<dc:creator>Tom Heneghan</dc:creator>
		<pubDate>Mon, 02 Feb 2009 15:19:04 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/?p=120#comment-354</guid>
		<description>Many thanks for this interesting list. I&#039;ve commented on it on the Reuters religion blog FaithWorld, where the point about meeting foreign religion leaders first appeared. See http://blogs.reuters.com/faithworld/2009/02/02/priorities-for-kirill-from-a-russian-orthodox-bloggers-perspective/</description>
		<content:encoded><![CDATA[<p>Many thanks for this interesting list. I&#8217;ve commented on it on the Reuters religion blog FaithWorld, where the point about meeting foreign religion leaders first appeared. See <a href="http://blogs.reuters.com/faithworld/2009/02/02/priorities-for-kirill-from-a-russian-orthodox-bloggers-perspective/" rel="nofollow">http://blogs.reuters.com/faithworld/2009/02/02/priorities-for-kirill-from-a-russian-orthodox-bloggers-perspective/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connect to Duke via Cisco VPN by Paul Zurek</title>
		<link>http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-353</link>
		<dc:creator>Paul Zurek</dc:creator>
		<pubDate>Thu, 29 Jan 2009 16:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/2007/12/22/connect-to-duke-via-cisco-vpn/#comment-353</guid>
		<description>This site was instrumental in helping me to get VPN to install. The other good place is linked below: There&#039;s a patch for 64-bit systems plus the other patch mentioned above.

http://www.lamnk.com/blog/domain/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/</description>
		<content:encoded><![CDATA[<p>This site was instrumental in helping me to get VPN to install. The other good place is linked below: There&#8217;s a patch for 64-bit systems plus the other patch mentioned above.</p>
<p><a href="http://www.lamnk.com/blog/domain/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/" rel="nofollow">http://www.lamnk.com/blog/domain/how-to-install-cisco-vpn-client-on-ubuntu-hardy-heron-804/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BBC: we don&#8217;t care who wins, only who&#8217;s third by Милан</title>
		<link>http://typiconman.wordpress.com/2008/12/29/bbcbias/#comment-352</link>
		<dc:creator>Милан</dc:creator>
		<pubDate>Fri, 09 Jan 2009 13:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://typiconman.wordpress.com/?p=115#comment-352</guid>
		<description>*I meant &quot;spinning&quot;. :)</description>
		<content:encoded><![CDATA[<p>*I meant &#8220;spinning&#8221;. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
