<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-9103895611002937788</atom:id><lastBuildDate>Fri, 14 Aug 2009 09:19:04 +0000</lastBuildDate><title>Found Somehow</title><description>While making websites, programming, and just using my computer in general, I run into horribly frustrating questions and spend hours trying to find the answers. I offer these experiences to the reader in hopes that others won't waste hours trying to find these same answers, and so that I may have my own future reference.</description><link>http://foundsomehow.kennworld.net/</link><managingEditor>noreply@blogger.com (Beijing Kenn)</managingEditor><generator>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-6473767885656281097</guid><pubDate>Fri, 14 Aug 2009 08:59:00 +0000</pubDate><atom:updated>2009-08-14T17:19:04.133+08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Drupal Translation</category><title>Retrieving the translation set node ID (tnid) of the current node in Drupal</title><description>I'm mildly frustrated that Drupal 6 doesn't have a way to directly reference the current node's ID from a block. &lt;br /&gt;&lt;br /&gt;Well, if there &lt;i&gt;is&lt;/i&gt; a way, it's buried in documentation and just doesn't exist on the forums.&lt;br /&gt;&lt;br /&gt;What I was specifically looking for, however, wasn't the node ID, but the &lt;b&gt;Translation Set Node ID&lt;/b&gt; of the current node. I know it has to be available, because I can use it as an argument in the Views module.  &lt;br /&gt;&lt;br /&gt;Finding the current node's id is easy enough, if a bit silly. You can pull it from the URL, as it is the second argument &lt;i&gt;arg(1)&lt;/i&gt;. You can do this even if you have friendly URLs turned on. &lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;code&gt;$current_nid = arg(1);&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Easy enough. Now $current_nid is equal to the current node's ID. If that's all you needed, you're in business. &lt;br /&gt;&lt;br /&gt;However, what I'm looking for is the tnid, not the nid. We need to write a little query and find the tnid of the current nid. See the below code.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;code&gt;$current_nid = arg(1);&lt;br /&gt;&lt;br /&gt;$sql_tnid = "SELECT N.tnid&lt;br /&gt;FROM {node} N&lt;br /&gt;WHERE N.nid = $current_nid";&lt;br /&gt;&lt;br /&gt;$result_tnid = db_query($sql_tnid);&lt;br /&gt;&lt;br /&gt;$record_tnid = db_fetch_array($result_tnid);&lt;br /&gt;&lt;br /&gt;$tnid = $record_tnid['tnid'];&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Now, feel free to use the $tnid as you like.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-6473767885656281097?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2009/08/retrieving-translation-set-node-id-tnid.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-1394822248213059005</guid><pubDate>Fri, 14 Aug 2009 08:54:00 +0000</pubDate><atom:updated>2009-08-14T16:59:21.837+08:00</atom:updated><title>Blocked in China</title><description>So, due to various incidents, a slew of social networking and related sites have been blocked in China. Easy to use proxies exist out there, but most are, in the least, a pain in the ass, and in the worst are virtually virus ambassadors.&lt;br /&gt;&lt;br /&gt;Anyhow, blogger.com is one of the many blocked sites, so I've been absent for a bit. It's still blocked, but I'm just less lazy and feel motivated to start posting again.&lt;br /&gt;&lt;br /&gt;There were a lot of comments on my post involving &lt;a href="http://foundsomehow.kennworld.net/2008/08/how-to-get-transparent-backgrounds-in.html"&gt;transparent backgrounds on DynamicMenuItems in asp.net&lt;/a&gt;. I do want to address those questions as well, so if you're still out there and commented on that post, drop me a line.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-1394822248213059005?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2009/08/blocked-in-china.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-8664171670105547040</guid><pubDate>Mon, 08 Sep 2008 02:47:00 +0000</pubDate><atom:updated>2008-09-08T11:15:29.934+08:00</atom:updated><title>Date Format Defaults to Server's Local Language/Culture - Can be Changed</title><description>This is another little quickie, but a useful one if you're in a position that I find myself in way too often.&lt;br /&gt;&lt;br /&gt;I'm developing an ASP.net website for an English-speaking audience, but the site is hosted in a non-English-speaking nation. In this case, China.&lt;br /&gt;&lt;br /&gt;The server's regional settings are set to China, so, of course, it interprets dates in the local language. I'm trying to display the short-form, three-letter month names such as "Jan, Feb, Mar" and so on. The problem is, the months are showing up in Chinese. Here's what it looks like compared with what I want:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://foundsomehow.kennworld.net/uploaded_images/monthproblem-784146.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://foundsomehow.kennworld.net/uploaded_images/monthproblem-784144.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The solution is quite simple. If you want the settings to apply globally, add the following line to your &lt;b&gt;Web.Config&lt;/b&gt; file:&lt;br /&gt;&lt;code&gt;&amp;lt;globalization culture="en-uS"&amp;gt;&amp;lt;/globalization&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;If you'd rather set a single page, add this to the @Page directive (the line up at the top of your aspx file).&lt;br /&gt;&lt;code&gt;&amp;lt;%@ Page Culture="en-US" %&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;While I'm American-English-centric, you might want to trade "en-US" for the language of your choice.&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo(VS.71).aspx"&gt;&lt;br /&gt;Here's a full list&lt;/a&gt; of culture abbreviations. My two favorites are kok-IN (mostly because I have a juvenile sense of humor and pa-IN (because culture="pain" is some interesting social philosophy).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-8664171670105547040?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2008/09/date-format-defaults-to-servers-local.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-4773679677737718392</guid><pubDate>Sat, 30 Aug 2008 05:04:00 +0000</pubDate><atom:updated>2008-08-30T13:37:53.098+08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>ASP.NET</category><category domain='http://www.blogger.com/atom/ns#'>controls</category><title>Adding an item to a Databound DropDownList</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://foundsomehow.kennworld.net/uploaded_images/dropdown-746914.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://foundsomehow.kennworld.net/uploaded_images/dropdown-746912.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;There's a few reasons why you might want to add an extra item to a databound dropdownlist. For me, I just wanted to add a prompt at the top. I have a drop down list that allows the user to choose an office in a particular city. I want the first item to read "Choose an office..." or something of the sort.&lt;br /&gt;&lt;br /&gt;In ASP.NET 2.0, one way to do this is to add an item on page load:&lt;br /&gt;&lt;blockquote&gt;&lt;code&gt;protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;   ListItem li = new ListItem("Offices:", null);  &lt;br /&gt;   OfficesDropDown.Items.Add(li);&lt;br /&gt;}&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;The problem is, when the data is bound, it overwrites the item(s) you've added on page load.&lt;br /&gt;&lt;br /&gt;The solution is quite simple. You need to add AppendDataBoundItems="true" to your DropDownList control.&lt;br /&gt;&lt;blockquote&gt;&lt;code&gt;&amp;lt;asp:DropDownList ID="OfficesDropDown" AppendDataBoundItems="true" runat="server" DataSourceID="OfficesSource" DataTextField="Office" DataValueField="Office"&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/asp:DropDownList&amp;gt;&amp;lt;asp:SqlDataSource ID="OfficesSource" runat="server" ConnectionString="&amp;lt;%$ ConnectionStrings:vd31653_dbConnectionString %&amp;gt;"&lt;br /&gt;&lt;br /&gt;SelectCommand="SELECT [Office], [OfficeID] FROM [Offices]"&amp;gt;&amp;lt;/asp:SqlDataSource&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;Note that you cannot add AppendDataBoundItems="true" to a control skin. You need to add this per control.&lt;br /&gt;&lt;br /&gt;Thanks to &lt;a href="http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=281"&gt;SPAANJAARS.COM&lt;/a&gt; for this solution.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-4773679677737718392?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2008/08/adding-item-to-databound-dropdownlist.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-4045856072063885548</guid><pubDate>Fri, 22 Aug 2008 18:18:00 +0000</pubDate><atom:updated>2008-08-23T02:27:03.120+08:00</atom:updated><title>Regular Expressions</title><description>Here's a site with a great &lt;a href="http://regexlib.com/CheatSheet.aspx"&gt;regular expressions cheat sheet&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;If you're anything like me, you find it easy to remember regex syntax until you actually need it, and then suddenly it becomes esoteric knowledge.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-4045856072063885548?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2008/08/regular-expressions.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-1193835952698241329</guid><pubDate>Wed, 20 Aug 2008 10:39:00 +0000</pubDate><atom:updated>2008-08-20T18:55:10.340+08:00</atom:updated><title>Right-Floating div sinking below content</title><description>Here's another simple one, and I owe my good friend Nick for drawing my attention to it.&lt;br /&gt;&lt;br /&gt;I have a right-floated div that should be aligned with the content on the left, but it's sinking below it, and pushing the div below it down. The div beneath is set to clear:both, but it still isn't working.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://foundsomehow.kennworld.net/uploaded_images/divproblem-711746.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://foundsomehow.kennworld.net/uploaded_images/divproblem-711737.JPG" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The easy solution: in your html code, place the right-floated div before the left-aligned content.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;WRONG:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;code&gt;Here's my text&amp;lt;br /&amp;gt;&lt;br /&gt;With line breaks&amp;lt;br /&amp;gt;&lt;br /&gt;And so on. &amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;div style="float:right; border: Solid 1px Black"&amp;gt;&lt;br /&gt;Hey, why am I down here?&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;div style="clear:both; background-color:#0099FF"&amp;gt;&lt;br /&gt;I'm clearing both down here, what gives?&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;span style="font-weight: bold;"&gt;RIGHT:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;code&gt;&amp;lt;div style="float:right; border: Solid 1px Black"&amp;gt;&lt;br /&gt; Hey, why am I down here?&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt;Here's my text&amp;lt;br /&amp;gt;&lt;br /&gt;With line breaks&amp;lt;br /&amp;gt;&lt;br /&gt;And so on. &amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;div style="clear:both; background-color:#0099FF"&amp;gt;&lt;br /&gt;I'm clearing both down here, what gives?&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-1193835952698241329?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2008/08/right-floating-div-sinking-below.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-561990197565878475</guid><pubDate>Wed, 20 Aug 2008 09:25:00 +0000</pubDate><atom:updated>2008-08-20T18:56:17.591+08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>formatting</category><category domain='http://www.blogger.com/atom/ns#'>css</category><title>&lt;h1&gt; header tags display differently in IE7 and Firefox</title><description>This is a simple one, but still rather frustrating.&lt;br /&gt;&lt;br /&gt;If you use the &amp;lt;h1&amp;gt; tag, you'll notice that it display differently in different browsers. You might think it's just the font-size, but if you customize h1 in css, you'll find that the space above and below the text inside the &amp;lt;h1&amp;gt; tags is larger in Firefox than it is in IE7.&lt;br /&gt;&lt;br /&gt;It's an easy, if unintuitive fix... specify the margins.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;The Solution:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;code&gt;&lt;br /&gt;h1&lt;br /&gt;{&lt;br /&gt; font-size: large;&lt;br /&gt; margin-top: 0;&lt;br /&gt; margin-bottom: 1em;&lt;br /&gt;}&lt;/code&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-561990197565878475?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2008/08/header-tags-display-differently-in-ie7.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-4423322713864012609</guid><pubDate>Tue, 19 Aug 2008 07:59:00 +0000</pubDate><atom:updated>2008-08-20T03:05:48.461+08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>ASP.NET</category><category domain='http://www.blogger.com/atom/ns#'>css</category><title>How to get transparent backgrounds in an ASP.NET Menu Control's DynamicMenuItem</title><description>I'm working on this project currently, and the client wants translucent backgrounds on the drop-down menu.&lt;br /&gt;&lt;br /&gt;I'm creating this website in ASP.NET 2.0, using Visual Studio.NET 2005. The menu is dynamically created and added to the page in an empty panel control.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Problem:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;I'm using a skin file and css to control the styles, and although everything is set up correctly, the background of the Dynamic Menu Items is still not translucent when rendered in IE. In Firefox, it renders correctly.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://foundsomehow.kennworld.net/uploaded_images/transdynitem-787127.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://www.kennworld.net/foundsomehow/uploaded_images/transdynitem-787124.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;span style="font-weight: bold;"&gt;How have I set this up?&lt;/span&gt;&lt;br /&gt;In my skin file, notice that the DynamicMenuStyle (the div that contains all of the divs that make up the individual DynamicMenuItems) the BackColor is set to Transparent:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;asp:Menu runat="server" orientation="Horizontal" CssClass="menu" &amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;StaticSelectedStyle CssClass="menuItemSelected" /&amp;gt;&lt;br /&gt;&amp;lt;StaticMenuItemStyle  CssClass="menuItem" /&amp;gt;&lt;br /&gt;&amp;lt;DynamicHoverStyle  CssClass="dynItemHover" /&amp;gt;&lt;br /&gt;&amp;lt;DynamicMenuStyle BackColor="Transparent"  /&amp;gt;&lt;br /&gt;&amp;lt;DynamicMenuItemStyle  CssClass="dynItem" /&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/asp:Menu&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;In the css, take note that the background-image is set to a semi-transparent png. Since the background of the div containing the Dynamic Menu Items is transparent, the translucent png should show the page behind it:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;.dynItem&lt;br /&gt;{&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;background-image:url(../../images/transpix.png);&lt;/span&gt;&lt;br /&gt;border-bottom: solid 1px #EEE;&lt;br /&gt;color: White;&lt;br /&gt;height: 22px;&lt;br /&gt;padding: 1px 15px 0px 5px;&lt;br /&gt;display: block;&lt;br /&gt;width: 100%;&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;The reason this doesn't work is that the rendered html code only ever sets the div that contains the dynamic menu's background-color to white, no matter what you do. I've read that you can override the pre-render function of the control, but honestly, the Menu control ought to just work.&lt;br /&gt;&lt;br /&gt;Here's a snippet from the rendered HTML code:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;.ctl00_ctl03_0 { background-color:white;visibility:hidden;display:none;&lt;br /&gt;position:absolute;left:0px;top:0px; }&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;That represents the style of container div that holds the dynamic menu (the bit that pops up when you mouse over the static part).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Solution:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;I initially spent hours searching online only to find nothing of immediate use. All other solutions would added many more hours on to the project.&lt;br /&gt;&lt;br /&gt;Eventually, I accidentally found the solution, and it's a simple one. Change the DynamicMenuStyle's Width to zero. The Dynamic Menu Items contained within the div will still display, despite being within a 0-width container. However, the annoying white background disappears.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;So, in my skin file, I made this change...&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;DynamicMenuStyle BackColor="Transparent" Width="0" /&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;... et voila, &lt;span style="font-style: italic;"&gt;it fucking works.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-4423322713864012609?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2008/08/how-to-get-transparent-backgrounds-in.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>18</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-9103895611002937788.post-2363731931542149061</guid><pubDate>Tue, 19 Aug 2008 05:30:00 +0000</pubDate><atom:updated>2008-08-20T18:13:41.056+08:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>disclaimer</category><title>Obligatory First Post</title><description>I program, make and design websites, and use computers constantly. I'm fairly knowledgeable in many IT areas, but an expert in none. So, I run into a lot of frustrating questions and spend hours trying to find the answers.&lt;br /&gt;&lt;br /&gt;Sometimes it's relatively easy... I do a quick Google search and find that hundreds of other people have had the same problem and a few people were motivated enough to answer.&lt;br /&gt;&lt;br /&gt;Other times, I find unanswered forum posts, or links to pay sites that &lt;span style="font-style: italic;"&gt;might&lt;/span&gt; have the answer if you're willing to pay. Even more frustrating are people who post snarky answers to the questions that imply the person asking the question should figure out the answer him or herself.&lt;br /&gt;&lt;br /&gt;As a disclaimer - and I hope I only have to do this once - I do not claim to be the authoritative answer on anything I post here. All I aim to do is let others know about the solutions I've found. There may be better solutions, and in some cases I might be flat-out wrong, so all advice is welcome.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9103895611002937788-2363731931542149061?l=foundsomehow.kennworld.net'/&gt;&lt;/div&gt;</description><link>http://foundsomehow.kennworld.net/2008/08/obligatory-first-post.html</link><author>noreply@blogger.com (Beijing Kenn)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item></channel></rss>