<?xml version="1.0" encoding="UTF8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lefthandedlayup &#187; howto</title>
	<atom:link href="http://www.lefthandedlayup.com/tag/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lefthandedlayup.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Dec 2011 02:37:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Almost There</title>
		<link>http://www.lefthandedlayup.com/2008/08/04/almost-there/</link>
		<comments>http://www.lefthandedlayup.com/2008/08/04/almost-there/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 13:04:54 +0000</pubDate>
		<dc:creator>Gabriel Mercado</dc:creator>
				<category><![CDATA[Exchange Sites]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plug]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lefthandedlayup.com/?p=627</guid>
		<description><![CDATA[I've managed to migrate MomEx posts, which run on WordPress, to Drupal 5.9 on my test server. Whoopee! I used WordPress Import, a pretty powerful tool which is still in development mode. On the surface it's a straightforward process of &#8230; <a href="http://www.lefthandedlayup.com/2008/08/04/almost-there/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I've managed to migrate MomEx posts, which run on WordPress, to Drupal 5.9 on my test server. Whoopee!</p>
<div align="center"><img src="http://www.lefthandedlayup.com/wp-content/uploads/2008/08/momex_drupal-300x187.jpg" alt="" title="momex_drupal" width="300" height="187" class="alignnone size-medium wp-image-628" /></div>
<p>I used <a href="http://drupal.org/project/wordpress_import">WordPress Import</a>, a pretty powerful tool which is still in development mode. On the surface it's a straightforward process of installing the module, uploading your WordPress .wxr file and then mapping out which posts are 'owned' by which users (aka authors). It then transfers both posts and comments associated with it.</p>
<p>It becomes a hell of a lot more complicated though when your .wxr file is 17mb. like mine, and I have nearly a hundred different subscribers and authors.</p>
<p><span id="more-627"></span></p>
<p>The actual migration is extremely resource intensive, so to upload the big file and handle the job you need to tweak these things: <strong>One</strong>, php.ini to allow for a large upload (the default is only 2mb.), and <strong>Two</strong>, Drupal's settings.php to allow for both a longer session time and to for more RAM to do the job, otherwise you will receive errors <em>midstream</em> like I did, and only transfer, say, half your posts or an increment instead of all.</p>
<p>To be specific, I changed the line at php.ini from this:</p>
<p><code>; Maximum allowed size for uploaded files.<br />
upload_max_filesize = 2M</code></p>
<p>to this:</p>
<p><code>; Maximum allowed size for uploaded files.<br />
upload_max_filesize = 64M</code></p>
<p>Then you'll need to add these two lines to your settings.php:</p>
<p><code>ini_set('memory_limit', '128M');<br />
ini_set('max_execution_time', 0);</code></p>
<p>Naturally you'll need to restart the webserver and make sure everything, including your other sites hosted on it, is fine. If you're doing this on a live server (meaning there are people reading the website), you need to do it quickly, then return the settings to their original immediately.</p>
<p>It so happened I bought a new domain so I'll be practicing on that one first before finally jumping onto MomEx.</p>
<p>Another issue that's been licked is the 'Clean URLs' problem. As I use Lighttpd, using .htaccess rules is out of the question, but I managed to find a <a href="http://drupal.org/node/43782">good tutorial here</a>, and another one that deals with <a href="http://drupal.org/project/imagecache">imagecache</a> issues, an important feature to handle images, using Lighttpd <a href="http://nordisch.org/2007/2/6/drupal-on-lighttpd-with-clean-urls">here</a>.</p>
<p>There's only one more issue I need to fix before finally getting it all together.</p>
<p>MomEx's pageviews are counted by a WordPress Plugin called <a href="http://planetozh.com/blog/2004/09/click-counter-plugin-for-wordpress/">Clickcounter</a>, which as the name suggest, registers a 'click' everytime someone views a page and displays it on the page plus stores it in the db.</p>
<p>A transfer to Drupal will negate all the registered hits! Drupal has its own click counter equivalent I'm sure, and I could probably tweak it to start counting where it left off, but that would require some MySQL magic which I'll have to investigate.</p>
<p>I know it sounds a little vain to want to keep all those registered hits but hey, we worked for those, some of which have gone up to the thousands. It'd be a pity to just lose it all.</p>
<p>When I do get that fixed there's the issue of finally migrating the site while it's online. That means I'd have to take it down for a a day or two just to make sure everything works. I can probably start on it in the morning and if I don't get it working, use the backups and go back to the old site in the evening, then start again the next day. The documentation I've read never mentioned these, as they all assumed you'd be migrating to a different domain. Migrating from WordPress to Drupal using the same domain is something new, so I plan to document it.</p>
<p>As with most daunting techie tasks I'm usually overwhelmed at the start but I eventually get over my wussiness and fix it, usually realizing it wasn't all that hard as I thought it was. In other words, I'm confident, and let's face it, getting something to work when a minute ago it seemed impossible feels GREEEAAAAT.</p>
<p>I'm excited about the fancy stuff I can implement once I get it on Drupal for sure, but the tremendous geekiness of it all is partly why I'm doing it as well I think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2008/08/04/almost-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aspiring DIY Online Publishers: Learn Photoshop</title>
		<link>http://www.lefthandedlayup.com/2007/06/12/aspiring-diy-online-publishers-learn-photoshop/</link>
		<comments>http://www.lefthandedlayup.com/2007/06/12/aspiring-diy-online-publishers-learn-photoshop/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 14:16:32 +0000</pubDate>
		<dc:creator>Gabriel Mercado</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.lefthandedlayup.com/index.php/2007/06/12/aspiring-diy-online-publishers-learn-photoshop/</guid>
		<description><![CDATA[You know I've been blogging for almost 8 years now, and am still constantly floored as to the fact that what I write here is actually read by real people. I know that sounds nuts, since this is, of course, &#8230; <a href="http://www.lefthandedlayup.com/2007/06/12/aspiring-diy-online-publishers-learn-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You know I've been blogging for almost 8 years now, and am still constantly floored as to the fact that what I write here is actually read by real people. I know that sounds nuts, since this is, of course, a blog on the in'ernet for chrissake, but I just checked out my 'Just a few thoughts before I hie of to ZZZ land' post last May 21, and the counter there says <strong>its been read 2412 times</strong>. </p>
<p>Now I know that counter can be wrong and is nowhere near as accurate as I'd want it to be, but 2412 times?!?! Even if the right number is just half that, I'd still be floored.</p>
<p>The reason why these things surprise me I think, is really because I really just write for myself when I write on this thing. Now I know that sounds like a whole lotta hallelujah, but that's the truth. Stuff happens to me, and I wanna write it here so I won't forget. Writing it here, I get to put a date and time stamp on it, and maybe two or three folks, like, say, a batchmate or a relative, will check it out and chime in with their own thoughts. Perfectly reasonable, right? </p>
<p>But 2412?!? Wow, if I say so myself.</p>
<p><span id="more-382"></span></p>
<p>So anyway, to the subject at hand (for a person who claims he just writes for himself, he sure is saying a lot).</p>
<p>Jill and I spend a lot of time looking around at other Kikay websites, along with Chief Mom Jen, looking for other Mom / Parenting sites as well. Anyway, so from looking at them, I realized the common denominator, and that is - a distinct need to learn Photoshop.</p>
<p>So ok, some of them need to learn to write too. But that's the minority, and heck if a site doesn't 'speak' well it doesn't even rank, so those sites are out the window. For the most part, those that do hold promise show the following common issues: <strong>a.)</strong> oversized pics, <strong>b.)</strong> badly cropped pics and <strong>c.)</strong> badly placed pics. <strong>A</strong> and <strong>B</strong> can both be fixed by some Photoshop knowledge, while <strong>C</strong> requires <em>some</em> HTML knowledge, but if you're good at Photoshop to begin with, you may be able to pull a good post off while staying in WYSIWIG mode.</p>
<p>So now we have pinpointed the issue, here's my (ahem) advice:</p>
<ol>
<li>Recognize that each post is a production. A blogpost for a magazine style blog such as Kikay or Momex has to be worked at. There's research involved, to make sure you're not talking crap and not just making things up. Then you have to start looking for appropriate pics - and when you find some, make sure they're non - copyrighted, or if they are, make sure to give due notice where you got them. Next, you sit down and properly write it up, then finally, you lay it out using your html editor along with Photoshop.</li>
<li>Buy a Photoshop Book. A cheap, beginner one will do. You will need to learn two things a. How to resize images, and b. how to crop. THAT'S IT. A Big honking Photoshop book will look impressive, but you only need to learn those two things and none more, so spare your money. Alternatively, you could:</li>
<li>Look it up on the web. Google 'how to resize images in photoshop' and 'how to crop images in photoshop'. I won't do that for you, you go right ahead and cut and paste that into Google and DIY.</li>
<li>Try to keep your images mostly the same size. If it is a pic to accompany a post, something with the width or 300 pixels or so will do. Once you've done that, use the same size more or less, for future posts. I promise you that the whole blog's index page (aka home page), will look greeeaaat and professional if the pics and blogposts are well - aligned and the same size. Further note: If you are using WordPress, or a blog hosted in WordPress.com, you may also want to learn more about the powerful '<a href="http://codex.wordpress.org/Write_Post_SubPanel">more</a>' tag, which is terrific for making posts uniform in height. Alternatively, you can also try the 'page' tag.</li>
<li>Use the following code to wrap an image to the left of text:<br />
<code>&lt;img src="http://whereyourpictureis" align='left'/&gt;</code><br />
Change the align value to right if you want it to go to the right. If you want it to be centered on the page, wrap it around div tags, like this:</p>
<div align="center"><code>&lt;div align="center"&gt;&lt;img src="http://whereyourpictureis" align='left'/&gt;&lt;/div&gt;</code></div>
<p>That's a good trick for very large pics.
</li>
<li>To put a 5 pixel amount of whitespace in between your pics and text, insert <code>vspace='5' hspace='5'</code> onto your img code, like this:<br />
<code>&lt;img src="http://whereyourpictureis" align='left' vspace='5' hspace='5'&gt;</code>.</p>
<p>This may or may not work depending on your CSS stylesheet, some of which automatically insert white space around images, some of which inexplicably, ignore them. Experiment with these first.</li>
</ol>
<p>Well that's it for the moment, I'll append to this if I think of some more img related stuff.</p>
<p>I admit one of the reasons I like helping out these Kikay girls to make their Fashion websites is because such sites are, to me, what passion about the Internet is all about. I love it whenever I hear of someone passionate about something deciding to put up a page or two describing their hobby / career / whatever it is that rocks their boat. </p>
<p>The people who do these, to me, are what makes the Internet interesting. Not the techie stuff. Not the geeky stuff, but the geeks who <em>write</em> about their geeky stuff. It can be some dude rocking on about his comic book collection, or some guy who talks about his muscle cars, or yes, some girl who loves fashion and make up and who just wants to share her finds with the world. It's these people that power the 'net.</p>
<p>But passion isn't enough. Looking at all those sites that've fallen by the wayside, that's become fairly obvious. If you're gonna do it, do it right (insert a thousand other similarly framed cliches here), and learn the tools you need to get your stuff across. For now, take up my tips above, if it doesn't help say what you feel at my comment section below. But whatever you do, if you gonna make yourself a site, learn Photoshop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2007/06/12/aspiring-diy-online-publishers-learn-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 6.10 (Edgy) + rtorrent notes</title>
		<link>http://www.lefthandedlayup.com/2007/04/09/ubuntu-610-edgy-rtorrent-notes/</link>
		<comments>http://www.lefthandedlayup.com/2007/04/09/ubuntu-610-edgy-rtorrent-notes/#comments</comments>
		<pubDate>Mon, 09 Apr 2007 02:29:27 +0000</pubDate>
		<dc:creator>Gabriel Mercado</dc:creator>
				<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://pisces-iscariot.exchange.ph/?p=352</guid>
		<description><![CDATA[Ubuntu 6.10 (Edgy) + rtorrent notes Ok so since blogs are diaries of a sort I'm writing here my notes on my recent successful move from Centos to Ubuntu, which has been met with success in no small part due &#8230; <a href="http://www.lefthandedlayup.com/2007/04/09/ubuntu-610-edgy-rtorrent-notes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 6.10 (Edgy) + rtorrent notes</p>
<p>Ok so since blogs are diaries of a sort I'm writing here my notes on my recent successful move from Centos to Ubuntu, which has been met with success in no small part due to Ubuntu's wealth of online help and support.</p>
<p>What I'm doing here is compile all the info on the docs I used to <strong>a.)</strong> install and configure <a href="http://www.ubuntu.com/products/WhatIsUbuntu/serveredition">Ubuntu 6.10 Server</a> aka 'Edgy', <strong>b.)</strong> install and configure ssh server on it, so you can access it remotely, <strong>c.)</strong> install and configure <a href="http://libtorrent.rakshasa.no/downloads/libtorrent-0.11.4.tar.gz">libtorrent 0.11.4</a> and <a href="http://libtorrent.rakshasa.no/downloads/rtorrent-0.7.4.tar.gz">rtorrent 0.7.4</a> (the latest versions as of this writing. Just change the versions as needed.) and finally <strong>d.)</strong> install and run <a href="http://www.gnu.org/software/screen/">screen</a>, which is like, duh easy.</p>
<p>At the end of this you'll have what I have, an Ubuntu computer accessed remotely via SSH (using a nice friendly SSH client like <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a>) which happily downloads torrents day in and day out (for whatever nefarious reasons you may have which you will leave completely to yourself of course). Meanwhile my XP work computer, is saved from the trouble.</p>
<p>I'm doing this not to help world hunger or anything, rather the opposite - this doc is purely for myself - so I can remember what I did and reference to it from time to time - which means that it'll be written in SIMPLE EASY TO UNDERSTAND ENGLISH as opposed to a great deal of linux docs out there that are either heavy on theory, heavy on trying to be cute and funny, or both, making it totally unreadable and useless. Yup you <a href="http://www.linux-tutorial.info/modules.php?name=Tutorial&#038;pageid=32">know</a> what I'm talking about.</p>
<p>So off we go.</p>
<p><span id="more-352"></span></p>
<h1>The essential documents I used are thus:</h1>
<h2>Very very useful:</h2>
<p><a href="http://tutorialninjas.net/2007/01/18/how-to-install-rtorrent/">Tutorial Ninja's Rtorrent Howto Page</a> - terrific, except for the rather vague Screen instructions. It assumes you're using a GUI (I think he's referring to KDE). I did it all on console though. The only difference between this and the Softpedia one below is that this asks you to create a directory first which I unfortunately did not do<br />
<a href="http://news.softpedia.com/news/How-to-Install-the-Latest-Version-of-rTorrent-51166.shtml">Softpedia's Howto Rtorrent Page</a> - Absolutely DA Shit, except it doesn't have Screen instructions, as it assumes you're doing all this on the computer itself. Remember, you're doing this all via SSH.<br />
<a href="http://www.hmug.org/man/1/screen.php">The Screen Man page</a> - Best way to learn Screen instructions. Who knew?</p>
<h2>Other essentials:</h2>
<p><a href="http://libtorrent.rakshasa.no/">The Libtorrent and Rtorrent Wiki page</a> (with very important MAN page, screenshots, download directory and other impt stuff)<br />
<a href="http://java.linuxbr.org/linux/rtorrc.htm">Sample .rtorrent.rc file</a> - linked from the tutorialninja site. You can copy it as is or use as a basis for your own settings.<br />
<a href="http://ubuntuforums.org/">Ubuntuforums</a> - for like, you know, when you need to ask stuff. You can check out my stupid questions <a href="http://ubuntuforums.org/search.php?searchid=17665662">here</a>.</p>
<h2>Optional:</h2>
<p><a href="http://www.opendns.com/start/ubuntu.php">OpenDNS's Ubuntu page</a> - I needed to change the DNS settings from Ubuntu default. There are other instructions for your choice of OS.<br />
<a href="http://www.debuntu.org/ssh-key-based-authentication">How to generate a set of encryption keys</a> - for when you wanna get into more ssh stuff, although the default keys are fine they don't offer protection.</p>
<h1>Notes:</h1>
<p>I was initially gonna cut and paste the all the instns but after checking out the length of the tutorialninja howto I decided against it. Rather, I'll just put in a few notes to remember:</p>
<ol>
<li>Ubuntu Edgy 6.10 Server Edition (as opposed to the Desktop Edition) is only a 451 mb. download and 30 minute install. It contains the core stuff, but (remember!) NO OpenSSHserver (only SSH client) and NO Screen. Therefore you're gonna need to run the ff. commands: <em>sudo apt-get install ssh</em> and <em>sudo apt-get install screen</em>. I'm not sure if a reboot is necessary with re to SSH install but what the heck I did anyway. FTP will therefore get in using only using SFTP over SSH2.</li>
<li>If you wanna FTP onto Ubuntu, you'll need to <a href="http://en.wikipedia.org/wiki/Chown">chown</a> the dir you're gonna mess around with first, which is cool, as opposed to Centos which allowed me to log in as root (and therefore since we're all lazy makes us do it by default I think).</li>
<li>As I said earlier <a href="http://www.hmug.org/man/1/screen.php">the Screen Man page</a> is the most excellentest way to learn Screen. The only commands you're ever gonna need to know for the purpose of running rtorrent in the background is <strong>screen -a</strong> to start a new 'screen' (hard to explain, but basically it has to do with letting you run rtorrent in the 'background' whilst you can log in / out)) - after you run rtorrent, use <strong>ctrl+a+d</strong> to 'leave' the screen (so you can log out), and <strong>screen -r</strong> to 'go back' into the screen (so you can check out how rtorrent is getting along).</li>
<li>'Could not parse bencoded data' means that what you're trying to download is not a torrent file. Why the heck it just doesn't say that beats me. But hey this is Linux, where a certain level of mind - reading is required. No wonder sysads are weird. Anyway moving on..</li>
<li>the rtorrent man page is again, the best place to learn. The primary commands you'll need to know is <strong>backspace</strong> to add the url (or directory location in your PC) of the torrent, <strong>ctrl+q</strong> to quit, <strong>1</strong> (to view main page), <strong>2</strong> (to view torrents by name), <strong>3</strong> (to view started torrents), <strong>4</strong> (to view stopped torrents). Also useful are <strong>ctrl+s</strong> to start torrents, <strong>ctrl+r</strong> to <a href="http://en.wikipedia.org/wiki/Hash_function">hash</a> them before they start, <strong>ctrl+d</strong> to stop them (and another ctrl+d to remove it entirely), as well as the various numbers and acronyms beside each torrent and at the bottom of the page to tell you how things are going.</li>
<li>Learn the .rtorrent.rc file well, as it contains all the configs you'll need to run things smoothly. In particular are the ports it'll use, the use_udp_trackers = yes (or no. depends on you) setting, and the directories rtorrent should watch so it'll auto download files that are put into it. VERRRY neat - considering Azureus (I think) has to use RSS to do same.</li>
</ol>
<p>Ok so far Ubuntu + rtorrent seems to be da shit. I'm gonna need to use it now for /var/www stuff, so I can finally get on with my plans to rule the world. Will update this as necessary, which says a lot given I've only started on Ubuntu 2 days ago (and I've used Centos for more than a year and never learned half as much as what I know now). Not to knock it, but it just wasn't the solution for newbies / occasional users like me. Later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2007/04/09/ubuntu-610-edgy-rtorrent-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steam Microwaving Chicken</title>
		<link>http://www.lefthandedlayup.com/2007/03/12/steam-microwaving-chicken/</link>
		<comments>http://www.lefthandedlayup.com/2007/03/12/steam-microwaving-chicken/#comments</comments>
		<pubDate>Sun, 11 Mar 2007 23:31:57 +0000</pubDate>
		<dc:creator>Gabriel Mercado</dc:creator>
				<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://pisces-iscariot.exchange.ph/?p=337</guid>
		<description><![CDATA[So since this is a cooking site... err, no it isn't. But I wanna put up pics of what I cook and eat everyday, and I find the topic interesting, so there!! Seriously, just wanted to share with you how &#8230; <a href="http://www.lefthandedlayup.com/2007/03/12/steam-microwaving-chicken/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So since this is a cooking site... err, no it isn't. But I wanna put up pics of what I cook and eat everyday, and I find the topic interesting, so there!!</p>
<p>Seriously, just wanted to share with you how to steam chicken with carrots and potatoes in a microwave, using a p200.00 microwave steaming contraption you can buy anywhere. I bought mine at some hardware store. I promise you it's delish. Here we go:</p>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_018.jpg" border="0" vspace="5" hspace="5"/><br /><small>The plastic contraption steaming cooking thingy has three parts. You put water at the lowest part, filling it to about half is good.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_019.jpg" border="0" vspace="5" hspace="5"/><br /><small>Then you need some chicken parts. Rock salt and pepper to taste.</small></div>
<p><span id="more-337"></span></p>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_020.jpg" border="0" vspace="5" hspace="5"/><br /><small>And you slide it right on top like this.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_002.jpg" border="0" vspace="5" hspace="5"/><br /><small>Then you get some greenery going. Here's some pechay leaves.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_003.jpg" border="0" vspace="5" hspace="5"/></p>
<p><small>Carrots..</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_004.jpg" border="0" vspace="5" hspace="5"/><br /><small>Potatoes..</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_005.jpg" border="0" vspace="5" hspace="5"/><br /><small>All bunched together. Looks good already.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_007.jpg" border="0" vspace="5" hspace="5"/><br /><small>Cover it up with the lid.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_008.jpg" border="0" vspace="5" hspace="5"/><br /><small>And it'll look like this.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_009.jpg" border="0" vspace="5" hspace="5"/><br /><small>Shove it in there.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_010.jpg" border="0" vspace="5" hspace="5"/><br /><small>And here's the tricky part. I go for about 10 minutes at 450 watts, our microwave's lowest setting, but you can go up to 15 for somewhat chilled chicken. Although we can, of course, go faster, what we're going for here is to boil the water for a prolonged time, otherwise you can overcook and the veggies can get burned and the chicken turn leather tough.</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_013.jpg" border="0" vspace="5" hspace="5"/><br /><small>10 mins or so later, Et voila!</small></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_014.jpg" border="0" vspace="5" hspace="5"/><br /><small>A closer look.</small></div>
<p>Ok that may not look all appetizing as i couldn't get a pic of the steam rising out. But trust me the smell is wonderful, and a mere poke or two at that marvelous soft, juicy chicken and that cooked - just - right potatoes, carrots and greens will make your mouth water. You can also use other crunchy greens, like brocolli or lettuce.</p>
<p>You can also start steaming rice just before you do this, and the cutting / preparation time + the 10 mins or so it takes the cook will approximates the time to cook the rice, so you'll have both fresh rice and steaming, oil-free healthy chicken ready at the same time. By Gad my stomach's grumbling.</p>
<p>And another thing..</p>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar092007_microwaving_steamed_chicken_017.jpg" border="0" vspace="5" hspace="5"/></p>
<p><small></small></div>
<p>The chicken fat will drop down to form chicken stock with the water underneath, and you can use this as a base for soup or thickened as gravy. I hate throwing it away but I've got so much of it now so, sayang.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2007/03/12/steam-microwaving-chicken/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DVD-RW and Power Supply Installation Picture Taking Madness!!</title>
		<link>http://www.lefthandedlayup.com/2007/03/04/dvd-rw-and-power-supply-installation-picture-taking-madness/</link>
		<comments>http://www.lefthandedlayup.com/2007/03/04/dvd-rw-and-power-supply-installation-picture-taking-madness/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 08:10:28 +0000</pubDate>
		<dc:creator>Gabriel Mercado</dc:creator>
				<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://pisces-iscariot.exchange.ph/?p=333</guid>
		<description><![CDATA[I've no idea why I'm doing this. I think I'm probably bored. And it's not like I've other more pressing things to do. Anyway, am putting up pics of my new Power Supply and DVDRW. Ok so here we go: &#8230; <a href="http://www.lefthandedlayup.com/2007/03/04/dvd-rw-and-power-supply-installation-picture-taking-madness/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I've no idea why I'm doing this. I think I'm probably bored. And it's not like I've other more pressing things to do. Anyway, am putting up pics of my new Power Supply and <a href="http://us.liteonit.com/us/index.php?option=com_content&#038;task=view&#038;id=201&#038;Itemid=67">DVDRW</a>. Ok so here we go:</p>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_017.jpg" border="0"/><br />Out with the old.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_018.jpg" border="0"/><br />In with the new.</div>
<p><span id="more-333"></span></p>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_019.jpg" border="0"/><br />It comes with a 24 pin cable to the motherboard. Unfortunately my PC uses only 20.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_020.jpg" border="0"/><br />But not to worry, you can remove the extra 4.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_021.jpg" border="0"/><br />Like so.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_022.jpg" border="0"/><br />So anyway, here now is the new DVDRW drive from Lite-On which promises such things as the "Super All-Write' feature, which promises <em>"SMART-WRITE : Through drive's self-learning function, automatically detect and decide the optimal write strategy  of DVD recordable media (DVD+R &#038; DVD-R) for the best quality."</em></p>
<p>Whatever man, as long as it can write DVDs I'm happy. Notice it comes with two facias in black and silver aside from the default bleeech beige it comes with.</p></div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_023.jpg" border="0"/><br />To change the facia, you have to remove some of the clip things. Here's one of them. There's another on top and on the other side.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_024.jpg" border="0"/><br />So you use the included piece of wire to manually open the drive.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_025.jpg" border="0"/><br />There you go.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_026.jpg" border="0"/><br />Then you use a downward motion to remove the cover of the flap. Because I'm the adventurous type with a little rebellious streak to boot, I decided to go for a silver / black combination.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_027.jpg" border="0"/><br />But before that, you've gotta take off the main cover first and replace it. (Yes I screwed up and it turns out I have to do this first before the previous step. Hey who said this is an official step by step guide?! So sue me.)</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_028.jpg" border="0"/><br />Ok so we're all good.</div>
<div align="center"><img src="http://pisces-iscariot.exchange.ph/wp-content/uploads/2007/03/mar042007_dvdrw_and_powersupply_029.jpg" border="0"/><br />Et voila!! My silver / black combination DVDRW drive.</div>
<p>You know I feel like such a rebel for not following the black / black or silver / silver combination. No, actually.. more like an <em>artiste</em> with an 'e' at the end, to sorta highlight my genius. Or rather, kinda like a rock star. Yeah I like the sound of that. I'm the coolest, really. Whatever I am, I am a <strong>DVD-RW and Power Supply Installing Guy God</strong>!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2007/03/04/dvd-rw-and-power-supply-installation-picture-taking-madness/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Update Drupal 4.7.2 to 4.7.3 (aka a Drupal HowTo for the rest of us)</title>
		<link>http://www.lefthandedlayup.com/2006/08/14/how-to-update-drupal-472-to-473/</link>
		<comments>http://www.lefthandedlayup.com/2006/08/14/how-to-update-drupal-472-to-473/#comments</comments>
		<pubDate>Mon, 14 Aug 2006 02:54:24 +0000</pubDate>
		<dc:creator>Gabriel Mercado</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[webmastering]]></category>

		<guid isPermaLink="false">http://pisces-iscariot.exchange.ph/?p=265</guid>
		<description><![CDATA[I figured it was time to make one of my howtos. The Drupal UPGRADE.TXT file is fairly straightforward: Backup your database and Drupal directory - especially your configuration file in 'sites/default/settings.php'. Log on as the user with user ID 1. &#8230; <a href="http://www.lefthandedlayup.com/2006/08/14/how-to-update-drupal-472-to-473/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I figured it was time to make one of my howtos. The Drupal UPGRADE.TXT file is fairly straightforward:</p>
<ol>
<li>Backup your database and Drupal directory - especially your configuration file in 'sites/default/settings.php'.</li>
<li>Log on as the user with user ID 1.</li>
<li>Remove all the old Drupal files then unpack the new Drupal files into the directory that you run Drupal from.</li>
<li>Modify the new configuration file to make sure it has the latest and correct information.</li>
<li>Run update.php by visiting http://www.example.com/update.php.</li>
</ol>
<p>But everyone knows things aren't usually as they seem, so I went ahead and made a whole drupal howto on my own with pictures and everything. Here goes:</p>
<p><span id="more-265"></span></p>
<p><b>First a few important notes.</b></p>
<ul>
<li>I use Windows.</li>
<li>The site I'm about to update is <a href="http://pinoywritersonline.com" target="new" title="pinoywritersonline">Pinoywritersonline.com</a>.</li>
<li>Drupal 4.7.3, released early August, is a maintenance release + one security fix. It does not have any new features so it's not a major upgrade or anything, so most of the settings will remain the same plus you don't have to learn anything new.</li>
<li>The pinoywriters installation like most drupal installations uses a theme other than the default one, which also happens to be compatible with both 4.7.2 and 4.7.3. This is important to know later on during the guide, where you might wonder why I did not write over or delete the /THEMES folder. I didn't delete it even when the instructions say I should, because I do not want to install it again.</li>
<li>Like most people, I rent space on a <a href="http://mobilehive.com" target="new" title="mobilehive">webhosting service</a>, which like most webhosting services, run <a href="http://www.cpanel.net/" target="new" title="cpanel">Cpanel</a>.</li>
<li>Cpanel in turn uses <a href="http://www.phpmyadmin.net/home_page/index.php" target="new" title="phpmyadmin">Phpmyadmin</a>, a powerful graphical MySQL editing tool. This is important to note since Drupal first time users are often confused with the included HOWTOS which assume terminal / root access to the webserver, hence commands like WGET -zxvf and MV. So to qualify: if you have terminal access and linux / unix skillz, follow the default HOWTO. If you prefer the more common graphical method and use Windows, follow below. (hence why i named this 'for the rest of us')</li>
<li>Obviously, I use MySQL, provided by my webserver.</li>
<li>Finally, for FTP I use <a href="http://filezilla.sourceforge.net">Filezilla</a>, but you can use any other.</li>
</ul>
<p><b>Ok, ready? Let's go:</b></p>
<ol>
<li>First, download Drupal 4.7.3 <a href="http://ftp.osuosl.org/pub/drupal/files/projects/drupal-4.7.3.tar.gz" target="new" title="drupal 4.7.3">here</a>. It's compressed using the <b>.tar.gz</b> format, which Windows XP does not recognize. Why its not available in .zip I do not know. Anyway, you can use <a href="http://rarlab.com" target="new" title="winrar">Winrar</a> to deal with that.</li>
<li>Now, login to your website, using the primary account (the very first account you created).</li>
<li>Now let's do that database backup. Create a folder and name it appropriately such as my ingenious, "aug122006_database_dump" on the folder where you usually put your project files on.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_01.jpg" /></div>
<li>Now, login to your host's Cpanel area, and go to <strong>SITE MANAGEMENT</strong> > <strong>PHPMYADMIN</strong>.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_02.jpg" /></div>
<li>Go to the database in question, and to it's <strong>EXPORT</strong> area. You'll want to select all your database's tables to back up, so click <strong>SELECT ALL</strong>. Click <strong>SAVE AS FILE</strong> and then press <strong>GO</strong>.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_03.jpg" /></div>
<li>Your browser will start downloading your .sql file. Save it in the folder we created in step 1. You have now backed up your database.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_04.jpg" /></div>
<li>Now to backup the 'sites/default/<strong>settings.php</strong>' file. Use your FTP software (I use <a href="http://filezilla.sourceforge.net" target="new" title="filezilla">Filezilla</a>). Go to it, and copy it to a folder on your PC just like you did above.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_05.jpg" /></div>
<li>As a habit I keep an exact copy of what's on the webserver on my hard disk. Doing so, it's a simple matter of dragging the 'live' settings.php file to the copy on my hard disk. Most FTP software will warn you that they're about to copy over a file, and a window like the one below will popup. Notice the same date and time, which means they're the same exact file. Go ahead and overwrite it anyway, just so you're assured you've got the same exact copy.
<p>Congratulations! You have now done a backup of your database and settings.php file, the two important files you'll need to recreate your website should you need to. You can now proceed recklessly along knowing that if you screw things up, you have these anyway. Just kidding. Follow these steps strictly.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_06.jpg" /></div>
<li>Now, delete all the files about to be replaced, <strong>EXCEPT FOR THE /SITES and /THEMES folder</strong>. <strong>/SITES</strong> contains the settings.php file, which you don't want to change, and <strong>/THEMES</strong> contains the current theme you're using (provided you're using a theme other than the default one).
<p>If you delete /THEMES, you'll have to install your theme again.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_07.jpg" /></div>
<li>Here's how it should look. Highlight <strong>ONLY the ones you're about to delete</strong>, leaving /THEMES and /SITES then rightclick > Delete.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_08.jpg" /></div>
<li>A few minutes later, after deleting everything, here's how it looks. The only folders left are /CGI-BIN (which is not deletable as per the webserver's settings), /THEMES and /SITES.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_09.jpg" /></div>
<li>Now drag and drop the new drupal files in there, like so. Again, no need to include the /THEMES and /SITES directories. It's only around 2.12mb, so it will take around a minute or two on a standard DSL connection.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_10.jpg" /></div>
<li>Time to run the update file. On your browser, enter /UPDATE.PHP after the domain name and press enter.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_11.jpg" /></div>
<li>This page will appear, with a link saying '<strong>run the database update script</strong>'. Click it.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_12.jpg" /></div>
<li>Two more pages. This one:</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_13.jpg" /></div>
<li>And this one. I know these are vague, but Drupal likes it that way, so who am I to argue.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/drupal473_aug122006_14.jpg" /></div>
</ol>
<p>..aaand that's it!</p>
<p>Honestly, this How To wouldn't have been necessary if <strong>a.</strong> the Drupal group would write friendlier howtos, allowing for people who don't have terminal access,. and <strong>b.</strong>, remember that not all users are linux sysads, such as allowing the download in .tar.gz format only for example. </p>
<p>Imo they should check out <a href="http://wordpress.org" target="new" title="wordpress">WordPress</a>, whose easy to understand '5 minute installs' have surely helped mainstream adoption.</p>
<p>Anyway, if you're confused, <a href="mailto:ghmercado@gmail.com">Email</a> or comment below!</p>
<p>Technorati Tags: <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a>, <a href="http://technorati.com/tag/phpmysql" rel="tag">phpmysql</a>, <a href="http://technorati.com/tag/cpanel" rel="tag">cpanel</a>, <a href="http://technorati.com/tag/php" rel="tag">php</a>, <a href="http://technorati.com/tag/mysql" rel="tag">mysql</a>, <a href="http://technorati.com/tag/drupal 4.7.2" rel="tag">drupal 4.7.2</a>, <a href="http://technorati.com/tag/drupal 4.7.3" rel="tag">drupal 4.7.3</a>, <a href="http://technorati.com/tag/filezilla" rel="tag">filezilla</a>, <a href="http://technorati.com/tag/" rel="tag"></a></p>
<p class="poweredbyperformancing">powered by <a href="http://performancing.com/firefox" >performancing firefox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2006/08/14/how-to-update-drupal-472-to-473/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chuck Norris Rewrites Drupal 4.6 Installation Instructions</title>
		<link>http://www.lefthandedlayup.com/2006/03/27/chuck-norris-rewrites-drupal-46-installation-instructions/</link>
		<comments>http://www.lefthandedlayup.com/2006/03/27/chuck-norris-rewrites-drupal-46-installation-instructions/#comments</comments>
		<pubDate>Mon, 27 Mar 2006 09:49:24 +0000</pubDate>
		<dc:creator>Gabriel</dc:creator>
				<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://pisces-iscariot.exchange.ph/?p=121</guid>
		<description><![CDATA[<img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install.jpg" hspace="5" vspace="5" align="left" alt="Chuck Norris Rewrites Drupal 4.6 Installation Instructions"/>Ok I'm still obsessed with <a href="http://chucknorrisfacts.com" target="new" title="chuck norris facts">Chucknorrisfacts.com</a>, (and with such quips as "Chuck Norris can divide by zero", how can one not be?), but I've also got a life, and in this life I do websites, amongst other nefarious schemes to rule the world.

As such, I've recently come to encounter <a href="http://drupal.org" target="new" title="drupal">Drupal</a>, which, in a sentence, is an <b>open source content management system</b>, and <b>"can support a variety of websites ranging from personal weblogs to large community-driven websites"</b>. <a href="http://www.lefthandedlayup.com/2006/03/27/chuck-norris-rewrites-drupal-46-installation-instructions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install.jpg" hspace="5" vspace="5" align="left" alt="Chuck Norris Rewrites Drupal 4.6 Installation Instructions"/>Ok I'm still obsessed with <a href="http://chucknorrisfacts.com" target="new" title="chuck norris facts">Chucknorrisfacts.com</a>, (and with such quips as "Chuck Norris can divide by zero", how can one not be?), but I've also got a life, and in this life I do websites, amongst other nefarious schemes to rule the world.</p>
<p>As such, I've recently come to encounter <a href="http://drupal.org" target="new" title="drupal">Drupal</a>, which, in a sentence, is an <b>open source content management system</b>, and <b>"can support a variety of websites ranging from personal weblogs to large community-driven websites"</b>.</p>
<p><span id="more-121"></span></p>
<p>Drupal serves as the machinery behind <a href="http://spreadfirefox.com" target="new" title="spreadfirefox">Spreadfirefox.com</a> and <a href="http://www.linuxjournal.com/" target="new" title="linuxjournal.com">Linux Journal</a>, and that was good enough for Aileen, owner of the famous <a href="http://groups.yahoo.com/group/pinoywriters/" target="new" title="pinoywriters">Pinoywriters</a> mailing list, to which every Pinoy writer I think, gravitates towards at some point in their lives. I know I did, which is how I came to make her acquaintance many years in the past. Aileen owns the domain Pinoywritersonline.com, which until a few days ago merely forwarded to her <a href="http://pinoywriters.multiply.com/" target="new" title="pinoywriters multiply">Multiply</a> site, and which now serves as the area where we will conduct our Drupal activities.</p>
<p>At any rate, this post shall be about the install.txt file where obviously, instructions to its installation are thus provided. Unfortunately, it is without a doubt confusing to the average web developer, meaning one who is used to installing php-based applications using <a href="http://www.phpmyadmin.net/home_page/index.php" target="new" title="phpmyadmin">Phpmyadmin</a>, instead of the command line access to MySQL which the instructions assumes.</p>
<p>In other words, the instructions are for users with command line aka terminal access, which is likely only if you run the webserver itself, or you rent webspace on one with a 'virtual root account'. While arguably a preferable situation due to the more powerful set of activities a command line provides, most webserver accounts provide for Cpanel site management, making such tasks as creating email accounts, adding hosted domains and installing MySQL and PHP installations a menial, GUI controlled task.</p>
<p>Hence, after going through the installation, I have found a rewrite "for the rest of us" in order, where one will use PhpMyAdmin instead of command line commands.</p>
<ul>
<li>
Firstly, download this link <a href="http://exchange.ph/pisces_iscariot/mar272006_drupal_INSTALL.txt" target="new" title="drupal installation file">install.txt</a>, or at least open it in another window in the fashion your browser prefers.</p>
<p>You may skip the <b>"1. DOWNLOAD DRUPAL"</b> instructions, and just go ahead and <a href="http://drupal.org/project/Drupal+project" target="new" title="drupal">download</a> the latest non-beta release, (unless you are sure of what your doing and prefer an untested or older version, which I assume you are not).<br />
It will come in a .rar file format, merely uncompress it and save on your hard disk.</p>
<p>Use FTP to upload everything onto your webspace.</li>
<li>The <b>2. CREATE THE DRUPAL DATABASE</b> is the tricky area. Instead of following that, proceed to the phpMyadmin section of the Cpanel of your webspace account. It usually looks like this, under "Site Management Tools":
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_01of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<p>Click "MySQL databases" and create your mysql database. Whatever name you decide will usually be preceded by the webspace account. Assign a user with full privileges to it, and remember the password you gave it. I usually cut and paste it to notepad to avoid any unfortunate events.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_02of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<li>Exit the MySQL area, and click phpMyAdmin. It should look something like this, listing all of your mysql installations.</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_03of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<li>The following replaces <b>"3. LOAD THE DRUPAL DATABASE SCHEME"</b>The installation files you downloaded include a database.mysql (for mysql) and database.pgsql (postgresql) file in the (drupal-x.x.x)\database folder.</li>
<p>Mine looks like this:</p>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_04of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<p>We're using mySQL, so obviously we'll choose that one. Using phpMyadmin, browse your way to database.mysql on your computer, and press "GO". I did that here:</p>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_05of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<p>In a second, phpMyadmin does its magic and performs the necessary 89 instructions resulting in 55 tables (results vary on version you're installing).</p>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_06of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<li>Next, after you've uploaded the files and readied the database, Drupal will now need to 'connect' with it, which the install file covers with <b>4. CONNECTING DRUPAL</b>. We do that by opening the install file in "sites/default/settings.php", where we see:</li>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_07of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<p>Before editing, remember that saving a backup never hurts. Granted you've done so, edit by replacing the username and password with the mySQL username and password you created earlier, along with the database name. The format should look like this, in line 81 of the settings.php file:</p>
<blockquote><p>$db_url = 'mysql://database_user:password@localhost/name_of_database';</p></blockquote>
<p>You can leave the "$db_prefix = '';" alone. Save, then upload to sites\default and voila! Enter the domain on your browser and view the Drupal admin page, where you create an account (the first account automatically has full admin rights), login, and start fiddling around.</p>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_08of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<li>Finally, one more thing. At some point Drupal will ask you to create a directory in your installation to store files in, asking you to name it "files/pictures". Go ahead and do so, remembering to set the attributes of the pictures directory to be readable and writeable (666). This will assure the <a href="http://www.apple.com/trailers/fox/theomen/" target="new" title="omen">Omen</a> will come and appear onto your Drupal install sometime soon, supposedly June 6, 2006. Just Kidding.</li>
<p>Anyway here I am using my preferred FTP client <a href="http://filezilla.sourceforge.net" target="new" title="filezilla">Filezilla</a> to do so.</p>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_09of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<p>Do that, refresh this page:</p>
<div align="center"><img src="http://exchange.ph/pisces_iscariot/mar272006_drupal_install_10of14.jpg" hspace="5" vspace="5" alt="drupal installation"/></div>
<p>Then that red line will disappear.
</ul>
<p>I sincerely hope that someone will find this guide useful. Should it not do so or should I have erred in any way please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2006/03/27/chuck-norris-rewrites-drupal-46-installation-instructions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>howto put google ads on a phpbb forum</title>
		<link>http://www.lefthandedlayup.com/2005/09/01/25/</link>
		<comments>http://www.lefthandedlayup.com/2005/09/01/25/#comments</comments>
		<pubDate>Thu, 01 Sep 2005 02:58:32 +0000</pubDate>
		<dc:creator>Gabriel</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[technews]]></category>

		<guid isPermaLink="false">http://pisces-iscariot.exchange.ph/?p=25</guid>
		<description><![CDATA[howto put google ads on a phpbb forum <a href="http://www.lefthandedlayup.com/2005/09/01/25/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://exchange.ph/pisces_iscariot/sep022005_phpbb.jpg" vspace="5" hspace="5" align="left"/>I got to do something productive today! I <em>finally</em> managed to put Google Ads onto my project <a href="http://broadband.exchange.ph/" target="new">Broadband Exchange</a>. I actually manage five or so <a href="http://www.phpbb.com/" target="new">PHPBB</a> installations, but bEx (as I like to call it), is mine and mine alone, which allows me to a.) screw it up if I feel like it and b.) put humongous <a href="http://adsense.google.com">Google Ads</a> again, should the wind blow in that direction.</p>
<p>At any rate, let me list down what I did, partially for myself, and mostly really for whoever else out there who wants to learn this stuff. But firstly some groundrules: </p>
<p><span id="more-25"></span></p>
<ul>
<li type="a">No more discussion about how PHPBB is better or less than <a href="http://invisionboard.com" target="new">Invision</a>, <a href="http://phpnuke.org" target="new">PHPNuke</a>, or some other out there. I learned my stuff on PHPBB, I checked out the endless discussions on maillists and forums, and tell you what, for every one phpbb testimonial, there's another for Invision, and in reverse. Ad nauseam. So the thing to do really is, just give it up and go with what you know. If you get hacked, then likely it's because of your fault really, not the software. Whoever's relying too much on the software's security to begin with (and not doing due maintenance) is to blame in the end, really. <em>(And yes, I know. Having said that I'll probably get hacked soon. Sheesh.)</em></li>
<p>&nbsp;
<li type="a">b. I assume you know what you're doing as far as FTP and adding / modifying / deleting files are concerned. My fave "trick" (not really a trick, more like a habit) is to rename a file <em>before</em> I edit it, something like <strong>sep012005_overall_header.tpl</strong>, where the previous file name was <strong>overall_header.tpl</strong>. I do so on the files on my local machine (yes you <em>have</em> to have the same exact files on your local machine. Didn't your momma teach you that?), and the active ones on the server. They should mirror each other and you should keep that mirror clean with a cotton cloth and a dab of alcohol every so often. End of discussion.</li>
<p>&nbsp;
<li type="a">My particular situation is rather different, I wanted to have a "facade" to my phpbb installation so as to greet a web visitor with the latest posts, some pertinent data and other stuff, as compared to going to the forum proper (yeah I know php-Nuke can do that. Read above.), so I used <a href="http://www.mx-system.com/" target="new">MX System</a>. It started out as an experiment, and it turned out ok, so I'll keep using it then. I also use the "Redline" template (sorry I couldn't find a link!), which happened to have support for both MX System and PHPBB. I'll try not to confuse you with those details, so pretend I never said anything about MX System and beside I won't mention it on the Howto below, where I'll just concentrate on the PHPBB part. Newbies will definitely get winded and it's not necessary anyway.</li>
<p>&nbsp;
<li type="a"><img src="http://exchange.ph/pisces_iscariot/howto_put_google_ads_on_a_phpbb_forum_1of2.gif" alt="type asterisk dot tpl" align="left" vspace="5" hspace="5"/>To those really uninitiated with "modding" (aka modifying) PHPBB, PHPBB uses its own proprietary file format ".tpl" which is actually just .php files, except changed to that format primarily for security, and if there's any other reason I don't know what else. It's a good trick as even your average PHP or HTML <a href="http://en.wikipedia.org/wiki/Integrated_development_environment" target="new">IDE</a> will not recognize it and will therefore not show it to be an file available for edit in the Open File dialogue box. IDEs like my fave <a href="www.macromedia.com/software/homesite" target="new">Homesite</a> need to be 'told' to open it by typing *.tpl on the "Open File" field area. BTW if you don't like mucking about your PHPBB, something nice to know is that there are many webmasters out there <em>who don't do anything else but mod phpbb</em> and make a very good honest living out of it. Just PHPBB all - their - lives, nothing else. Imagine.</li>
<p>&nbsp;
<li type="a">This also assumes you already know what you're doing re <a href="http://adsense.google.com" target="new">Google Adsense</a>. In this example, I used the largest skyscraper size "wide skyscraper 160x600", but you can use the smaller skyscraper 120x600 size if you want. If you don't know about this, go check it out first as there's far too much info about that to teach you over here.</li>
<p>&nbsp;<br />
<em><strong>Ok enough yada. Here we go with the HowTo proper:</strong><br />
</em><br />
First we back up:</p>
<ol>
<li>Look for two files within your local phpbb folder:<br />
<br />&nbsp;yourphpbbinstallation/templates/*name of your template here*/<strong>overall_footer.tpl</strong><br />
<br />&nbsp;<br />
and<br />&nbsp;<br />
yourphpbbinstallation/templates/*name of your template here*/<strong>overall_header.tpl.</strong></li>
<li>rename them for backup purposes. Like I said above, I usually rename them by date, therefore they become:<br />&nbsp;yourphpbbinstallation/templates/*name of your template here*/<strong>sep012005_overall_footer.tpl</strong>
<p>and</p>
<p>yourphpbbinstallation/templates/*name of your template here*/<strong>sep012005_overall_footer.tpl</strong></li>
<li>Open these with your html editor or notepad.</li>
<p>&nbsp;
<li>Save them as their original names, <strong>overall_footer.tpl</strong> and <strong>overall_header.tpl</strong>. You nnow have a backup of the orig files to revert to when you screw things up.</li>
<p>&nbsp;
<li>Fire up your ftp application, and rename the <strong>overall_footer.tpl</strong> and <strong>overall_header.tpl</strong> files there as well.</li>
</ol>
<p>&nbsp;<br />
<em><strong>Now for the editing part:</strong></em></p>
<ol>
<li>Open up <strong>overall_header.tpl</strong> with your html editor. Look for this line
<p>&lt;table width="500" cellspacing="0" cellpadding="10" border="0" align="center"&gt;</li>
<p>Directly above it, add this:</p>
<p>&lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center"&gt;&lt;tr>&lt;td></p>
<p>save it. Close the file.</p>
<li>Now open up <strong>overall_footer.tpl</strong> with your html editor. Look for this line
<p>&lt;/table&gt;&lt;/td&gt;<br />
  &lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>in between &lt;/table&gt; and &lt;/body&gt;, paste these:</p>
<p>&lt;/td&gt;&lt;td align="center" valign="top"&gt;&lt;div align="center"&gt;&lt;br&gt;</p>
<p>PUT THE GOOGLE ADSENSE CODE HERE</p>
<p>&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</p>
<p>should look something like this:<br />
<img src="http://exchange.ph/pisces_iscariot/howto_put_google_ads_on_a_phpbb_forum_2of2.gif" alt="what its SUPPOSED to look like" vspace="5" hspace="5"/></li>
<li>Upload overall_footer.tpl and overall_header.tpl onto yourphpbbinstallation/templates/*name of your template here*/. NOTE that your ftp server <strong>SHOULD NOT</strong> ask permission from you to overwrite the existing files, because as I taught you in the above backup howto, you should have renamed them and therefore there shouldn't be files there to overwrite. CANCEL the overwrite and retrace your steps.</li>
<li>Check your site, you should see the google ads at the side, <a href="http://broadband.exchange.ph" target="new">like mine</a></li>
<li>Let me know how yours went! If things go well (meaning if the lazy bug doesn't bite), I'll make another howto about putting adsense onto <a href="http://wordpres.org" target="new">WordPress</a> installations.</li>
</ol>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2005/09/01/25/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ym update. again.</title>
		<link>http://www.lefthandedlayup.com/2005/08/31/ym-update-again/</link>
		<comments>http://www.lefthandedlayup.com/2005/08/31/ym-update-again/#comments</comments>
		<pubDate>Wed, 31 Aug 2005 03:07:05 +0000</pubDate>
		<dc:creator>Gabriel</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[technews]]></category>

		<guid isPermaLink="false">http://pisces-iscariot.exchange.ph/?p=24</guid>
		<description><![CDATA[no doubt <a href="http://messenger.yahoo.com" target="new">ym</a> is one of my absolute favorite instant messengers and an essential for me to keep in touch with clients. But it's installation policies, pushing Toolbar, Extras and trying to make it your homepage and email app <em>is just something else</em>. <a href="http://www.lefthandedlayup.com/2005/08/31/ym-update-again/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://exchange.ph/pisces_iscariot/sep022005_ym.jpg" align="left" vspace="5" hspace="5"/>no doubt <a href="http://messenger.yahoo.com" target="new">ym</a> is one of my absolute favorite instant messengers and an essential for me to keep in touch with clients ("clients" being my official term for any sort of contacts including friends, ex-gfs, enemies, batchmates, relatives and all sorts of riffraff. Actual clients actually number about 5%).</p>
<p><span id="more-24"></span></p>
<p>Ahem. Anyway, the point is, the thing I loathe most of all is spyware / adware or anything of the sort that loads onto your PC without due consideration or permission from myself. I read an article once about how one does (or should) consider one's PC likes someone's home, replete with private information or even if not - necessarily - private, otherwise real estate should be unavailable to anyone not duly introducing himself and asking - very kindly - first, even if they are what I consider an important app like an IM.</p>
<p>And so we come to YM's Instant Messenger. The installation of which was like below, to avoid its cheeky way of installing Yahoo Toolbar and Yahoo Extras which, if you think about it, (and I mean <em>really</em> think about it), why would you wanna install in the first place?</p>
<table cellpadding="5" cellspacing="0" border="0">
<tr>
<td colspan="2" align="center"><em>click on the images for a bigger version</em></td>
</tr>
<tr>
<td bgcolor="#CCCCCC"><strong>remember to check "Custom (Advanced Users)"</strong>. Note that you <em>cannot</em> choose "Typical" <em>without including</em> Toolbar and Extras along with Messenger. Also note that you <strong><em>cannot uncheck</em></strong> "Make Yahoo! my default search engine". "Advanced Users" my foot. There's nothing "advanced" about wanting to install Messenger without the unecessary add-ons.</td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_install_ym_correctly_big_1of3.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_install_ym_correctly_small_1of3.jpg" border="0"/></a></td>
</tr>
<tr>
<td bgcolor="#CCCCCC"><strong>Custom Install Options allows you to remove unwanted apps</strong>, which is basically anything below Messenger. That's Toolbar with Popup Blocker, Extras, Making Yahoo your default search engine, making Yahoo.com your homepage <em>(the nerve!)</em>, and making Yahoo Mail your default mail application. That's 5 count 'em 5 stuff <em>you don't really want</em>.</td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_install_ym_correctly_big_2of3.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_install_ym_correctly_small_2of3.jpg" border="0"/></a></td>
</tr>
<tr>
<td bgcolor="#CCCCCC"><strong>This is what we're going for right here</strong>. A clean install of Messenger without uneccessary add-ons.</td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_install_ym_correctly_big_3of3.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_install_ym_correctly_small_3of3.jpg" border="0"/></a></td>
</tr>
<tr>
<td height="30"></td>
</tr>
</table>
<p>today August 31, 2005 however, ym updated itself, and in the process updated its way of sneaking into your PC as well.</p>
<p><!--more--></p>
<table cellpadding="5" cellspacing="0" border="0">
<tr>
<td height="30"></td>
</tr>
<tr>
<td bgcolor="#cccccc"><strong>it all started innocently enough.</strong></td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_ym_update_big_1of6.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_ym_update_small_1of6.jpg" border="0"/></a></td>
</tr>
<tr>
<td bgcolor="#cccccc"><strong>then suddenly you'll notice</strong> unlike at the top it's a different "Customize" clickable link unlike the checkbutton above, <em>as if that wasn't sneaky enough</em>. Really, what other reason would there be to change the layout if they didn't think that we were wising up? And guess what? I missed it, and installed as-is. </td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_ym_update_big_2of6.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_ym_update_small_2of6.jpg" border="0"/></a></td>
</tr>
<tr>
<td bgcolor="#cccccc"><strong>Of course</strong>, it all went awry after that</td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_ym_update_big_3of6.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_ym_update_small_3of6.jpg" border="0"/></a></td>
</tr>
<tr>
<td bgcolor="#cccccc"><strong>yep</strong>, y! finally got my browser with their toolbar</td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_ym_update_big_5of6.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_ym_update_small_5of6.jpg" border="0"/></a></td>
</tr>
<tr>
<td bgcolor="#cccccc"><strong>forunately,</strong> good ol' firefox managed to stop 'em in their tracks. I didn't know it could do that.</td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_ym_update_big_4of6.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_ym_update_small_4of6.jpg" border="0"/></a></td>
</tr>
<tr>
<td bgcolor="#cccccc"><strong>let me get this straight.</strong> You don't have to be an Administrator to install (I was logged in as a <a href="http://www.wellesley.edu/Computing/WinXP/wxpgroups.html#power" target="new">Power User</a>), but you have to be one to uninstall?</td>
<td><a href="http://exchange.ph/pisces_iscariot/aug312005_ym_update_big_6of6.jpg" target="new"><img src="http://exchange.ph/pisces_iscariot/aug312005_ym_update_small_6of6.jpg" border="0"/></a></td>
</tr>
<tr>
<td height="30"></td>
</tr>
</table>
<p>so maybe im finicky. maybe toolbar, extras, and making my my.yahoo.com or yahoo.com itself as my homepage is good for me. I mean, it does have a popup blocker and all right? and besides, ymessenger is so much better than Google's Talk, althought it is still in beta, it's so boring to look at (<em>goodness no emoticons!</em>), and I'm hardly using it except to check on mail, so it's all good correct? And sure, it's <a href="http://help.yahoo.com/help/us/toolbar/toolbar-49.html" target="new">easy to remove,</a> and finally, yeah it was my mistake that I missed that "Customize" option while installing it. I was busy after all, when that announcement came up, and I just clicked away to get it over with (<em>or maybe that was the point?</em>).</p>
<p>but tell you what, Yahoo: what if <em><strong>I dont want it</strong></em>. Earth-shaking thought right there huh? <strong>I DONT WANT</strong> it installed. Sure I'll sing praises about Messenger (like I did 3 years ago in a 5 part series on Instant messengers for PCWorld Phils.,), and yes I'll still use the excellent Yahoo Calendar, I'll still maintain my <a href="http://groups.yahoo.com/group/pcexchange" target="new">YahooGroups</a>, and I'll still use my old <a href="http://pisces-iscariot.exchange.ph/?p=19" target="new">Rocketmail</a> account.</p>
<p>But thing is, <strong>I DON'T WANT</strong> Toolbar, <strong>I DONT WANT</strong> Extras, and <strong>I DONT WANT</strong> to make my default page Yahoo.com or My.Yahoo.com, and <strong>I DON'T WANT</strong> to use my Yahoo email as my default mail.</p>
<p>And all this sneaky installation business? It turns me off, and <em>as a result</em> I'm starting to get excited about Google Talk.</p>
<p>I hope you listen up Yahoo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lefthandedlayup.com/2005/08/31/ym-update-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

