<?xml version="1.0" encoding="UTF-8"?>
<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"
	>

<channel>
	<title>The-Forgotten.org</title>
	<atom:link href="http://www.the-forgotten.org/feed" rel="self" type="application/rss+xml" />
	<link>http://www.the-forgotten.org</link>
	<description></description>
	<pubDate>Thu, 07 Aug 2008 00:38:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>SmugMug</title>
		<link>http://www.the-forgotten.org/2008/08/06/smugmug/</link>
		<comments>http://www.the-forgotten.org/2008/08/06/smugmug/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 20:09:19 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=78</guid>
		<description><![CDATA[I&#8217;ve never been completely happy with Flickr. I started using it several years ago because I got tired of maintaining Gallery on my servers when services such as flickr and smugmug existed. I originally chose flickr because it was free, but after i started scanning my family pictures I hit the upload limit fast and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve never been completely happy with <a href="http://flickr.com">Flickr</a>. I started using it several years ago because I got tired of maintaining <a href="http://gallery.menalto.com/">Gallery</a> on my servers when services such as flickr and <a href="http://smugmug.com">smugmug</a> existed. I originally chose flickr because it was free, but after i started scanning my family pictures I hit the upload limit fast and bought the pro account. Setup my sets and left it at that for a couple of years.</p>
<p>When I started dating Katherine and showing her some pictures she commented on how awful Flickrs navigation is. Flickr&#8217;s strength is when you are using its tagging features and searching for lots of pictures &#8230; especially if you want pictures from multiple people. I always browsed my pictures in iPhoto on my local machine, not on flickr. I used flickr to link to pictures and let other people browse them. But for people that are not used to tagging and searching tags, using Flickr really IS very cumbersome.</p>
<p>I recently became re-aware of SmugMug from <a href="http://lifehacker.com">Lifehacker</a>. A friend of mine used it years ago, but i dismissed it because I was running Gallery on my servers. Then i ignored it because I was already using the free flickr and decided to just stick with it. Having some time to kill this week, i decided to give smugmug another serious look and signed up for their 14 day free trial and used <a href="http://www.smugglr.net/">Smugglr</a> to automagically migrate my flickr data over to SmugMug. The import worked well, only 4 images failed to import properly. My only complaint about Smugglr is that it didn&#8217;t tell me which images didn&#8217;t import, so i need to figure that out by hand.</p>
<p>All in all I&#8217;m happy with SmugMug, and paid for the year subscription (50% off with the coupon code &#8220;flickr&#8221;). It allows much more customization and organization options than Flickr does: Categories, Sub Categories, Themes (global and individual galleries), etc &#8230;. I feel like I am in control of my pictures again instead of just having a stream of all my images and some &#8220;sets&#8221; which always felt like a hack to me.  If i know what i&#8217;m looking for search the tags in flickr worked well, but sometimes you just want to browse your images. SmugMug excels at just browsing things, if you spend the time to setup categories and sub categories and organizing your galleries.</p>
<p>Here is my new Photo website, enjoy:</p>
<p><a href="http://mbond.smugmug.org">http://mbond.smugmug.org</a></p>
<p>I updated the navigation in the left hand bar as well. I won&#8217;t be getting rid of my flickr account but it does expire in January and I won&#8217;t be renewing the pro account. Pretty sure that means things will disappear after that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/08/06/smugmug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EngineCMS</title>
		<link>http://www.the-forgotten.org/2008/08/04/enginecms/</link>
		<comments>http://www.the-forgotten.org/2008/08/04/enginecms/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 19:34:22 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[EngineCMS]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=77</guid>
		<description><![CDATA[EngineCMS is a CMS that i&#8217;m working on developing to fill a specific set of features that I haven&#8217;t been able to find in other systems.

Use the file system, instead of a database, to store content. This is important so that we can use command line tools to work with the files.
Revision control
Authentication, Permissions, ACLs [...]]]></description>
			<content:encoded><![CDATA[<p>EngineCMS is a CMS that i&#8217;m working on developing to fill a specific set of features that I haven&#8217;t been able to find in other systems.</p>
<ol>
<li>Use the file system, instead of a database, to store content. This is important so that we can use command line tools to work with the files.</li>
<li>Revision control</li>
<li>Authentication, Permissions, ACLs against local users (unix auth), built in users (to the CMS), Active Directories Users/Groups/OUs, and IP based authentication.</li>
<li>Easily integrate external applications, without resorting to having to use rewrite rules in apache</li>
<li>simple &#8217;server&#8217; scripts to handle the rendering and display, providing a robust and stable developing platform. That is, once the rendering engine is developed thats it. All the &#8216;new&#8217; features will be on the &#8216;back end&#8217;</li>
<li>back end, the CMS part, is separate from the rendering engine allowing it to be located on a separate server.</li>
<li>system is designed in such a way that no one has to have access to the public web server.</li>
<li>Individual pages need to be able to have different themes applied to them, instead of the default theme</li>
<li>Fallback &#8212; if you specify &#8220;images/banner.gif&#8221; it will search the current directory for a directory &#8220;images&#8221; and &#8220;banner.gif&#8221; inside of it. If it doesn&#8217;t exist it will work its way back up the directory tree until it does. Same thing for any file, such as &#8220;leftNavigation.php&#8221;</li>
<li>Easy for people with no web development experience to create and maintain pages</li>
</ol>
<p>There are some other influences as well, but those are the big ones. I&#8217;ve been looking at several CMSs over the years. Drupal and Zope/Plone come the closest to providing what I am looking for, but fall short.</p>
<p>Drupal, currently, doesn&#8217;t support ACL properly in version 6 and its been out since February. Version 7 is already in development. A lot of the *core* features i want are in modules that lag far behind the main system. This worries me and makes me think that I will get stuck in an old version of drupal.</p>
<p>Drupal also requires all &#8220;addons&#8221; to be drupal modules. In some cases there are things that we will want to throw up that will be easy to throw together, but not easy as a module. An example would be a temporary application that might be up for 1 semester, and we only have 1 week to develop it.</p>
<p>Drupal&#8217;s revision control is also lacking a bit.</p>
<p>Zope/Plone is a great system. I used it for years on my own personal website and I still use it on the Library Intranet website (until this new system is ready at least). Problem is, everything has to be done via the web interface. You can&#8217;t use common commandline tools to work with files. If i am out of town on a 56k dial up, i want to be able to use emacs to make an edit instead of having to use a web browser. This is my biggest complaint about Zope, which kills it for me.</p>
<p>Enter EngineCMS</p>
<p>EngineCMS, for lack of a better name, addresses everything above and is very alpha at this point. I&#8217;m currently implementing the authentication system. Once the authentication system is done, which i hope to get done by 8/11/2008 (that might be wishful thinking), the Engine/Front-End part will be &#8216;feature complete&#8217; and I will be able to start working on the back end.</p>
<p>The back end is where all the actual CMS magic happens. It is where web authors will go to do their thing. The front end is merely what will render the pages that are on the server. Once the front end is done I will begin converting the library&#8217;s intranet to the new CMS, by hand, so that I have a test bed for the back end CMS stuff. It will also give me a frequently used, but private, area to debug problems with the front end so that it is rock solid by the time we are ready to move it to live-public-production servers.</p>
<p>Development is being done in PHP, which is something i&#8217;ve resisted for years &#8230; but it is starting to grow on me. It allows for a lot of neat things without having to develop an actual server, like I&#8217;ve done in the past (and like zope still does).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/08/04/enginecms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Karate Testing</title>
		<link>http://www.the-forgotten.org/2008/06/03/karate-testing/</link>
		<comments>http://www.the-forgotten.org/2008/06/03/karate-testing/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 12:15:36 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Martial Arts]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[fitness]]></category>

		<category><![CDATA[Karate]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=74</guid>
		<description><![CDATA[On May 31st I tested at the dojo. It had been a year and 1 month since I last tested, for 3 Kyu (3rd Brown), and going into the test i wasn&#8217;t sure which rank I was testing for. Sensei has been testing all the brown belts since December, first by asking us to work [...]]]></description>
			<content:encoded><![CDATA[<p>On May 31st I tested at the dojo. It had been a year and 1 month since I last tested, for 3 Kyu (3rd Brown), and going into the test i wasn&#8217;t sure which rank I was testing for. Sensei has been testing all the brown belts since December, first by asking us to work harder and observing the results. He had said that some of us would lose 1 strip and some 2, but never telling us which of us would be testing for which ranks. Finally at the beginning of May, after 5 months of recording workouts and having extra workout sessions, Sensei told 3 of us that we would be testing at the end of the month. </p>
<p>On Saturday 2 of us showed up for testing, the third injured her back earlier in the week and was not able to test. I&#8217;m still not sure how long we were in the Dojo on saturday, but I know that we held a horse stance for 1 hour. That part is still vividly fresh in my mind (and legs). As always happens when you test, you find areas where you know you can use more work than you thought. Even if you work out in front of mirrors almost every day (so that you can see and fix your movements), during testing those flaws that you didn&#8217;t notice during your normal workout jump out at you. &#8220;I should have my knee up slightly higher on my side snap kicks,&#8221; &#8220;My hip is turning over too late on my round house kicks, and not enough on my rising round house kicks,&#8221; &#8220;i&#8217;m turning my hip over too far on my thrust kicks,&#8221; just to name a few mistakes that I noticed.</p>
<p>Last night, June 2nd, Sensei used the advanced class to talk about the test. Doug was promoted to the rank of 2 Kyu (2nd Brown) from 3kyu. I was Promoted to the rank of 1 Kyu (1st Brown), and given the title Sihin. This is a title reserved for people that have shown a love and dedication for the school, and is usually given to the highest ranking student that has not yet attainted the rank of Black Belt. </p>
<p>Honestly, I&#8217;m not sure how I feel about this title. Sensei tells me that I should be very proud, but I am not. I don&#8217;t FEEL like i deserve this title. When I look at my knowledge and skill compared to Senpai Kennedy, I feel that my skills are lacking. He has been a black belt for almost 3 years now, having tested for black at the same time i tested for my yellow. Obviously he SHOULD be much better than I, but I still choose him as a basis for comparison of my own skills. I wish I could see what his blocks and strikes and sparring looked like 3 years ago.</p>
<p>I also don&#8217;t know how I feel about having an actual title. I feel that it might give other students, especially the younger kids, the impression that I am better than the other students. I am not! I still have many flaws in my technique that need corrected, just like every other student. </p>
<p>I thought a lot about this while I was drifting off to sleep. I can&#8217;t give him any more than I already am, and won&#8217;t sacrifice everything else in my life to do that. I&#8217;ve decided that i&#8217;m going to keep doing exactly what i&#8217;ve been doing while in the dojo and hope that is what sensei expects of me. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/06/03/karate-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fitness Drinks</title>
		<link>http://www.the-forgotten.org/2008/05/29/fitness-drinks/</link>
		<comments>http://www.the-forgotten.org/2008/05/29/fitness-drinks/#comments</comments>
		<pubDate>Thu, 29 May 2008 13:00:01 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[fitness]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=73</guid>
		<description><![CDATA[Last night at the dojo, after a relatively mild workout, one of the students grabbed a Gatorade. I used to do the same thing, your thirsty and Gatorade not only fixes that problem but puts essential things back into your body. I don&#8217;t know what these things are, i&#8217;m not a doctor, but they are [...]]]></description>
			<content:encoded><![CDATA[<p>Last night at the dojo, after a relatively mild workout, one of the students grabbed a Gatorade. I used to do the same thing, your thirsty and Gatorade not only fixes that problem but puts essential <strong>things</strong> back into your body. I don&#8217;t know what these <strong>things</strong> are, i&#8217;m not a doctor, but they are essential the commercial told me so.</p>
<p>If you are trying to lose weight though, don&#8217;t buy into the hype. Fitness drinks, all of them, have calories. 1 Bottle of gatorade is between 100 and 200 calories. Depending on your weight you need to jog an extra 10 to 20 minutes to burn those calories you just put into your body to quench your thirst (http://www.healthstatus.com/calculate/cbc). Then, your thirsty again &#8230;</p>
<p>Do yourself a favor and just drink water after your 20 to 60 minute workout. It will save you money, it will save you calories (you&#8217;ll get all those <strong>things</strong> back when you eat!). Fitness drinks like gatorade have their place: running a marathon, playing in a sporting event, testing in martial arts, or other activities where you are trying to maintain peak physical performance throughout the activity for hours on end. In those situations you need the calories to continue functioning properly, as well as all those <strong>things</strong>. But if you are just working out, you&#8217;ll find that you get much more out of your workout if you don&#8217;t drink fitness drinks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/05/29/fitness-drinks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Losing Weight</title>
		<link>http://www.the-forgotten.org/2008/05/28/losing-weight/</link>
		<comments>http://www.the-forgotten.org/2008/05/28/losing-weight/#comments</comments>
		<pubDate>Wed, 28 May 2008 12:41:53 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[diet]]></category>

		<category><![CDATA[exercise]]></category>

		<category><![CDATA[fitness]]></category>

		<category><![CDATA[weight loss]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=72</guid>
		<description><![CDATA[As some have noticed, i&#8217;ve lost a touch of weight in the last year. Specifically from October through April I was dieting and dropped approximately 65lbs. Since then i&#8217;ve taking off another 5~ish pounds through exercise. Many people have asked how I did it, which diet did i use? Was it atkins or south beach?
Truth [...]]]></description>
			<content:encoded><![CDATA[<p>As some have noticed, i&#8217;ve lost a touch of weight in the last year. Specifically from October through April I was dieting and dropped approximately 65lbs. Since then i&#8217;ve taking off another 5~ish pounds through exercise. Many people have asked how I did it, which diet did i use? Was it atkins or south beach?</p>
<p>Truth is, I just learned about portion sizes. I did it the old fashion way, i ate less food and I exercised more. Thats it. Eat less, Move more.</p>
<p>&#8220;But i&#8217;ve tried that and it doesn&#8217;t work&#8221; the people say. Well, that&#8217;s because people believe all those diets and nutritionists that say you shouldn&#8217;t be hungry while you are trying to lose weight, because you&#8217; ll starve yourself and actually gain weight. That&#8217;s a load of crap. Yes, if you don&#8217;t eat enough you will end up starving yourself, which will in turn make your body store fat. But that is easy to avoid. Here is what i eat monday through friday for those months, approximately 1000 calories a day:</p>
<p>Breakfast: Danon light and fit yogurt. 1 serving @ 60 calories</p>
<p>Lunch: Snickers Marathon Mutrition Bar. 1 serving @ 150 calories</p>
<p>Dinner: Whatever I wanted. Steak, potatoes, BBQ Chicken, Fried Chicken, Nachos, Burger, whatever. The trick is that I read the side of the box, looked at what a portion was and STUCK to that. Did you know that 1 serving of beef is 4oz. That&#8217;s right, 4oz of uncooked meat. After the fat is drained you&#8217;ll get about 3oz. Did you know that a serving of nacho chips is 12 chips? Yup. those 12 chips is all you get.</p>
<p>Did you know that in the 1980&#8217;s a begal was 1/3 to 1/4 the size it is today? People expect bigger portions of food today, which is a huge part of our problem.</p>
<p>Want to lose weight? Learn to eat portion sizes closer to what you should be eating for your level of activity. After you hit your target weight, increase your calorie intake to what it should be (don&#8217;t listen to anyone but your own body. add food back in slowly and find the correct amount of food that will maintain your weight. that is what you should be eating!).If you become less active, you have to eat less food. Simple and easy to understand.</p>
<p>Don&#8217;t fall into the trap of over eating &#8216;good for you foods.&#8217; Eating 1 pound of apples may be healthier than eating 1 pound of beef and make you feel full, but that isn&#8217;t going to help. You have to learn to eat less food, which is going to make you hungry and uncomfortable for a week or so.Your stomach will make noises and you will be very uncomfortable and hungry. Just fight through the urge to get a snack. After a week or so, you&#8217;ll find that you are no longer uncomfortable and eating less will fill you up.</p>
<p>&#8220;What about holiday&#8217;s and vacations? Can&#8217;t i pig out once in a while?&#8221; &#8230; Absolutely, just once in a while though. I&#8217;ve found that even overeating mildly for just one meal makes it more difficult to say no to the second helping of food at the next meal. You need to learn to say NO to more food when you&#8217;ve had enough.</p>
<p>And don&#8217;t forget the exercise. Diet alone is useless. Yeah, you&#8217;ll lose some weight, but if you don&#8217;t tone and build some muscle it will just come back. Muscle burns more calories at rest than fat does, so if you tone some muscle it will help.</p>
<p>I work out at least twice a week at the local dojo (email me for info, its a GREAT workout), usually 3 times a week. Then at home I bike (at least 20 to 30 miles), jog a couple miles, use the Ski Machine, use weights, etc &#8230; I try to get in approximately 10 to 20 hours a week of quality workout. Yeah, thats a part time job &#8230; but its hard work to lose weight and keep weight off. Once you&#8217;ve had that weight you have to remain diligant about keeping it off.</p>
<p>To give you an idea: I love red robin cheese burgers. When Katherine and I visit her sister we usually end up at red robin. I usually get the 5 alarm burger, a shake, and fries. That food there puts 5 solid pounds on me (if i get on the scale before and after the meal i learn that i&#8217;ve added 7 pounds, 2~ish must be water weight because it comes off by the next morning) &#8230; and it takes me about 2 days to work it back off. Thats 2 days of an hour or more of exercise each day, plus my normal daily activities.</p>
<p>I should also note that over the past couple of years i&#8217;ve given up ALL Soda, Tea, and Coffee (i drink mostly water now, with the occassional juice(But remember, juice adds calories ). I no longer use Ketchup or Syrup to flavor foods. I&#8217;ve also learned to eat whole grain, wheat, and rye breads instead of white. It takes a while to get used to not reaching for the ketchup to put on a burger or fries, but once you do you learn that those foods actually have flavor of their own and its pretty good. <img src='http://www.the-forgotten.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/05/28/losing-weight/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tailwheel Training</title>
		<link>http://www.the-forgotten.org/2008/04/28/tailwheel-training/</link>
		<comments>http://www.the-forgotten.org/2008/04/28/tailwheel-training/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 15:53:44 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=71</guid>
		<description><![CDATA[Scheduled 10 hours in a Citabria with a CFI in August. FINALLY going to have a chance to get my tail dragger endorsement :).
Hoping that I have enough time left after doing the tail dragger stuff to do some spins. That would be most excellent.
]]></description>
			<content:encoded><![CDATA[<p>Scheduled 10 hours in a Citabria with a CFI in August. FINALLY going to have a chance to get my tail dragger endorsement :).</p>
<p>Hoping that I have enough time left after doing the tail dragger stuff to do some spins. That would be most excellent.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/04/28/tailwheel-training/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress 2.5</title>
		<link>http://www.the-forgotten.org/2008/04/03/wordpress-25/</link>
		<comments>http://www.the-forgotten.org/2008/04/03/wordpress-25/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 13:25:54 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=70</guid>
		<description><![CDATA[Upgraded to Wordpress 2.5. Painless upgrade, nice changes to the dashboard.
]]></description>
			<content:encoded><![CDATA[<p>Upgraded to Wordpress 2.5. Painless upgrade, nice changes to the dashboard.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/04/03/wordpress-25/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flickr Integration</title>
		<link>http://www.the-forgotten.org/2008/03/13/flickr-integration/</link>
		<comments>http://www.the-forgotten.org/2008/03/13/flickr-integration/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 12:52:03 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[photos]]></category>

		<category><![CDATA[slickr]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/2008/03/13/flickr-integration/</guid>
		<description><![CDATA[Integrated My Flickr page into the website using a Wordpress plugin called Slickr. 
The results can be seen here on the Photo Gallery Page, so far I&#8217;m happy with the results. The only thing I&#8217;d like to see different is the ability to define a &#8216;default&#8217; photo set to display when the page is loaded. [...]]]></description>
			<content:encoded><![CDATA[<p>Integrated My <a href="http://www.flickr.com/photos/mbond/sets">Flickr</a> page into the website using a Wordpress plugin called <a href="http://stimuli.ca/slickr/">Slickr</a>. </p>
<p>The results can be seen here on the <a href="http://www.the-forgotten.org/gallery/">Photo Gallery Page</a>, so far I&#8217;m happy with the results. The only thing I&#8217;d like to see different is the ability to define a &#8216;default&#8217; photo set to display when the page is loaded. Maybe if i get board I&#8217;ll add that in.</p>
<p>I also updated the theme to be widget aware, and added the slickr widget to the sidebar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/03/13/flickr-integration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Email in daily life</title>
		<link>http://www.the-forgotten.org/2008/02/19/email-in-daily-life/</link>
		<comments>http://www.the-forgotten.org/2008/02/19/email-in-daily-life/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 15:08:44 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/2008/02/19/email-in-daily-life/</guid>
		<description><![CDATA[Oh how I hate email. Ken posted the following to twitter:
 Man, I have a crapton of email. Is it healthy to carry around this much baggage?
and 
 Consolidating inboxes for a Google Apps for Your Domain migration. My spam folder has 13,000 messages over the last five years!
Twitter has its place, but discussion isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Oh how I hate email. <a href="http://kennsarah.net">Ken</a> posted the following to twitter:</p>
<blockquote><p> Man, I have a crapton of email. Is it healthy to carry around this much baggage?</p></blockquote>
<p>and </p>
<blockquote><p> Consolidating inboxes for a Google Apps for Your Domain migration. My spam folder has 13,000 messages over the last five years!</p></blockquote>
<p>Twitter has its place, but discussion isn&#8217;t one of them. For those didn&#8217;t have the misfortune of twitter texting them about this, here is a quick recap:</p>
<blockquote><p>
<strong>Michael Bond </strong> <em>@kenwalker treat email like postits. Read it, delete it. Move useful information to ical, yojimbo, etc. try to keep email to 50 msgs or less</em></p>
<p><strong>Ken Walker</strong> <em>@mbond I get the GTD angle of keeping the inbox clean, but do you keep messages for up to a specified period of time? I mean deleted and sent items</em></p>
<p><strong>Michael Bond </strong> <em>@kenwalker Email is a communication tool like a phone call. Do you record and archive your phone calls? I delete sent/deleted items daily.</em></p>
<p><strong>Ken Walker</strong>  <em>@mbond Fair point. I keep everything indexed and searchable at work, which has saved me from ti&#8230; Read more at http://tinyurl.com/yo8lkh</em>
</p></blockquote>
<p>To be more verbose:</p>
<p>Email has its place, but it hasn&#8217;t evolved much since the first email message was sent. Its still a simple file that has a series of headers, a body, and possibly a mime attachment. Thats it. You can&#8217;t assign meta data to it. Searching and sorting is limited to headers, which may or may not exist depending on where it is from, and the actual content of the email. Some basic meta-data has been hacked on by adding more headers, but different email programs handle them in different ways. </p>
<p>Email, at a quick glance, is a great way to store a lot of information. You can sort it out into folders, based on header information, and you can search for information based on the content of the email. Apple&#8217;s Mail.app even takes it a step further and introduces smart folders. All of this is just a brute force effort to keep an aging system in place. </p>
<p>Please for the love of god, stop.</p>
<p>Read the email, if it has information that is worth saving the information is worth moving to another location. If it contains phone numbers, put it in your contact software (Address Book). If it contains dates and appointments, put it into iCal. If it contains action items/todo&#8217;s move it to your todo list (<a href="http://www.culturedcode.com/things/">Things</a>). If you have documents, put them on your hard drive. If you have receipts, serial numbers, notes, and anything else worth keeping drop it into <a href="http://www.barebones.com/products/yojimbo/">Yojimbo</a>. Then if you need to search for something later on, use Spotlight searching to find it. You have access too all the Metadata goodness then. </p>
<p>We live in a word where people Twitter all day long, IM each other, Blog, Spend hours cataloging their music, dvd&#8217;s, books, and games with metadata off Amazon so its &#8216;just right&#8217;. Their photo&#8217;s and home videos get the same treatment of not only tags but geo-tagging and linking to google maps. Yet people are content having their daily lives be completely metadata-less by keeping all of their information in email instead of moving it to specialized databases. </p>
<p>This is just one of my pet-peeves about email. The list goes on, including using email for the wrong reasons. Much like twitter is the wrong place to have a discussion email is the wrong place to send tweats. 2 word &#8220;thank you&#8221; or &#8220;OK&#8221; or &#8220;I&#8217;ll get right on that&#8221; emails are a complete waste. PLEASE don&#8217;t send them. </p>
<p>Oh, how i long for a true communication solution. 1 Address to send me tweats, emails, instant messages, SMS text messages. A nice XML Format that is easy to parse and use, with lots of future expandability, meta-data out the arse, links out to external applications (think, highlight->right click->send to) and the file system (for attachments). Threaded conversations that involve multiple people. The technology is there, its just that the world is wedded to the aging email and brute forcing new ideas into an old system that was never designed to handle what people want it to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/02/19/email-in-daily-life/feed/</wfw:commentRss>
		</item>
		<item>
		<title>mail() in PHP</title>
		<link>http://www.the-forgotten.org/2008/01/18/mail-in-php/</link>
		<comments>http://www.the-forgotten.org/2008/01/18/mail-in-php/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 02:48:39 +0000</pubDate>
		<dc:creator>mbond</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.the-forgotten.org/?p=61</guid>
		<description><![CDATA[Who&#8217;s the idiot that decided to disable php.ini&#8217;s SMTP variable on linux and assume that everyone can use sendmail off the local box? Apparently, its a windows only setting. So its not that PHP can&#8217;t support using an SMTP server, its that they specifically disable that feature on linux. Brilliant.
Enter smtp_mail.php a php class that [...]]]></description>
			<content:encoded><![CDATA[<p>Who&#8217;s the idiot that decided to disable php.ini&#8217;s SMTP variable on linux and assume that everyone can use sendmail off the local box? Apparently, its a windows only setting. So its not that PHP can&#8217;t support using an SMTP server, its that they specifically disable that feature on linux. Brilliant.</p>
<p>Enter <a href="http://www.phpclasses.org/browse/package/2065.html">smtp_mail.php</a> a php class that works similar to mail() but honors what you have set in php.ini. Not a perfect solution, but better than nothing. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.the-forgotten.org/2008/01/18/mail-in-php/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
