<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://mcfedries.com/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Lingua Techna - All Comments</title><link>http://mcfedries.com/cs/blogs/paul/default.aspx</link><description>&lt;b&gt;Technology, language, and technical writing (plus some interesting stuff, too)&lt;/b&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP2 (Build: 20611.960)</generator><item><title>re: Information at Your Fingertips</title><link>http://mcfedries.com/cs/blogs/paul/archive/2009/03/27/information-at-your-fingertips.aspx#496</link><pubDate>Sun, 15 Nov 2009 19:50:48 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:496</guid><dc:creator>MMSproul</dc:creator><description>&lt;p&gt;Hi Paul, My name is Matthew and I bought your book, Creating a Web Page... &lt;/p&gt;
&lt;p&gt;I have a few questions thro... Do I need a business license ? Where do I find a Privacy Policy ? &amp;nbsp;My site is called www.yurpost.com &amp;nbsp;I haven't finished it yet, so I didn't up-load it, I still have a lot of work to do to it.... It's a site that everyone can post there artistic abilities and has lots of categories... I'm concerned about the copyright and legal stuff that I need to know.. Also, Can I use the graphics in the books CD for my web site ?? Hope you can help..... Thank you. Matt Sproul &lt;/p&gt;
&lt;p&gt;wtre8@yahoo.com&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=496" width="1" height="1"&gt;</description></item><item><title>Viagra soft tabs.</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/05/05/word-spy-tech-terms-lifestreaming.aspx#415</link><pubDate>Sat, 04 Jul 2009 13:05:14 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:415</guid><dc:creator>Viagra on line.</dc:creator><description>&lt;p&gt;Viagra. Buy viagra. Indian viagra.&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=415" width="1" height="1"&gt;</description></item><item><title>re: Information at Your Fingertips</title><link>http://mcfedries.com/cs/blogs/paul/archive/2009/03/27/information-at-your-fingertips.aspx#378</link><pubDate>Wed, 06 May 2009 17:44:49 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:378</guid><dc:creator>PaoloSiani</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I'm trying to write a javascript funtion that would determine the number of days left in a specific month entered by the user. Basically the page will have two TBox where the user will enter the month and the date, than a button to call the final function that determine the days left in that month and will display it in another text box on the page. I just got started but I'm already stuck! I would appreciate any help.&lt;/p&gt;
&lt;p&gt;here is my program so far (probably with some errors):&lt;/p&gt;
&lt;p&gt;&amp;lt;html&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;head&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;title&amp;gt;Days Left in the Month&amp;lt;/title&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;//Paolo Zoglianti&lt;/p&gt;
&lt;p&gt;//This function will detrmine the total days in the month entered by the user&lt;/p&gt;
&lt;p&gt;function daysInTheMonth(month)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;	var monthsDays;&lt;/p&gt;
&lt;p&gt;	monthsDays=parseInt(window.document.dayForm.monthTBox.value);&lt;/p&gt;
&lt;p&gt;	if (month==2){&lt;/p&gt;
&lt;p&gt;		monthsDays=28;&lt;/p&gt;
&lt;p&gt;	}&lt;/p&gt;
&lt;p&gt;		else {&lt;/p&gt;
&lt;p&gt;			if (month==4)||(usersMonth==6)||(month==8)|| (month==11){&lt;/p&gt;
&lt;p&gt;				monthsDays=30;&lt;/p&gt;
&lt;p&gt;			}&lt;/p&gt;
&lt;p&gt;				else {&lt;/p&gt;
&lt;p&gt;					monthsDays=31;&lt;/p&gt;
&lt;p&gt;				}&lt;/p&gt;
&lt;p&gt;		}	&lt;/p&gt;
&lt;p&gt;	return monthsDays;&lt;/p&gt;
&lt;p&gt;}	&lt;/p&gt;
&lt;p&gt;function determineDaysLeft();&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;	var month;&lt;/p&gt;
&lt;p&gt;	var daysIn;&lt;/p&gt;
&lt;p&gt;	var daysLeft;&lt;/p&gt;
&lt;p&gt;	daysIn=parseInt(window.document.dayForm.dateTBox.value);&lt;/p&gt;
&lt;p&gt;	month=daysInTheMonth(month);&lt;/p&gt;
&lt;p&gt;	daysLeft = month - daysIn;&lt;/p&gt;
&lt;p&gt;	//display in text box&lt;/p&gt;
&lt;p&gt;	window.document.dayForm.daysLeftTBox=daysLeft;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;body&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;form name=&amp;quot;dayForm&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;Enter a month (1-12): &lt;/p&gt;
&lt;p&gt;&amp;lt;input type=&amp;quot;text&amp;quot; size=&amp;quot;25&amp;quot; name=&amp;quot;monthTBox&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;br/&amp;gt;&lt;/p&gt;
&lt;p&gt;Enter the date (1-31): &lt;/p&gt;
&lt;p&gt;&amp;lt;input type=&amp;quot;text&amp;quot; size=&amp;quot;25&amp;quot; name=&amp;quot;dateTBox&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;br/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;input type=&amp;quot;button&amp;quot; value=&amp;quot;How many days left?&amp;quot; onClick=&amp;quot;determineDaysLeft();&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;br/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;hr/&amp;gt;&lt;/p&gt;
&lt;p&gt;The number of days left in the month is: &lt;/p&gt;
&lt;p&gt;&amp;lt;input type=&amp;quot;text&amp;quot; size=&amp;quot;25&amp;quot; name=&amp;quot;daysLeftTBox&amp;quot;&amp;gt;&amp;lt;/input&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;br/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/form&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/body&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=378" width="1" height="1"&gt;</description></item><item><title>re: Why shouldn't we coin new words?</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/11/10/why-shouldn-t-we-coin-new-words.aspx#284</link><pubDate>Mon, 29 Dec 2008 17:46:54 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:284</guid><dc:creator>jasonsurety</dc:creator><description>&lt;p&gt;I think we should. Especially in the case of creating adverbs from adjectives by adding an 'ly'. For instance, why not create the word xerophilously from xerophilous - things could be said to live xerophilously. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Another example of word that in my opinion should be coined is chalant. Why can we be nonchalant but not chalant?&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=284" width="1" height="1"&gt;</description></item><item><title>re: It's Official: Teen Instant Messages Nothing But Gibberish</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/18/it-s-official-teen-instant-messages-nothing-but-gibberish.aspx#278</link><pubDate>Wed, 17 Dec 2008 00:49:43 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:278</guid><dc:creator>LoCoFeelYa</dc:creator><description>&lt;p&gt;Seems to show how much intrest the Feds have in all form of communications. This type of messaging would be a way of sending messages in code that would be very hard to, &amp;quot;Break&amp;quot;.... Its a Brave New World.&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=278" width="1" height="1"&gt;</description></item><item><title>re: A Corollary to McKean's Law</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/08/12/a-corollary-to-mckean-s-law.aspx#239</link><pubDate>Wed, 22 Oct 2008 11:41:21 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:239</guid><dc:creator>Joy-Mari</dc:creator><description>&lt;p&gt;I couldn&amp;#39;t read the article because I have to pay 5 dollars for it. Is there any way you could repost the article?&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=239" width="1" height="1"&gt;</description></item><item><title>re: UN Establishes Vowel Relief Fund</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/10/16/un-establishes-vowel-relief-fund.aspx#232</link><pubDate>Mon, 20 Oct 2008 11:39:17 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:232</guid><dc:creator>david giltinan</dc:creator><description>&lt;p&gt;This is presumably just an updated version of Clinton&amp;#39;s celebrated &amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://www.angelfire.com/ok5/pearly/htmls/onion-vowels.html&amp;quot;&amp;gt;"&gt;www.angelfire.com/.../onion-vowels.html&amp;quot;&amp;gt;&lt;/a&gt; Vowels to Bosnia &amp;lt;/a&amp;gt; initiative.&lt;/p&gt;
&lt;p&gt;Wordspy is one of my favorite websites - please keep up the great work.&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=232" width="1" height="1"&gt;</description></item><item><title>re: A Corollary to McKean's Law</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/08/12/a-corollary-to-mckean-s-law.aspx#227</link><pubDate>Tue, 14 Oct 2008 16:21:54 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:227</guid><dc:creator>Graham Shevlin</dc:creator><description>&lt;p&gt;Yes...but does the word &amp;quot;cliche&amp;quot; itself qualify as a cliche?&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=227" width="1" height="1"&gt;</description></item><item><title>re: Is the English Language Full?</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/19/is-the-english-language-full.aspx#226</link><pubDate>Mon, 13 Oct 2008 12:18:54 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:226</guid><dc:creator>Esther</dc:creator><description>&lt;p&gt;English is so readily up to everyone to change and &amp;nbsp;to coin another term/word of whether to be added to dictionaries or to be used as a term/jargon among some group of people.&lt;/p&gt;
&lt;p&gt;That said, no matter where you are from, there is ENGLISH you can never learn enough of!! &lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=226" width="1" height="1"&gt;</description></item><item><title>re: It's Official: Teen Instant Messages Nothing But Gibberish</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/18/it-s-official-teen-instant-messages-nothing-but-gibberish.aspx#224</link><pubDate>Thu, 09 Oct 2008 12:08:18 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:224</guid><dc:creator>Matt</dc:creator><description>&lt;p&gt;Actually, Paul, that was very humble of you to accept the heat for the way your readers took the article...but no, they are just stupid. This is obviously satire and very amusing, at that. &lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=224" width="1" height="1"&gt;</description></item><item><title>re: It's Official: Teen Instant Messages Nothing But Gibberish</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/18/it-s-official-teen-instant-messages-nothing-but-gibberish.aspx#223</link><pubDate>Thu, 09 Oct 2008 00:50:52 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:223</guid><dc:creator>ShadowfoxXXX</dc:creator><description>&lt;p&gt;LOL! i hope this is a joke. no we don&amp;#39;t all have our own lingo. everyone understands it except for some older people. all the abbreviations are totally obvious: l8r, lol, stfu, wtf, gtfo, nbd. with a few seconds of thinking, anyone can figure them out. we dont send over 10 billion texts a day speaking gibberish. do yuo think we&amp;#39;re retarded? who does that?&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=223" width="1" height="1"&gt;</description></item><item><title>re: It's Official: Teen Instant Messages Nothing But Gibberish</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/18/it-s-official-teen-instant-messages-nothing-but-gibberish.aspx#218</link><pubDate>Fri, 26 Sep 2008 13:04:36 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:218</guid><dc:creator>cestme</dc:creator><description>&lt;p&gt;funny stuff. &amp;nbsp;i really did lol. &amp;nbsp;liked the maibarp&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=218" width="1" height="1"&gt;</description></item><item><title>re: A New Word Record: 3.6 Million Letters!</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/11/a-new-word-record-3-6-million-letters.aspx#212</link><pubDate>Thu, 18 Sep 2008 22:03:11 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:212</guid><dc:creator>leona luna </dc:creator><description>&lt;p&gt;*wisles* 3.6 million letters i&amp;#39;m not going to even try to pronounce that word or remeber how to spell it or in other words&lt;/p&gt;
&lt;p&gt;wow!&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=212" width="1" height="1"&gt;</description></item><item><title>re: It's Official: Teen Instant Messages Nothing But Gibberish</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/18/it-s-official-teen-instant-messages-nothing-but-gibberish.aspx#194</link><pubDate>Thu, 28 Aug 2008 14:45:02 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:194</guid><dc:creator>thys hauptfleisch</dc:creator><description>&lt;p&gt;: oops: you got me! :oops:&lt;/p&gt;
&lt;p&gt;You really got me with this one -- badly -- as always claim I see thru all the urban legends going around.&lt;/p&gt;
&lt;p&gt;Urban Legend is slang for satire?, I think...&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=194" width="1" height="1"&gt;</description></item><item><title>re: Is the English Language Full?</title><link>http://mcfedries.com/cs/blogs/paul/archive/2008/06/19/is-the-english-language-full.aspx#191</link><pubDate>Tue, 26 Aug 2008 08:10:51 GMT</pubDate><guid isPermaLink="false">a08f0b5d-4375-4caf-9394-70231f530157:191</guid><dc:creator>geri howard</dc:creator><description>&lt;p&gt;Take a look at Beowulf in the original English.&lt;/p&gt;
&lt;p&gt;Then have a look at Chaucer. &amp;nbsp;BIG CHANGES!&lt;/p&gt;
&lt;img src="http://mcfedries.com/cs/aggbug.aspx?PostID=191" width="1" height="1"&gt;</description></item></channel></rss>