<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter posts tagged with perl</title>
      <link>http://ask.metafilter.com/tags/perl</link>
      <description>tag posts with perl</description>
	  	  <pubDate>Thu, 14 Aug 2008 08:02:41 -0800</pubDate>
      <lastBuildDate>Thu, 14 Aug 2008 08:02:41 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>Need a replacement for formmail.pl</title>
	<link>http://ask.metafilter.com/99168/Need-a-replacement-for-formmailpl</link>	
	<description>What is a proven contemporary replacement for formmail.pl? I am about to drag some websites created in 1997 into 2008. These websites use formmail.pl to capture information from input forms and email it off to someone.&lt;br&gt;
&lt;br&gt;
After I strip all of the Claris Homepage tags out of the HTML (!), I&apos;ll need something to capture the information, write it to a file, and periodically email that file. The host computer is an Intel Xserve managed by me, and is running OS X Server 10.5.3, so I have Apache, Perl, MySQL, and PHP at my disposal. The pages are simple HTML, but can be converted to PHP if necessary.&lt;br&gt;
&lt;br&gt;
OSS is preferred, but I will pay for a solution. I&apos;m mostly an interface/admin guy, so writing my own Perl script just ain&apos;t gonna happen. I&apos;m looking for a plug, tweak, and play solution.&lt;br&gt;
&lt;br&gt;
Any recommendations?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.99168</guid>
	<pubDate>Thu, 14 Aug 2008 08:02:41 -0800</pubDate>

<category>formmail</category>

<category>perl</category>

<category>os</category>

<category>x</category>

<category>server</category>

<category>html</category>

<category>php</category>

	<dc:creator>the matching mole</dc:creator>
	</item>
	<item>
	<title>Live AIS data is a web browser</title>
	<link>http://ask.metafilter.com/98913/Live-AIS-data-is-a-web-browser</link>	
	<description>Hi,
Another oddball question... I have a live data stream of AIS data and I would like to take the data and ultimately display it on a world map through a web browser. The problem is that I have no clue as to how I would display live updated information on a map. 
I would like the map to update as the stream of data is coming in. This might be an ambitious project for someone who is weak on web programming, but i figured it would be worth looking into.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.98913</guid>
	<pubDate>Mon, 11 Aug 2008 10:55:58 -0800</pubDate>

<category>AIS</category>

<category>Computer</category>

<category>Maritime</category>

<category>programming</category>

<category>web</category>

<category>php</category>

<category>perl</category>

	<dc:creator>kaozity</dc:creator>
	</item>
	<item>
	<title>Computer languages considered in linguistic contexts?</title>
	<link>http://ask.metafilter.com/97673/Computer-languages-considered-in-linguistic-contexts</link>	
	<description>Computer languages considered in linguistic contexts? I&apos;ve volunteered to give a talk about computer languages, for an audience which is primarily interested in linguistics, not computers.&lt;br&gt;
&lt;br&gt;
One thing I&apos;m definitely going to be talking about is Perl, which is unusual among computer languages in that, for instance, it has &quot;pronouns&quot;. For more detail, see Larry Wall&apos;s &quot;&lt;a href=&quot;http://www.wall.org/~larry/natural.html&quot;&gt;Natural Language Principles In Perl&lt;/a&gt;&quot;. Wall deliberately went against the grain of language construction, it seems to me, in that he didn&apos;t aim for perfection or concision, whereas most language creators would seem to be aiming for something more like a &lt;a href=&quot;http://en.wikipedia.org/wiki/Philosophical_language&quot;&gt;Philosophical Language&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
Another example of a correlation -- I read in Pinker&apos;s &quot;The Language Instinct&quot; that English only has one first-person plural, &quot;we&quot;, but other languages have more than one, which distinguish between &quot;only you and I&quot;, &quot;you and I and some other people&quot;, &quot;some other people and I but not you&quot; etc. Could that be considered analogous to &quot;strong typing&quot; in a computer language, where you can&apos;t have a variable be a number at one point, then a text string at another point?&lt;br&gt;
&lt;br&gt;
I&apos;m just looking for any interesting resources, links, opinions, ideas on the subject.&lt;br&gt;
&lt;br&gt;
It&apos;s not an academic audience, and I don&apos;t have to rise to the standard of a formal lecture, just to be interesting. And I know more about the computer side than the linguistics side, so go easy on me if you&apos;re a linguist.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.97673</guid>
	<pubDate>Sun, 27 Jul 2008 22:43:42 -0800</pubDate>

<category>lingustics</category>

<category>computerlanguages</category>

<category>perl</category>

<category>larrywall</category>

<category>strongtyping</category>

	<dc:creator>AmbroseChapel</dc:creator>
	</item>
	<item>
	<title>Can I write to a div using Perl, or otherwise solve my form submission problem?</title>
	<link>http://ask.metafilter.com/97424/Can-I-write-to-a-div-using-Perl-or-otherwise-solve-my-form-submission-problem</link>	
	<description>Can I write to a div using Perl, or otherwise solve my form submission problem? I have a Perl/CGI form mailer script that I didn&apos;t write and shouldn&apos;t edit too much, but can somewhat.&lt;br&gt;
&lt;br&gt;
It&apos;s currently set up so that I can define the thank you page and error page within the Perl file. I don&apos;t want it to redirect to those pages however. I want to display the messages on the page the form is on instead, without reloading if possible. I played around with redirecting to the same page  but appending a parameter in the URL. Then using JS to show a div if that var was set. But I&apos;m realizing I need to display some of the items  submitted from the form and I don&apos;t know how to keep those values since the page is being refreshed.&lt;br&gt;
&lt;br&gt;
I don&apos;t know Perl so I don&apos;t know if there is a better way to do this, but can I do something like write to a div with Perl? Other ideas?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.97424</guid>
	<pubDate>Thu, 24 Jul 2008 12:11:10 -0800</pubDate>

<category>perl</category>

<category>scripts</category>

<category>forms</category>

<category>web</category>

<category>javascript</category>

<category>cgi</category>

	<dc:creator>unsigned</dc:creator>
	</item>
	<item>
	<title>need a library for text classification</title>
	<link>http://ask.metafilter.com/97052/need-a-library-for-text-classification</link>	
	<description>I need to be able to automatically identify language (English, Japaneese, Russian, etc ... ) in which a particular blog-post has been written. (lang attribute might or might not be available). Few years ago I came across a library for RSS feeds that was doing roughly what I need - can not find it anymore though.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.97052</guid>
	<pubDate>Sun, 20 Jul 2008 16:17:29 -0800</pubDate>

<category>locale</category>

<category>language</category>

<category>rss</category>

<category>blog</category>

<category>feed</category>

<category>python</category>

<category>perl</category>

<category>library</category>

	<dc:creator>chexov</dc:creator>
	</item>
	<item>
	<title>Make Apache recognize Perl!</title>
	<link>http://ask.metafilter.com/92575/Make-Apache-recognize-Perl</link>	
	<description>How can I get my web server to interpret perl I am playing around with perl for the first time in my life. I am using a fedora core 8 machine. It seems to ave all the essentials installed already (apache, php, mySQL, and perl). However, I make a file called perl.pl and it does not seem to translate correctly. Here is what is in the file:&lt;br&gt;
&lt;br&gt;
#!/usr/bin/perl&lt;br&gt;
&lt;br&gt;
print &quot;Content-type: text/html \n\n&quot;; #HTTP HEADER&lt;br&gt;
&lt;br&gt;
# DEFINE SOME SCALAR VARIABLES&lt;br&gt;
$number = &quot;5&quot;;&lt;br&gt;
$exponent = &quot;2 ** 8&quot;;&lt;br&gt;
$string = &quot;Hello, PERL!&quot;;&lt;br&gt;
$stringpart_1 = &quot;Hello, &quot;;&lt;br&gt;
$stringpart_2 = &quot;PERL!&quot;;&lt;br&gt;
$linebreak = &quot;&lt;br&gt;&quot;; #HTML LINEBREAK TAG&lt;br&gt;
&lt;br&gt;
# PRINT THEM TO THE BROWSER&lt;br&gt;
print $number;&lt;br&gt;
print $linebreak;&lt;br&gt;
print $exponent;&lt;br&gt;
print $linebreak;&lt;br&gt;
print $string.$linebreak;&lt;br&gt;
print $stringpart_1.$stringpart_2;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
When you go the the browser, you see the following&lt;br&gt;
http://[ip address]/perl/perl.pl&lt;br&gt;
&lt;br&gt;
As you can see, you prints out exactly what I type. Am I doing anything wrong? Am I suppose to enable a perl service or change a configuration file?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.92575</guid>
	<pubDate>Wed, 28 May 2008 05:49:15 -0800</pubDate>

<category>computer</category>

<category>internet</category>

<category>programming</category>

<category>perl</category>

<category>web</category>

<category>www</category>

	<dc:creator>kaozity</dc:creator>
	</item>
	<item>
	<title>Redirecting users by IP in Apache</title>
	<link>http://ask.metafilter.com/91212/Redirecting-users-by-IP-in-Apache</link>	
	<description>How do I redirect incoming website visitors to an external site by IP address? I&apos;m the general sysadmin here and don&apos;t do much web stuff other than simple content updating, but I think I&apos;m on the right track with adding this bit of mod_rewrite code to the end of the httpd.conf file...&lt;br&gt;
&lt;br&gt;
&lt;ifmodule&gt;&lt;br&gt;
RewriteEngine on&lt;br&gt;
RewriteCond %{REMOTE_ADDR} ^12\.345\.678\.9$&lt;br&gt;
RewriteCond %{REQUEST_URI} ^/index.php$ [NC]&lt;br&gt;
RewriteRule ^/(.*) http://test.foo.com/$1 [R]&lt;br&gt;
&lt;/ifmodule&gt;&lt;br&gt;
&lt;br&gt;
Any ideas why this isn&apos;t working?&lt;br&gt;
&lt;br&gt;
(apache 1.3.33 on OS X)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.91212</guid>
	<pubDate>Mon, 12 May 2008 13:16:56 -0800</pubDate>

<category>www</category>

<category>apache</category>

<category>perl</category>

<category>webmaster</category>

<category>worldwideweb</category>

	<dc:creator>Oktober</dc:creator>
	</item>
	<item>
	<title>Shell scripting or something better?</title>
	<link>http://ask.metafilter.com/91011/Shell-scripting-or-something-better</link>	
	<description>Faster techniques for grabbing lines of a file and doing text manipulation and arithmetic via shell (or other) scripting? 1. Are there faster ways to grab lines of a text file?&lt;br&gt;
&lt;br&gt;
Currently I use &lt;code&gt;while read line&lt;/code&gt; and &lt;code&gt;sed -n #p filename&lt;/code&gt; in &lt;code&gt;bash&lt;/code&gt; and &lt;code&gt;csh&lt;/code&gt; scripts to grab lines of a file I&apos;m interested in. This seems slow. Are there better (faster) ways to get the line of a file, or to iterate through specified ranges of lines in a file?&lt;br&gt;
&lt;br&gt;
2. Are there faster ways than &lt;code&gt;awk&lt;/code&gt; to grab values in a line?&lt;br&gt;
&lt;br&gt;
Let&apos;s say I have the tab-delimited line:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;abc   123   345   0.52&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
What I&apos;d like to do is get the second and third values, or the fourth value, as quickly as possible. Is there a better way than &lt;code&gt;awk&lt;/code&gt;? Will a perl or other interpreted language script run faster than a shell script for scraping values from a text file?&lt;br&gt;
&lt;br&gt;
3. Arithmetic with &lt;code&gt;bash&lt;/code&gt;?&lt;br&gt;
&lt;br&gt;
I&apos;ve been doing &lt;code&gt;$((${value1}+${value2}))&lt;/code&gt; for integer arithmetic and &lt;code&gt;calc ${value1} / ${value2}&lt;/code&gt; for floating point arithmetic within &lt;code&gt;bash&lt;/code&gt;. Will I gain a performance benefit from switching over my code from &lt;code&gt;bash&lt;/code&gt; to another shell script language, or to another interpreted language entirely?&lt;br&gt;
&lt;br&gt;
Thanks for any and all tips and tricks.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.91011</guid>
	<pubDate>Fri, 09 May 2008 14:19:40 -0800</pubDate>

<category>bash</category>

<category>csh</category>

<category>python</category>

<category>perl</category>

<category>script</category>

<category>scripting</category>

<category>arithmetic</category>

<category>processing</category>

<category>text</category>

<category>integer</category>

<category>float</category>

	<dc:creator>Blazecock Pileon</dc:creator>
	</item>
	<item>
	<title>What shopping cart software should I set up?</title>
	<link>http://ask.metafilter.com/87446/What-shopping-cart-software-should-I-set-up</link>	
	<description>Best starting point for e-commerce / shopping cart software? I&apos;m a competent Perl programmer with background in several other languages, who wants to create a decidedly minimalist-looking web site shopping cart for a client.  I expect to hack Perl or PHP code, but would like to hack things that are designed to be hacked.  Anyone tried CRE Loaded?  Other recommendations?  Other places to ask? The old system, heavily modified from an open-source Perl code base, probably should go; I&apos;m pretty confident I can figure out PHP enough to customize something that isn&apos;t actively getting in my way (have modified WordPress successfully) -- but what code to start from?&lt;br&gt;
&lt;br&gt;
I&apos;m willing to pay a little.  I want to install it on my own server space.  I&apos;m very picky about design and usability, so I&apos;ll want to change the front end of anything (that I&apos;ve seen available) substantially.  And oh, I&apos;ll probably want the back end to integrate with our existing payment handling system (Mal&apos;s, in case anyone knows/cares), but I can write that code myself if needed.&lt;br&gt;
&lt;br&gt;
Specific changes I&apos;d want:&lt;br&gt;
- ability for people to purchase without having to &quot;create an account&quot;;&lt;br&gt;
- will keep track of shopping cart contents even if cookies not enabled (i.e., can keep cart ID in URLs if no cookies available)&lt;br&gt;
- URL&apos;s that are sensible words instead of automatically-assigned numbers (maybe called &quot;search engine friendly&quot;?)&lt;br&gt;
- ability to completely customize the layout of the home page and other pages, including product listings - this includes HTML, not just changes to CSS.&lt;br&gt;
&lt;br&gt;
I&apos;ve read some similar questions in AskMe, and &lt;a href=&quot;http://ask.metafilter.com/38703/PHP-Ecommerce-software-for-a-coder&quot;&gt;this one&lt;/a&gt; is almost exactly me, though it&apos;s from 2006.  I&apos;m interested in CubeCart and SquirrelCart, which it recommends, but one option that I&apos;d particularly looked at some years ago is a version of OSCommerce called CRE Loaded -- anyone know that one?&lt;br&gt;
&lt;br&gt;
If there&apos;s a good resource out there in the world, book or web site, that will give a good survey of available software with my particular concerns in mind, or if there&apos;s a better forum you know of for this kind of question, I&apos;d love to hear about it.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.87446</guid>
	<pubDate>Sun, 30 Mar 2008 20:04:15 -0800</pubDate>

<category>shopping</category>

<category>cart</category>

<category>e-commerce</category>

<category>perl</category>

<category>php</category>

<category>oscommerce</category>

<category>zencart</category>

<category>cubecart</category>

<category>squirrelcart</category>

<category>coding</category>

<category>hacking</category>

	<dc:creator>amtho</dc:creator>
	</item>
	<item>
	<title>How should I convert a Thunderbird inbox into text files?</title>
	<link>http://ask.metafilter.com/86158/How-should-I-convert-a-Thunderbird-inbox-into-text-files</link>	
	<description>What&apos;s the best way to export all of the emails in a Thunderbird inbox to text files, one text file per email? I&apos;m planning on doing some linguistic analysis of emails and need to take a Thunderbird inbox and convert it into text files before I get to work. Google searches have revealed many mbox (which I think Thunderbird uses) parsers of, I am sure, varying quality. I&apos;d love to skip the endless trial and error stage and start with the perfect tool. What&apos;s the best way to convert a Thunderbird inbox to text files?&lt;br&gt;
&lt;br&gt;
ps - I&apos;m comfortable using Perl and Python if you guys think a scripting solution is best.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.86158</guid>
	<pubDate>Fri, 14 Mar 2008 11:57:48 -0800</pubDate>

<category>thunderbird</category>

<category>inbox</category>

<category>perl</category>

<category>mbox</category>

<category>scripting</category>

	<dc:creator>eisenkr</dc:creator>
	</item>
	<item>
	<title>Database application freelancer seeking programming language advice</title>
	<link>http://ask.metafilter.com/86020/Database-application-freelancer-seeking-programming-language-advice</link>	
	<description>I&apos;m planning on starting a database freelancing business. I understand a lot of people prefer Microsoft Access or FileMaker. With the current evolving trend of applications going on the web and add to that my somewhat good experience with PHP, HTML, Javascript and CSS I&apos;m seeking a cross platform efficient application environment. This is why I believe Access and FileMaker are not an option, I&apos;m also more experienced with high level languages than I am with Access or FileMaker. I am currently looking into alternatives. I have been looking at different frameworks and toolkits. These are generally what I have come up with;&lt;br&gt;
&lt;br&gt;
- &lt;a href=&quot;http://gtk.php.net/&quot;&gt;PHP-GTK&lt;/a&gt; (Required &lt;a href=&quot;http://www.gtk.org/&quot;&gt;GTK+&lt;/a&gt; and &lt;a href=&quot;http://php.net/&quot;&gt;PHP&lt;/a&gt;)&lt;br&gt;
- &lt;a href=&quot;http://www.python.org/&quot;&gt;Python&lt;/a&gt; (With &lt;a href=&quot;http://wxpython.org/&quot;&gt;wxPython&lt;/a&gt;/&lt;a href=&quot;http://www.pygtk.org/&quot;&gt;pyGTK&lt;/a&gt;)&lt;br&gt;
- &lt;a href=&quot;http://www.perl.org/&quot;&gt;Perl&lt;/a&gt; (Perl/Tk)&lt;br&gt;
&lt;br&gt;
All those options and similar and require a toolkit and or an interpreter to be installed on the system to work. I&apos;m looking for a cleaner (and possibly compiled or packaged) applications. So I came across other tools such as;&lt;br&gt;
&lt;br&gt;
- Mozilla Gecko (&lt;a href=&quot;http://wiki.mozilla.org/XUL:Xul_Runner&quot;&gt;XULRunner&lt;/a&gt;)&lt;br&gt;
- &lt;a href=&quot;http://www.adobe.com/products/air/&quot;&gt;Adobe Air&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Those seem like the most viable options, however, it would be best if the code was compiled, since each of these applications require a lot of virtual memory. Lastly, I came across &lt;a href=&quot;http://boo.codehaus.org/&quot;&gt;boo&lt;/a&gt; and &lt;a href=&quot;http://www.mono-project.com/Main_Page&quot;&gt;mono&lt;/a&gt;. I like the idea a lot, however there is still the issue of writing and compiling boo code. I only got introduced to boo yesterday.&lt;br&gt;
&lt;br&gt;
I&apos;m very reluctant about getting into Java, C, C++, or C# simply because of the complexity of it compared to the languages above. However, if you have another opinion please feel free to share. I&apos;m open to ideas and criticism. &lt;br&gt;
&lt;br&gt;
I&apos;m confused as to what would be my best option here for a cross platform programming language and framework/toolkit (GUI) for creating portable database (and possible Point of Sale) applications for my town&apos;s local small businesses. What would you recommend?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.86020</guid>
	<pubDate>Thu, 13 Mar 2008 02:34:51 -0800</pubDate>

<category>programming</category>

<category>database</category>

<category>code</category>

<category>framework</category>

<category>toolkit</category>

<category>python</category>

<category>perl</category>

<category>php</category>

<category>gtk</category>

<category>boo</category>

<category>mono</category>

	<dc:creator>mrbloo</dc:creator>
	</item>
	<item>
	<title>Is writing a bad C++ program better than writing it in Perl?</title>
	<link>http://ask.metafilter.com/85968/Is-writing-a-bad-C-program-better-than-writing-it-in-Perl</link>	
	<description>Does compiled vs. interpreted code make a difference if the structure of the algorithm is the same (ie, ugly and slow)? Should I take the extra effort of writing a small program in C++ or just do it in Perl...? I need to write a script that will search for a pattern of characters (let&apos;s say 5 letters, followed by a dash, followed by 3 letters -- or something like that) in EVERY file (of certain types) on the computer.&lt;br&gt;
&lt;br&gt;
Whether I write it in Perl or in C++, it would look the same, I think. &lt;br&gt;
&lt;br&gt;
I would create a list of all the applicable files on the computer and loop through them one by one. Then, for each file, I would get each line and search it for my pattern.  O(n^2), right?&lt;br&gt;
&lt;br&gt;
This seems to be pretty easy to do in Perl, which I have used a lot, but more of a headache to getting it working in C++. However, the only reason I am leaning towards C++ is because this script has to run on at least 100 machines...so something that is faster would be better. &lt;br&gt;
&lt;br&gt;
But if the algorithm is fundamentally the same for both, does it make a difference? Should I just do it in Perl? What about things like memory management and the computer resources being all used up making the machine unusable while the program/script is running? (i.e., these other things besides the actual running time of the program?)&lt;br&gt;
&lt;br&gt;
Thank you for your insight into this.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.85968</guid>
	<pubDate>Wed, 12 Mar 2008 14:13:27 -0800</pubDate>

<category>C</category>

<category>perl</category>

<category>compiled</category>

<category>interpreted</category>

	<dc:creator>omair</dc:creator>
	</item>
	<item>
	<title>How can I run a web server on OS X without admin access?</title>
	<link>http://ask.metafilter.com/84165/How-can-I-run-a-web-server-on-OS-X-without-admin-access</link>	
	<description>How can I run a web server on OS X without admin access? You&apos;ll just have to trust me on the reasons, but I want to to run a fully-functioning web server (or at least, one which can do dynamic pages in Perl or PHP) on OS X (Leopard) machines, without having the administrator password.&lt;br&gt;
&lt;br&gt;
Having it on a USB stick seems the most likely approach -- a web server is an application after all, and I won&apos;t be able to install new applications without the admin password, but I will be able to run an application from a stick.&lt;br&gt;
&lt;br&gt;
This guy says he&apos;s done it, but annoyingly, not how, and hasn&apos;t made the details available: &lt;a href=&quot;http://www.developmentseed.org/blog/2007/aug/03/getting-web-server-run-usb-drive&quot;&gt;http://www.developmentseed.org/blog/2007/aug/03/getting-web-server-run-usb-drive&lt;/a&gt;, and this guy says he&apos;s got a beta version with limited functionality but wants me to pay for it sight unseen: &lt;a href=&quot;http://www.server2go-web.de/features/mac.html&quot;&gt;http://www.server2go-web.de/features/mac.html&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
I reckon I&apos;m probably clueful enough to attempt my own tweaks to MAMPP given a few starting hints. Would it be incredibly difficult?&lt;br&gt;
&lt;br&gt;
Any other solutions or suggestions gratefully received of course.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.84165</guid>
	<pubDate>Wed, 20 Feb 2008 15:31:05 -0800</pubDate>

<category>mac</category>

<category>osx</category>

<category>webserver</category>

<category>apache</category>

<category>php</category>

<category>perl</category>

<category>usbstick</category>

	<dc:creator>AmbroseChapel</dc:creator>
	</item>
	<item>
	<title>Create a simple database website (and gather the data)</title>
	<link>http://ask.metafilter.com/84064/Create-a-simple-database-website-and-gather-the-data</link>	
	<description>I&apos;m undertaking a personal web development and database building project, but I don&apos;t do web development or database building.  Please help me assess the best options to have someone else do the work for me.  I think the stuff I want is fairly easy, but please tell me what you think.
I want to do a set of three things (in priority order):&lt;br&gt;
&lt;br&gt;
1.  Have a simple form where users will input information and that will go into a database.  Input screens will be 2-3 pages total, and I want to easily play with the forms to test conversion, throughput, etc.  A+ answers will let me easily do split A/B testing on the front end.&lt;br&gt;
&lt;br&gt;
2.  Have a searchable database of contacts, all with the same set of data.  Basically contact information, a few links, and some commentary.&lt;br&gt;
&lt;br&gt;
3.  Have someone scrape a whole bunch of different websites to assemble the initial contact database.  (Perl scripting work here probably?)&lt;br&gt;
&lt;br&gt;
4.  Have a contact entry form that will insert data into the contact database.&lt;br&gt;
&lt;br&gt;
5.  All of this should be indexible / crawled by google, and of course have the ability to insert ads.&lt;br&gt;
&lt;br&gt;
6.  Have a non-ugly design.&lt;br&gt;
&lt;br&gt;
7.  (Optional, at outset) have user ability to comment and &quot;rate&quot; these contacts.&lt;br&gt;
&lt;br&gt;
8.  (Optional, at outset) create mashup of contact information and google maps.&lt;br&gt;
&lt;br&gt;
How best to build this?  Hire a rent-a-coder, college student, etc? (If so, how do I go about finding the right person?) Use an off the shelf product and play with it myself?  How much should something like this cost?  (Would love to hire a Mefite - so bids accepted on Mefimail!)  What decisions should I make now that will give me somthing extensible?  What are the main technologies that I should look out for?  I&apos;m sure many other questions here that I&apos;ve not thought of -- so fire away!  Thanks in advance hive mind!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.84064</guid>
	<pubDate>Tue, 19 Feb 2008 15:46:16 -0800</pubDate>

<category>webdevelopment</category>

<category>outsourcing</category>

<category>webdesign</category>

<category>rentacoder</category>

<category>technology</category>

<category>database</category>

<category>perl</category>

<category>webscraping</category>

	<dc:creator>mtstover</dc:creator>
	</item>
	<item>
	<title>Installing perl in a user folder</title>
	<link>http://ask.metafilter.com/81802/Installing-perl-in-a-user-folder</link>	
	<description>Does anyone have any experience with or tips on installing Perl without root privileges? The version of AIX I use at work has an old version of Perl (5.005) that is driving me nuts.  Many of the &apos;core&apos; modules are missing from the install.  Occasionally I spend an evening or weekend putting together a perl script at home, only to find it won&apos;t run at work.&lt;br&gt;
&lt;br&gt;
Our sysadmin doesn&apos;t have a lot of experience with Perl, and is a bit wary of installing a new version, particularly when a lot of overnight batch processing scripts are written in Perl, and he doesn&apos;t want to take the chance that something might break as a result of an upgrade (and I can&apos;t say I blame him).&lt;br&gt;
&lt;br&gt;
I&apos;m going to try installing Perl 5.8.8 at work in my own user folder.  I&apos;ve some experience installing Perl on my home system, but never without superuser privileges.  Are there any things to be aware of, any &apos;gotchas&apos;, any tips that will make it easier, any things you wish &lt;em&gt;you&apos;&lt;/em&gt;d known before doing it?  Is there any chance I could  royally screw things up, even without being superuser?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.81802</guid>
	<pubDate>Wed, 23 Jan 2008 19:37:41 -0800</pubDate>

<category>perl</category>

<category>install</category>

<category>superuser</category>

<category>aix</category>

	<dc:creator>Ritchie</dc:creator>
	</item>
	<item>
	<title>Looking for non-WYSIWYG web-based file editor app</title>
	<link>http://ask.metafilter.com/80860/Looking-for-nonWYSIWYG-webbased-file-editor-app</link>	
	<description>Old-school, non-WYSIWYG web-based file editor apps. Do they still exist? My friend used to pay her webmaster to make updates to her site. Now she wants to make the updates herself. She knows very basic HTML, and doesn&apos;t really grasp FTP. She&apos;s used to logging into a website and editing in a textarea, not things like Dreamweaver/HomeSite/Nvu etc.&lt;br&gt;
&lt;br&gt;
I&apos;m looking for a dead simple editor, preferably written in PHP or Perl, that we can install on her host account that will let her edit pages. As I recall, these web editors were popular pre-2000, usually a CGI that came as part of a hosting package.&lt;br&gt;
&lt;br&gt;
Wordpress, Drupal, et al are not an option since she has no one to assist her with migration. Her existing site is all flat files, about ten pages total. She simply wants to edit these files as needed.&lt;br&gt;
&lt;br&gt;
I spent quite a bit of time on Freshmeat and Google, but haven&apos;t found anything.  Suggestions from the hive mind?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.80860</guid>
	<pubDate>Sat, 12 Jan 2008 18:47:13 -0800</pubDate>

<category>file</category>

<category>editor</category>

<category>online</category>

<category>non-WYSIWYG</category>

<category>hosting</category>

<category>PHP</category>

<category>Perl</category>

	<dc:creator>scottandrew</dc:creator>
	</item>
	<item>
	<title>Webumake Nomakeweb...Anymore.</title>
	<link>http://ask.metafilter.com/80062/Webumake-NomakewebAnymore</link>	
	<description>My company is using a product called &lt;a href=&quot;http://scripts.filehungry.com/product/cgi_perl/homepage_communities/webumake_web&quot;&gt;&quot;Webumake&quot;&lt;/a&gt; and the internal WYSIWYG editor does not work in IE7, Firefox, IE6 on the Mac... The vendor no longer supports the product and we are either:&lt;br&gt;
&lt;br&gt;
1) looking for a current fix&lt;br&gt;
2) looking for someone to fix the script (Perl)&lt;br&gt;
3) moving to a new platform and trying to re-map the urls and import (alot) of content&lt;br&gt;
&lt;br&gt;
If anyone has an experience with this product have leads/referrals on fixing the script, your input/help is appreciated. &lt;br&gt;
&lt;br&gt;
Kindly,&lt;br&gt;
&lt;br&gt;
mic stand</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.80062</guid>
	<pubDate>Thu, 03 Jan 2008 10:49:58 -0800</pubDate>

<category>perl</category>

<category>scripting</category>

<category>webumake</category>

	<dc:creator>mic stand</dc:creator>
	</item>
	<item>
	<title>Regex Alms for the Perl-less?</title>
	<link>http://ask.metafilter.com/79601/Regex-Alms-for-the-Perlless</link>	
	<description>Help me composite some regex.

&lt;small&gt;(That phrasing makes this question sound &lt;em&gt;way&lt;/em&gt; less nerdy than it is)&lt;/small&gt; Here&apos;s a regex to find some stuff between square brackets:&lt;br&gt;
/\[[^\]]+\]/&lt;br&gt;
&lt;br&gt;
Here&apos;s one that finds something like Alt: or alt. or Alternative: or alternate or Alternate: or Alternative or Alt.: or you get the idea [note it ends with \s+; it is important for my application that the &quot;Alt___ &quot; I&apos;m testing for has white space at the end, and that I test for it. In the final answer we can test for that word boundary any way we like, we just need to make sure that we &lt;em&gt;do&lt;/em&gt;.]:&lt;br&gt;
/(A|a)lt(\.|ernat(e|ive))?:?\s+/&lt;br&gt;
&lt;br&gt;
So what I need is a regular expression for &quot;stuff between square brackets where the first thing inside the brackets will NOT match the second regex.&quot; Or &quot;Stuff inside square brackets that begins with anything BUT alt or Alt. or Alternate or alternative: or alt.: or etc. etc.&lt;br&gt;
&lt;br&gt;
I feel like this should be easy, but I never bothered to totally and completely grok regex, and obviously I&apos;m hurting now because of it.  I&apos;d very much appreciate any help anyone could give, and in exchange you&apos;ll get co-author credit for the &lt;strong&gt;amazing&lt;/strong&gt; piece of software that this thing will ultimately be a part of!  ;-)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.79601</guid>
	<pubDate>Fri, 28 Dec 2007 02:12:28 -0800</pubDate>

<category>regex</category>

<category>regularexpression</category>

<category>regularexpressions</category>

<category>perl</category>

<category>headache</category>

	<dc:creator>ChasFile</dc:creator>
	</item>
	<item>
	<title>Apache/GrepFilter: Number Four Son, He Never Calls</title>
	<link>http://ask.metafilter.com/75392/ApacheGrepFilter-Number-Four-Son-He-Never-Calls</link>	
	<description>GrepFilter: How to pull the last 10 authusers from an Apache log file, without all the noise? This is why I flunked out of compsci. &lt;br&gt;
&lt;br&gt;
I made a little extranet web thingie for my world-scattered family to use to stay in touch and so on. It works great, technically, but of course it&apos;s a pain always nagging everyone to use it. So I&apos;d like to use the power of passive-aggressive love, by just showing the last time each user has logged in on the home page. Then my family can all guilt each other into being more regular.&lt;br&gt;
&lt;br&gt;
Everyone&apos;s an htaccess user, so the info is right there in the apache logs. But I&apos;m out of my depth here. I&apos;m looking for a quickie grep/shellscript/perl way to pull the last ten unique authusers (htusers) from a standard apache logfile, with dates. &lt;br&gt;
&lt;br&gt;
My regular old apache log looks like this:&lt;br&gt;
&lt;br&gt;
&lt;small&gt;&lt;br&gt;
in.log&lt;br&gt;
====&lt;br&gt;
74.53.68.133 - no1son [01/Nov/2007:01:13:15 -0400] &quot;GET /page.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
74.53.68.133 - no1son [01/Nov/2007:01:13:31 -0400] &quot;GET /page1.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
64.13.232.151 - no2son [02/Nov/2007:12:13:01 -0400] &quot;GET /page.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
68.178.232.99 - no2son [02/Nov/2007:12:13:11 -0400] &quot;GET /page3.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
68.178.232.99 - no2son [02/Nov/2007:12:13:22 -0400] &quot;GET /page.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
74.53.68.130 - no1son [03/Nov/2007:14:13:36 -0400] &quot;GET /page.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
74.53.68.130 - no1son [03/Nov/2007:14:13:37 -0400] &quot;GET /page4.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
68.178.232.99 - no3son [04/Nov/2007:03:13:32 -0400] &quot;GET /page9.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
68.178.232.99 - no3son [04/Nov/2007:03:13:35 -0400] &quot;GET /page3.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
64.13.232.151 - no2son [04/Nov/2007:09:13:36 -0400] &quot;GET /page.htm HTTP/1.1&quot; 200 - &quot;referrer stuff&quot;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/small&gt;&lt;br&gt;
And I want to turn that into this (just a text file) on demand:&lt;br&gt;
&lt;small&gt;&lt;br&gt;
&lt;br&gt;
out.txt&lt;br&gt;
=====&lt;br&gt;
Most Recent Logins By:&lt;br&gt;
-----&lt;br&gt;
no1son	03/Nov/2007	14:13:37&lt;br&gt;
no2son	04/Nov/2007	09:13:36&lt;br&gt;
no3son	04/Nov/2007 03:13:35&lt;br&gt;
no4son	never&lt;br&gt;
&lt;/small&gt;&lt;br&gt;
&lt;br&gt;
So I&apos;d like a shell script or something (perl?) that I can invoke when I feel like it, or from a cron job, or something. Notice that number four son, he never logs in at all. I need to cover that, maybe by calling the script with a list of uids I&apos;m looking for?&lt;br&gt;
&lt;br&gt;
But my perl is poor, and my grep skills worse. I can get the last lines from each user out, I think, but then I hit the wall of ripping apart the &quot;fields&quot; usefully and the wall of trying to grep (?) out stuff with square brackets and dashes... and those walls HURT my poor little head.&lt;br&gt;
&lt;br&gt;
Can someone show me a simple way to do this? If the big parts work, I can muddle my way through refining it. But a couple hours of Google has just left me feeling inadequate, like a bad son. :(</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.75392</guid>
	<pubDate>Sun, 04 Nov 2007 08:17:23 -0800</pubDate>

<category>apache</category>

<category>perl</category>

<category>grep</category>

	<dc:creator>rokusan</dc:creator>
	</item>
	<item>
	<title>Address Parsing 101, please!!</title>
	<link>http://ask.metafilter.com/75358/Address-Parsing-101-please</link>	
	<description>ParseFilter: I have a CSV file full of leads I need to parse into a more, er, concise format.  What would the hive mind recommend? It seems to be quite a bit similar to &lt;a href=&quot;http://ask.metafilter.com/75235/Parse-freetext-postal-addresses-to-structured-form-for-geocoding-to-KML&quot;&gt;this thread&lt;/a&gt;, except I&apos;ve already got the data in CSV format.  But that doesn&apos;t mean it&apos;s worth anything to me!&lt;br&gt;
&lt;br&gt;
It looks like this: NAME, ADDR1, ADDR2, ADDR3, ADDR4.  But it might as well be NAME, ONEBIGLONGSTRINGOFSTUFF.  Sometimes city and state are in ADDR3 and sometimes in ADDR4.  There might be email addresses or phone or fax numbers mixed in, too.  &lt;br&gt;
&lt;br&gt;
At first I thought I might just try to geocode each record, but I think there&apos;s probably a smarter option.  Someone mentioned using sed in the other post, but I can&apos;t seem to figure out exactly how to go about doing that.  Ruby would be peachy, too!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.75358</guid>
	<pubDate>Sat, 03 Nov 2007 15:01:03 -0800</pubDate>

<category>parsing</category>

<category>sed</category>

<category>addresses</category>

<category>csv</category>

<category>awk</category>

<category>ruby</category>

<category>perl</category>

	<dc:creator>cdmwebs</dc:creator>
	</item>
	<item>
	<title>Parse freetext postal addresses to structured form for geocoding to KML?</title>
	<link>http://ask.metafilter.com/75235/Parse-freetext-postal-addresses-to-structured-form-for-geocoding-to-KML</link>	
	<description>Parse freetext postal addresses to structured form for geocoding to KML?
I have a bunch of contact information (harvested from a very user-unfriendly aetna docfind website) that I want to plot on a google map. Naturally, the info is unstructured. If I want to use &lt;a href=&quot;http://www.batchgeocode.com/&quot;&gt;batchgeocode.com&lt;/a&gt; I need to get it into a structured CSV format. &lt;br&gt;
&lt;br&gt;
Back when I used windows, I used to use a product called &lt;a href=&quot;http://www.egrabber.com/&quot;&gt;ListGrabber&lt;/a&gt; to perform this operation. Now I&apos;m on the Mac, and I don&apos;t pirate software anymore, so any good options?&lt;br&gt;
&lt;br&gt;
I came across &lt;a href=&quot;http://cpan.uwinnipeg.ca/htdocs/Geo-StreetAddress-US/Geo/StreetAddress/US.pm.html&quot;&gt;Geo::StreetAddress::US&lt;/a&gt;, but I&apos;m not so perl-savvy anymore (I lean towards python and ruby), and it won&apos;t separate out the names nicely (though I can probably find a way around that).&lt;br&gt;
&lt;br&gt;
How would you do this?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.75235</guid>
	<pubDate>Thu, 01 Nov 2007 19:53:56 -0800</pubDate>

<category>parser</category>

<category>programming</category>

<category>perl</category>

<category>ruby</category>

<category>python</category>

<category>kml</category>

<category>geocoding</category>

	<dc:creator>joshwa</dc:creator>
	</item>
	<item>
	<title>Show me those Perly whites</title>
	<link>http://ask.metafilter.com/74167/Show-me-those-Perly-whites</link>	
	<description>How do I color output in Perl? I don&apos;t mean in HTML pages, just in regular old shell output from Perl scripts. (I&apos;ve installed the Win32::Console mod, am calling it at the beginning, and using the right syntax, but am getting an error about undefined values and such...)&lt;br&gt;
&lt;br&gt;
Any advice for that mod, plus pointers on the various other ways to get color (and maybe other console functionality like CLS, etc. - but colors are the most important) I know exist would be great. Thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.74167</guid>
	<pubDate>Thu, 18 Oct 2007 20:41:06 -0800</pubDate>

<category>perl</category>

<category>color</category>

<category>console</category>

<category>modules</category>

	<dc:creator>Slam I Am</dc:creator>
	</item>
	<item>
	<title>Help Me Morbidly Count Down the Remaining Days of My Life!</title>
	<link>http://ask.metafilter.com/72555/Help-Me-Morbidly-Count-Down-the-Remaining-Days-of-My-Life</link>	
	<description>I would basically like to rip off, wholesale, some command-line script which will provide me a countdown -- only in days.  No years, months, minutes, or seconds.  Unfortunately, adapting an existing script is beyond my ken. &lt;a href=&quot;http://kk.org/ct2/2007/09/my-life-countdown-1.php&quot;&gt;This idea of Kevin Kelly&apos;s&lt;/a&gt; inspired me to perhaps try something similar to motivate me towards working more diligently towards long-term personal goals, but I&apos;m not an iGoogle user.  I&apos;d like to instead set it up as the result of a shell script which I can then pipe through GeekTool onto my Mac OS X desktop.&lt;br&gt;
&lt;br&gt;
The only problem is that there is a lot of Googlenoise out there clogging up the results, and I can&apos;t seem to find the kind of script I&apos;m looking for.  I did find a countdown script that would tell it to me in years, months, days, horus minutes, and seconds -- but I really would prefer a days-only readout, similar to that depicted on the page.  And I see various Javascript to include on webpages -- but I&apos;m looking for something to be done locally, and I can&apos;t use the Javascript and then pipe it through lynx or links, since when I bring up such a page using either, the Javascript result doesn&apos;t seem to show.  (I doubt lynx or links has Javascript support, do they?)&lt;br&gt;
&lt;br&gt;
Anyway, can anyone point me towards a shell script that will take the present date, subtract it from a future date, and tell me the number of days between then and now?&lt;br&gt;
&lt;br&gt;
I should add that I&apos;m an idiot savante when it comes to shell scripting and Perl ... more of a splicer than anything resembling a programmer.  I can sometimes look at code and grok a little of what it&apos;s saying, but telling me to embed the Doohickie:Flippa library into the Perl output by piping it through the black hole matrix into my Bananaphone is going to make me look at you blankly. &lt;br&gt;
&lt;br&gt;
Thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.72555</guid>
	<pubDate>Thu, 27 Sep 2007 15:16:04 -0800</pubDate>

<category>countdown</category>

<category>shell</category>

<category>perl</category>

<category>script</category>

<category>unix</category>

<category>mac</category>

<category>os</category>

<category>x</category>

<category>macosx</category>

<category>osx</category>

<category>resolved</category>

	<dc:creator>WCityMike</dc:creator>
	</item>
	<item>
	<title>I need dynamic pages without PHP or a database. What are my options?</title>
	<link>http://ask.metafilter.com/71401/I-need-dynamic-pages-without-PHP-or-a-database-What-are-my-options</link>	
	<description>Without access to PHP, MySQL, or any other fancy server-side stuff I still need to have dynamic pages. What are my options? Environment: Corporate setting where PHP, MySQL, and anything that doesn&apos;t cost thousands of dollars must be banned for &quot;security issues&quot;.&lt;br&gt;
&lt;br&gt;
My goal is twofold&lt;br&gt;
&lt;br&gt;
1. I have a colleague that would like to setup a job queue to track their print jobs (they are a print shop). Currently they have an excel file that has all the nitty gritty details of who ordered what and whether it has printed or not and they share this file though a file server. He wanted to find a way to make the collaboration a bit more dynamic where they would automatically see things as they were updated by any of the 4 people who would be adding jobs.&lt;br&gt;
&lt;br&gt;
My thought was to create a webpage tied to a web server that they can all map to as a network drive. The page would be set to auto-refresh every 10 seconds or so. Give each of the 4 people NVU and show them how to edit the table and they&apos;re good to go. The problem is the Excel file currently has a conditional format that says if they put an &quot;X&quot; into a certain cell, the row turns red. I need to make that happen on the webpage using javascript and css and I&apos;m lost on how to dynamically say &quot;If the contents of this table data cell has an X, change the span tag to Y&quot; in order to call on that in the stylesheet.&lt;br&gt;
&lt;br&gt;
2. Obviously everyone is probably thinking how much easier it would be to find something open source that would fit the bill, if only we were allowed to use perl, php, and all the other fine things in this world. This particularly hits home because in my department we would like to begin collaborating on a large documentation knowledge base. A wiki or something like Bugzilla would be great but all these content management systems require server-side action. Is there any possibility we could squeak by with some fancy javascript saving to txt-based files within the webspace? Does any CMS like that even exist?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.71401</guid>
	<pubDate>Wed, 12 Sep 2007 15:56:46 -0800</pubDate>

<category>css</category>

<category>javascript</category>

<category>php</category>

<category>mysql</category>

<category>perl</category>

<category>server</category>

<category>scripts</category>

	<dc:creator>genial</dc:creator>
	</item>
	<item>
	<title>Test harness for SNMP traps?</title>
	<link>http://ask.metafilter.com/68186/Test-harness-for-SNMP-traps</link>	
	<description>Is there a freeware or light weight tool (e.g. perl script) we can use to show us that the SNMP traps are received successfully? I&apos;m implementing IBM Tivoli Omegamon XE for Messages within a Windows 2003 environment.  One of our challenges is to integrate with other monitoring tools already within the environment, we&apos;ve chosen to send SNMP traps.  While we appear to be sending these traps successfully, the consuming application isn&apos;t quite ready to receive them (i.e. they havent installed it yet).  &lt;br&gt;
 &lt;br&gt;
Is there a freeware or light weight tool (e.g. perl script) we can use to show us that the SNMP traps are received successfully?&lt;br&gt;
 &lt;br&gt;
I&apos;m already investigating Net-SNMP (ref: sourceforge), but I was looking for recommendations.  This is quite a restricted environment, so I&apos;d prefer not to try to introduce new tools, but scripts etc are a-ok.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.68186</guid>
	<pubDate>Mon, 30 Jul 2007 17:13:18 -0800</pubDate>

<category>SNMP</category>

<category>Monitoring</category>

<category>Trap</category>

<category>Perl</category>

<category>test</category>

<category>testharness</category>

<category>network</category>

<category>event</category>

	<dc:creator>kaydo</dc:creator>
	</item>
	
	</channel>
</rss>

