<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>existence, refactored &#187; Productivity</title>
	<atom:link href="http://blog.bryanbibat.net/category/daily-entry/productivity-daily-entry/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bryanbibat.net</link>
	<description>With kindness comes naïveté. Courage becomes foolhardiness. And dedication has no reward.</description>
	<lastBuildDate>Thu, 17 May 2012 13:53:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Changing Gimp&#8217;s Default Save Folder</title>
		<link>http://blog.bryanbibat.net/2012/02/21/changing-gimps-default-save-folder/</link>
		<comments>http://blog.bryanbibat.net/2012/02/21/changing-gimps-default-save-folder/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 01:39:58 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[GIMP]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=1539</guid>
		<description><![CDATA[Having to deal with image manipulation every once in a while, having Gimp not remember my last save folder is a bit annoying since my image folder isn&#8217;t the same as My Pictures. A quick Google search later, I found that the fix was pretty easy. The trick here is that Gimp considers the current [...]]]></description>
			<content:encoded><![CDATA[<p>Having to deal with image manipulation every once in a while, having <a href="http://www.gimp.org">Gimp</a> not remember my last save folder is a bit annoying since my image folder isn&#8217;t the same as My Pictures. A quick Google search later, I found that the fix was pretty easy.</p>
<p>The trick here is that Gimp considers the current directory (i.e. where it is executed) as the default directory. Thus, to change the &#8220;default&#8221; directory setting in Windows, all you need to do is to open the launcher properties:</p>
<p><img src="http://www.bryanbibat.net/images/gimp-folder.png" alt="gimp settings" class="aligncenter" /></p>
<p>And change the &#8220;Start in&#8221; setting to the folder of your choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2012/02/21/changing-gimps-default-save-folder/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Take periodic screenshots in Ubuntu with scrot and cron</title>
		<link>http://blog.bryanbibat.net/2011/10/03/take-periodic-screenshots-in-ubuntu-with-scrot-and-cron/</link>
		<comments>http://blog.bryanbibat.net/2011/10/03/take-periodic-screenshots-in-ubuntu-with-scrot-and-cron/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 10:04:03 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[scrot]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=1421</guid>
		<description><![CDATA[I had to log my hourly effort in my last gig (stupid policy IMO; what am I, a factory worker?) but since I&#8217;m not working on Windows, I couldn&#8217;t use ManicTime to do the tracking for me. Taking a cue from oDesk, I decided to make a simple script that takes screenshots of my desktop [...]]]></description>
			<content:encoded><![CDATA[<p>I had to log my hourly effort in my last gig (stupid policy IMO; what am I, a factory worker?) but since I&#8217;m not working on Windows, I couldn&#8217;t use <a href="http://www.manictime.com/">ManicTime</a> to do the tracking for me.</p>
<p>Taking a cue from oDesk, I decided to make a simple script that takes screenshots of my desktop every few minutes so that I could just review them at the end of the day. For this I used <a href="http://packages.ubuntu.com/natty/scrot">scrot</a> for taking the screenshots and <a href="http://en.wikipedia.org/wiki/Cron">cron</a> for the scheduling.</p>
<p>First install scrot:</p>
<p><code>$ sudo apt-get install scrot</code></p>
<p>Then write a script, say <code>/path/to/home/scrot.sh</code>:</p>
<pre class="brush: bash; title: ; notranslate">#!/bin/sh
LOCATION=&quot;$(date +/path/to/home/Pictures/shots/%Y/%m/%d)&quot;
mkdir -p $LOCATION
cd $LOCATION
DISPLAY=:0 scrot '%Y-%m-%d-%H%M.jpg' -q 20
</pre>
<p>This script will take a low quality screenshot of the desktop and put it in the Pictures/shots folder separated by date.</p>
<p>Set the permissions with <code>chmod</code>:</p>
<p><code>$ chmod u+x /path/to/home/scrot.sh</code></p>
<p>You can now test this by running:</p>
<p><code>$ /path/to/home/scrot.sh</code></p>
<p>Now time to add the script as a cron job. There are a lot of cron tutorials out there, but to summarize what you need to do, here are the basic steps:</p>
<p>Run <code>crontab -e</code> to edit the cron table file for your current user.</p>
<p>Add a line that will execute <code>scrot.sh</code> whenever you want it to run. For example, here&#8217;s the entry for running the script every three minutes on Monday to Friday:</p>
<p><code>*/3 * * * 1-5 /path/to/home/scrot.sh</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2011/10/03/take-periodic-screenshots-in-ubuntu-with-scrot-and-cron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Ubuntu Lock Screen Background</title>
		<link>http://blog.bryanbibat.net/2011/07/11/customize-ubuntu-lock-screen-background/</link>
		<comments>http://blog.bryanbibat.net/2011/07/11/customize-ubuntu-lock-screen-background/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 08:02:39 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=1366</guid>
		<description><![CDATA[Changing your desktop background in Ubuntu (and practically any desktop OS) is trivially easy. Changing your login background picture in Ubuntu will take a bit of Google-ing, but it&#8217;s still pretty easy to do. Changing the background of the lock screen, however, is a different thing altogether. If you do some digging around, you&#8217;ll find [...]]]></description>
			<content:encoded><![CDATA[<p>Changing your desktop background in Ubuntu (and practically any desktop OS) is trivially easy.</p>
<p>Changing your login background picture in Ubuntu will take a bit of Google-ing, but it&#8217;s still pretty easy to do.</p>
<p>Changing the background of the lock screen, however, is a different thing altogether.</p>
<p><img class="aligncenter" src="http://www.bryanbibat.net/images/lockscreen_before.jpg" alt="original lockscreen" /></p>
<p>If you do some digging around, you&#8217;ll find out that this lock screen is defined in <code>/usr/share/gnome-screensaver/lock-dialog-default.ui</code>. In other words, it uses <a href="http://glade.gnome.org/">Glade</a> for its design. On one hand, that means you could design funky lock screens like the <a href="http://gnome-look.org/content/show.php/NSA+Lock+Screen+%28Ubuntu+10.04%29?content=125033">NSA Lock Screen</a>. On the other hand, simple tasks like changing the background can be a pain to do.</p>
<p>To spare you the effort in studying Glade just to change your lock screen&#8217;s background, I&#8217;ve created a <a href="https://github.com/bryanbibat/custom-ubuntu-lockscreen">Github project</a> to point you at the right direction. </p>
<p>As shown in the <a href="https://github.com/bryanbibat/custom-ubuntu-lockscreen/commit/465a59399f00956c18d5f579fb4584ddba9d3e06">relevant commit</a>, changing the background requires 3 things present in your <code>/usr/share/gnome-screensaver/</code>:</p>
<ul>
<li>a background image (the source of the quote should be pretty obvious),</li>
<li>a <code>gtkrc</code> file to add theming to the UI, and</li>
<li>the updated <code>.ui</code> file</li>
</ul>
<p>This customization assumes you&#8217;re using a 1366&#215;768 monitor. Modifying it to suit your monitor resolution shouldn&#8217;t be hard to do.</p>
<p>And the finished product:</p>
<p><img class="aligncenter" src="http://www.bryanbibat.net/images/finished_product.jpg" alt="customized lockscreen" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2011/07/11/customize-ubuntu-lock-screen-background/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My intro to freelancing talk</title>
		<link>http://blog.bryanbibat.net/2011/06/18/my-intro-to-freelancing-talk/</link>
		<comments>http://blog.bryanbibat.net/2011/06/18/my-intro-to-freelancing-talk/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 15:59:41 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[freelancing]]></category>
		<category><![CDATA[public talk]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=1356</guid>
		<description><![CDATA[Was invited to talk at today&#8217;s Freelancing for WebGeeks event. I may not be your usual freelancer, given that the venue&#8217;s not a hassle for me (Exist TechBar Manila, my current gig&#8217;s with Exist) so I obliged. Anyway, here are my slides. As usual, they don&#8217;t make sense without me talking. before you leap View [...]]]></description>
			<content:encoded><![CDATA[<p>Was invited to talk at today&#8217;s <a href="http://webgeekph.com/events/event-freelancing-for-webgeeks-series-1/">Freelancing for WebGeeks</a> event. I may not be your usual freelancer, given that the venue&#8217;s not a hassle for me (<a href="http://info.exist.com/blogs/bid/47621/TechBar-Rules">Exist TechBar</a> Manila, my current gig&#8217;s with Exist) so I obliged.</p>
<p>Anyway, here are my slides. As usual, they don&#8217;t make sense without me talking.</p>
<div style="width:425px" id="__ss_8346193"> <strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/bryanbibat/webgeek-presentation" title="before you leap">before you leap</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/8346193" width="425" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
<div style="padding:5px 0 12px"> View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/bryanbibat">bryanbibat</a> </div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2011/06/18/my-intro-to-freelancing-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why not Facebook?</title>
		<link>http://blog.bryanbibat.net/2011/05/22/why-not-facebook/</link>
		<comments>http://blog.bryanbibat.net/2011/05/22/why-not-facebook/#comments</comments>
		<pubDate>Sun, 22 May 2011 12:36:16 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Memetics]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=1341</guid>
		<description><![CDATA[While I own an active Facebook account, I don&#8217;t &#8220;use&#8221; as much as other people use it. Heck, its been almost a year since I last scrolled down my feed. For the interest of those who find it preposterous not to have Facebook always open in a browser tab, here are my reasons why I [...]]]></description>
			<content:encoded><![CDATA[<p>While I own an active Facebook account, I don&#8217;t &#8220;use&#8221; as much as other people use it. Heck, its been almost a year since I last scrolled down my feed.</p>
<p>For the interest of those who find it preposterous not to have Facebook always open in a browser tab, here are my reasons why I stopped using Facebook:</p>
<p><span id="more-1341"></span><br />
<h3>The signal to noise ratio is low</h3>
<p>Unlike some people who have deleted their Facebook accounts, I understand that Facebook is a very useful tool. It has an integrated &#8220;mail&#8221; and &#8220;chat&#8221; service. You can create picture albums. It allows you to organize events. There are a crapload of apps in the platform.</p>
<p>However, the main feature of Facebook is always its social aspect, whether it&#8217;s sharing your status or tagging people in pictures. And this is where I don&#8217;t like Facebook: this social aspect is always full of noise.</p>
<p>&#8220;Oh sure,&#8221; the Facebook fanatics will tell you, &#8220;but why don&#8217;t you just hide or block the noisy people/apps?&#8221;</p>
<p>Well if I do that, I&#8217;d block 95% of my friends list. It&#8217;s so much easier to just not visit Facebook.</p>
<h3>Social circles overlap</h3>
<p>I can&#8217;t seem to find a link to a similar article I saw a while back so I&#8217;ll just say it with my own words.</p>
<p>In high school, I had 3 social circles. In college, everyone went to La Salle so I made 4 new social circles. After college, I got another social circle. After I got fired, I made two new social circles.</p>
<p>Long story short, I can post something totally appropriate for one of those many circles while totally offending another. </p>
<p>It&#8217;s like attending a really big birthday party with people shouting things for all to hear. Again, too much noise.</p>
<p>It&#8217;s also the reason why I&#8217;m only using Twitter nowadays: my current Following list only consists of a single social circle.</p>
<h3>I am not dependent on social interaction</h3>
<p>It&#8217;s not obvious, but I rarely use my cellphone. I can go on weeks or even months without texting someone. I started wearing a watch when I realized it would be a hassle for me to dig for my phone in my pocket just to get the time.</p>
<p>It&#8217;s the same thing with Facebook. A lot of people are dependent on Facebook the same way they are dependent to their phones: they need to keep in touch with their friends and family. </p>
<p>And I don&#8217;t.</p>
<p>How I got to this is a long and complicated story, so I&#8217;ll just take a cue from a certain NDS game and just say that I believe that when you become too dependent on social interaction, your world ends with you and your friends. </p>
<p>There are a many great wondrous things in this world, and I choose to see, feel, and experience them rather than waste my time and thoughts to wondering who&#8217;s dating who or what drama this group of people are involved in this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2011/05/22/why-not-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Permanent Damage, a retrospective</title>
		<link>http://blog.bryanbibat.net/2010/11/08/permanent-damage-a-retrospective/</link>
		<comments>http://blog.bryanbibat.net/2010/11/08/permanent-damage-a-retrospective/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 15:31:07 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Between Heaven and Earth]]></category>
		<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[burnout]]></category>
		<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=1107</guid>
		<description><![CDATA[It&#8217;s been over a year and a half since I left my previous full-time job and I still don&#8217;t have a new one. It&#8217;s not that I don&#8217;t have the skills needed to be employed; it&#8217;s actually the opposite: even though I&#8217;m not actively looking for a job, people still come to me asking if [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been over a year and a half since I left my previous full-time job and I still don&#8217;t have a new one. </p>
<p>It&#8217;s not that I don&#8217;t have the skills needed to be employed; it&#8217;s actually the opposite: even though I&#8217;m not actively looking for a job, people still come to me asking if I could work for them. My part time teaching and Rails &#8220;consultancy&#8221; gigs fall under this (i.e. I never &#8220;applied&#8221; for them formally), and I&#8217;m getting emails requesting for interviews from local companies once in a while.</p>
<p>The reason I&#8217;m not taking any full-time job offers is different: </p>
<p>It&#8217;s been over a year and a half since I left my previous full-time job and <em>I still haven&#8217;t fully recovered from burnout</em>. I&#8217;m not confident that I&#8217;d be able to do software development &#8220;grunt-work&#8221; at peak performance for more than a few weeks on end.</p>
<p>After a year&#8217;s hiatus, I guess it&#8217;s safe to say that I&#8217;ve suffered permanent damage from my <a href="http://blog.bryanbibat.net/2009/06/05/burnout/">burnout</a>.</p>
<p>&#8212;</p>
<p>Looking back, the main turning point of my career was on January 2006.</p>
<p><span id="more-1107"></span>I was supposed to be transferred to another project. Having endured a year and a half of working on a really difficult enterprise system that was going nowhere, I knew my best bet was to make my programs relatively bug free. This way, I could be moved to another project (since they don&#8217;t need me around anymore to fix my programs) and get a fresh start. One bad project should be offset by a good project, right?</p>
<p>As you might expect, my plan backfired. Not only was I pulled back from that new project, I was also assigned to maintain the programs of another developer in my module while he gets to be transferred to another project. </p>
<p>Best. Reward. Ever.</p>
<p>While the whole resource allocation FUBAR was eventually fixed (that developer was also pulled back), the whole incident was a turning point: that was the time that I was pushed beyond my limits.</p>
<p>I was never known to be a weak-willed individual. In college, I had the reputation of surviving (and thriving) in the face of adversity. I&#8217;m the guy who graduated with honors without joining a CS-related organization and without having more than 10 friends in the department.</p>
<p>This sense of pride and confidence eventually led to my downfall. I thought this &#8220;over the edge&#8221; thing was just going to be short and that I could just &#8220;hang on&#8221; and &#8220;bite the bullet&#8221; until it passes.</p>
<p>I didn&#8217;t know that I had to &#8220;hang on&#8221; for more than half a year.</p>
<p>&#8212;</p>
<p>In hindsight, after reading management and psychology articles on burnout, I&#8217;d say that the things I did back then to deal with the problem were the best things you could do in that situation.</p>
<p>Too bad they all failed.</p>
<p>Probably the best thing you can do to deal with burnout is to get a &#8220;lifeline&#8221;, a person or a group of people who can support you. By listening to your problems and giving sound advice, they could either prevent you from hitting rock bottom, or help you get back up from burnout.</p>
<p>I tried getting lifelines, but there&#8217;s this sad fact in the way: In my groups of friends, I&#8217;m <em>always</em> a lifeline. I&#8217;m the guy you approach when you&#8217;ve got problems, whether it&#8217;s computer problems, financial problems, or random life problems. Not the other way around.</p>
<p>And this made asking for help really awkward. One notable instance was when I tried approaching a friend that I was sure was good enough to be a lifeline, but then she mistook my &#8220;subtle cries for help&#8221; as &#8220;lame attempts at courting&#8221;. That didn&#8217;t end well.</p>
<p>So with lifelines out of the question, there&#8217;s the cliched advice: &#8220;find a way to release your frustrations&#8221;. </p>
<p>Nope, didn&#8217;t work. The scars on my knuckles prove that venting your anger violently to concrete walls doesn&#8217;t help much when you&#8217;re burned out.</p>
<p>Then there&#8217;s the &#8220;exercise will give your brain happy chemicals to help you get out of depression&#8221;. And so I hit the gym. Sadly, unlike normal people, those &#8220;happy chemicals&#8221; don&#8217;t work on my brain as advertised. But hey, at least I lost 15 pounds in 2006!</p>
<p>So I gambled with stuff that would have solved my burnout but I lost. Was there anything else I could&#8217;ve done at that time?</p>
<p>&#8212;</p>
<p>Well, there is one thing that I didn&#8217;t try back then:</p>
<p><strong>File for resignation that day in January.</strong></p>
<p>Looking back, I would never have considered doing something as drastic as resigning. But also, hindsight tells me that that move actually makes sense: <em>all of the reasons why I hung on were for naught</em>.</p>
<p><em>Pride?</em><br />
The pride you&#8217;ll save is nothing compared to the passion that you&#8217;ll lose.</p>
<p><em>Personal redemption?</em><br />
Thanks to your burnout, you won&#8217;t be able to redeem yourself. You won&#8217;t get that big project that would compensate for your failed first project. You won&#8217;t even get promoted.</p>
<p><em>Chance to save others from the same fate in the future?</em><br />
You won&#8217;t get promoted. Ergo, you won&#8217;t have the opportunity to affect how the management does things.</p>
<p><em>That cute co-worker you&#8217;ve been fond of?</em><br />
She&#8217;ll just shoot you down before you even get serious with her.</p>
<p>I&#8217;m not saying that the second half of my stay in my previous company was entirely useless. Even as a burned out employee, I still learned a fair amount of new skills and knowledge in those two years. Things like full-time teaching and interviewing, Linux administration for project deployment, integrating payment into a system, design patterns and refactoring, and so on.</p>
<p>But thinking about it, I probably would have learned all those skills better had I resigned in Jan 2006, took a 3 month break to recharge, and took a job at another company. The teaching and interviewing practice might come a bit later, but that&#8217;s a small price to pay when you take into account that I&#8217;ve already lost around 2 years of my life to burnout.</p>
<p>&#8212;</p>
<p>To sum things up, burnout is a race against time. Once you start having <a href="http://blog.bryanbibat.net/2009/06/05/burnout/#more-311">the symptoms</a>, you only have a short amount of time to come up with a solution before you get a full blown case. </p>
<p>What you do in that span of time will decide whether you&#8217;d save your career or lose it.</p>
<p>My suggestion? Build strong relationships with lifelines <em>before</em> you set out working yourself to death. You might fall into the same trap as I did and not be able to find suitable lifelines in time. </p>
<p>IMO, getting lifelines from people on your own project is a bad idea. Since you share the same problems, you&#8217;re a lot more likely to drag each others down to depression than to drag each other out of it.</p>
<p>Also, consider resigning if the situation becomes unreasonable. I don&#8217;t usually give this advice as I&#8217;ve seen a lot of friends and colleagues resign prematurely. But given my experience with burnout and depression, I&#8217;d come to realize that resigning <em>too late</em> is even worse than resigning too early.</p>
<p>&#8211;</p>
<p><strong>TL;DR</strong></p>
<p>I don&#8217;t want to work full time for anyone anymore.</p>
<p>After my first job milked me for what I was worth, I:</p>
<ul>
<li>never got promoted</li>
<li>ruined any chances of getting a love life</li>
<li>got fired for insubordination</li>
<li>was eventually forgotten by my friends and forced to make new ones</li>
<li>lost my reason to live</li>
</ul>
<p>If you can read this, it means I still have no <em>raison d&#8217;etre</em>: a robot zombie, highly skilled but dead inside.</p>
<p>Give me a good reason to live and we&#8217;ll talk.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2010/11/08/permanent-damage-a-retrospective/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Keeping your goals to yourself</title>
		<link>http://blog.bryanbibat.net/2010/10/02/keeping-your-goals-to-yourself/</link>
		<comments>http://blog.bryanbibat.net/2010/10/02/keeping-your-goals-to-yourself/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 05:16:29 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Derek Silvers]]></category>
		<category><![CDATA[goals]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=1065</guid>
		<description><![CDATA[It&#8217;s been a very busy week so I wasn&#8217;t able to write a post last Thursday. I&#8217;m still pretty busy with a bunch of stuff so this will just be a quick post. Here&#8217;s a TED talk about what happens when you announce your goals to the world: This has happened way too many times [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a very busy week so I wasn&#8217;t able to write a post last Thursday. I&#8217;m still pretty busy with a bunch of stuff so this will just be a quick post.</p>
<p>Here&#8217;s a TED talk about what happens when you announce your goals to the world:</p>
<p><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always"/><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/DerekSivers_2010G-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/DerekSivers-2010G.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=947&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=derek_sivers_keep_your_goals_to_yourself;year=2010;theme=a_taste_of_tedglobal_2010;theme=how_the_mind_works;theme=unconventional_explanations;theme=the_creative_spark;theme=new_on_ted_com;theme=how_we_learn;event=TEDGlobal+2010;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/DerekSivers_2010G-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/DerekSivers-2010G.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=947&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=derek_sivers_keep_your_goals_to_yourself;year=2010;theme=a_taste_of_tedglobal_2010;theme=how_the_mind_works;theme=unconventional_explanations;theme=the_creative_spark;theme=new_on_ted_com;theme=how_we_learn;event=TEDGlobal+2010;"></embed></object></p>
<p>This has happened way too many times earlier in my life, back when I was still a hyperactive (yet introverted) loudmouth. Fortunately I learned to shut up about my goals about the time I got into college.</p>
<p>One good example: in my past job, there was a gym fad going around a few years back. Those who were actively announcing that they were to lose weight didn&#8217;t follow through with their gym plans, while those who just kept quiet about the whole thing (e.g. me) had the most visible results.</p>
<p>And that&#8217;s why I&#8217;m not talking about the stuff that&#8217;s keeping me busy these days.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2010/10/02/keeping-your-goals-to-yourself/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gmail powered e-mail addresses through Google Apps</title>
		<link>http://blog.bryanbibat.net/2010/07/13/gmail-powered-e-mail-addresses-through-google-apps/</link>
		<comments>http://blog.bryanbibat.net/2010/07/13/gmail-powered-e-mail-addresses-through-google-apps/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 10:12:55 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[consolidate]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.net/?p=996</guid>
		<description><![CDATA[I&#8217;ve finally found some time in my busy schedule to post something about the recent changes in this site. As part of making my &#8220;freelance&#8221; status semi-official, I&#8217;m currently migrating stuff from www.bryanbibat.com to this site, www.bryanbibat.net. You might have noticed that I&#8217;ve already merged my old blogs to this single blog as well as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally found some time in my busy schedule to post something about the recent changes in this site. </p>
<p><img src="http://www.bryanbibat.net/images/business_card.jpg" alt="my business card" class="aligncenter" /></p>
<p>As part of making my &#8220;freelance&#8221; status semi-official, I&#8217;m currently migrating stuff from <a href="http://www.bryanbibat.com">www.bryanbibat.com</a> to this site, <a href="http://www.bryanbibat.net">www.bryanbibat.net</a>. You might have noticed that I&#8217;ve already merged my old blogs to this single blog as well as modified the links in my portfolio pages to point to here.</p>
<p>Another change is the shift from using my Gmail/Yahoo Mail account to bry@bryanbibat.net, and this is what I&#8217;ll be talking about today.</p>
<p><span id="more-996"></span><br />
<h2>Setting up e-mail for your domain</h2>
<p>I originally thought setting up a personal e-mail based on my domains was going to be a hassle until I stumbled upon a comment somewhere (I don&#8217;t know where, probably Lifehacker) where the guy mentions that his e-mail is handled by Google Apps, saving him the trouble of setting up spam filters and the like. </p>
<p>A bit of searching lead me to this page: <a href="http://www.google.com/apps/intl/en/group/index.html">Google Apps Standard Edition.</a> </p>
<p>It&#8217;s actually pretty easy to setup Google Apps for your domain. You&#8217;ll just have to upload an HTML file to your server so that Google can verify if it&#8217;s really yours. </p>
<p>I think the only tricky part is how to setup the MX (Mail Exchanger) record settings in your domain. It&#8217;s still pretty straightforward though. In my case bryanbibat.com is hosted by <a href="http://mswebnetwork.net/">MSWEB</a> and uses cPanel for site admin tasks. To change the MX settings, just go to MX Entry</p>
<p><img src="http://www.bryanbibat.net/images/cpanel_mx.jpg" alt="MX at cPanel" class="aligncenter" /></p>
<p>then modify the settings as instructed by Google.</p>
<p><img src="http://www.bryanbibat.net/images/cpanel_mx_entries.png" alt="MX entries at cPanel" class="aligncenter" /></p>
<p>On the other hand, bryanbibat.net is hosted by <a href="http://www.linode.com/">Linode</a>. The process is pretty much the same, just set the MX Records under DNS Manager page.</p>
<p><img src="http://www.bryanbibat.net/images/linode_mx.png" alt="MX at Linode DNS manager" class="aligncenter" /></p>
<p>After configuring the MX settings, it&#8217;s all a matter of waiting for Google to confirm the MX entries and preparing your inboxes for you.</p>
<h2>Consolidating E-mail</h2>
<p>So now I have two new e-mail addresses, bry@bryanbibat.com and bry@bryanbibat.net. Of course, it can be a pain if I would have to check those two along with my Gmail and Yahoo Mail account. The Yahoo Mail is fine because I have YM! on most of the time, but I have to consolidate the Gmail accounts to make my mail checking easier. </p>
<p>Thankfully, Gmail supports receiving and exposing mail through POP. Under the Accounts settings, you can configure the &#8220;<a href="http://mail.google.com/support/bin/answer.py?hl=en&#038;answer=22370">Send mail as:</a>&#8221; and &#8220;<a href="http://mail.google.com/support/bin/answer.py?hl=en&#038;answer=21288">Get mail from other accounts:</a>&#8221; to consolidate all of your mail to one single Gmail account. </p>
<p>I&#8217;ve designated bry@bryanbibat.net as my main account. Here&#8217;s the current Accounts settings for that account:</p>
<p><img src="http://www.bryanbibat.net/images/gmail_accounts_settings.png" alt="MX at cPanel" class="aligncenter" /></p>
<p>And that&#8217;s it. Hopefully by next post I&#8217;ll be able to post something more &#8220;normal&#8221;, less &#8220;Site News&#8221;-y.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2010/07/13/gmail-powered-e-mail-addresses-through-google-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things To Do This New Year: Productivity</title>
		<link>http://blog.bryanbibat.net/2010/01/01/things-to-do-this-new-year-productivity/</link>
		<comments>http://blog.bryanbibat.net/2010/01/01/things-to-do-this-new-year-productivity/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 09:28:51 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[scheduling]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.com/?p=823</guid>
		<description><![CDATA[To mark the start of the new year, I&#8217;ll be posting simple suggestions to improve your life this year for each of the major categories in this blog. &#8212; Install and set up My Weekly Browsing Schedule on Firefox. (This, of course, assumes that your main browser is Firefox.) My Weekly Browsing Schedule is a [...]]]></description>
			<content:encoded><![CDATA[<p>To mark the start of the new year, I&#8217;ll be posting simple suggestions to improve your life this year for each of the major categories in this blog.</p>
<p>&#8212;</p>
<h3>Install and set up <a href="https://addons.mozilla.org/en-US/firefox/addon/14199">My Weekly Browsing Schedule</a> on Firefox.</h3>
<p><img src="http://www.bryanbibat.com/images/mwbs.png" alt="My Weekly Browsing Schedule" class="aligncenter" /></p>
<p>(This, of course, assumes that your main browser is Firefox.)</p>
<p><em>My Weekly Browsing Schedule</em> is a Firefox extension that automatically opens websites according to the schedule you provide it. Setting this up on your browser can boost your productivity in two ways:</p>
<p><strong>1. It saves you the burden of manually going through your bookmarks.</strong></p>
<p>People normally use bookmarks to open regularly visited websites at certain times in a day. They open mail, news, and social networking sites at the start of the day and at regular intervals throughout the day. Some sites like webcomics and stock market news only need to be visited once a day. Other sites require less visiting frequency, maybe just once or twice a week.</p>
<p>The problem with the bookmark approach is that your browsing efficiency is dependent on whether you&#8217;re disciplined enough to develop a good browsing habit e.g. you don&#8217;t visit certain sites too often (see the next reason below) and you don&#8217;t forget to go to the rarely visited sites.</p>
<p><em>My Weekly Browsing Schedule</em> can help resolve that problem. You can define which sites open at startup. You can define which sites open at certain hours and the days of the week. You can even tell the extension to catch up with certain sites in case the browser wasn&#8217;t open when they were scheduled.</p>
<p><strong>2. It helps cut down on distractions.</strong></p>
<p>When you&#8217;re working and have internet access, it can be tempting to check your mail, your social networking sites, and news sites once in a while to keep up with things.</p>
<p>Studies show that this habit can kill your productivity. Don&#8217;t believe them? Install <a href="http://blog.bryanbibat.com/2009/05/18/track-pc-usage-with-manictime/">ManicTime</a> and see for yourself how many hours a day you waste on those sites.</p>
<p>The most common suggestion to deal with this problem is to learn to &#8220;batch&#8221; these sites at certain times (I personally use 4 hour intervals). Now while I&#8217;ve written <a href="http://blog.bryanbibat.com/2009/09/06/lean/">against batching</a> previously, the scenario is different in this case because of the conversational nature of e-mail and social networking sites. The more you visit and participate in these sites, the more you&#8217;re compelled to post new stuff and initiate conversations.</p>
<p>When you limit yourself to certain times during the day, you get more work done while still keeping up with the updates in your social network (preventing you from becoming a soulless zombie/corporate slave). The extension can help you with this, though you&#8217;ll still have to learn to close the sites when you&#8217;re done to keep yourself from refreshing/checking on them.</p>
<p>&#8211;</p>
<p>The downside to this extension is that the UI is clunky at the moment. Setting up a schedule will eat up a bit of your time, especially if you visit a lot of sites regularly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2010/01/01/things-to-do-this-new-year-productivity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Strengths (according to StrengthsFinder)</title>
		<link>http://blog.bryanbibat.net/2009/10/29/my-strengths-according-to-strengthsfinder/</link>
		<comments>http://blog.bryanbibat.net/2009/10/29/my-strengths-according-to-strengthsfinder/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 15:10:43 +0000</pubDate>
		<dc:creator>Bry</dc:creator>
				<category><![CDATA[Brain Dumps]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[First Break All the Rules]]></category>
		<category><![CDATA[StrengthsFinder 2.0]]></category>
		<category><![CDATA[talents]]></category>

		<guid isPermaLink="false">http://blog.bryanbibat.com/?p=758</guid>
		<description><![CDATA[Finally decided to take the StrengthsFinder quiz after months of buying the book. My top 5 strengths according to the site below the cut: Learner People who are especially talented in the Learner theme have a great desire to learn and want to continuously improve. In particular, the process of learning, rather than the outcome, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bryanbibat.com/images/strengths_finder2.jpg" alt="StrengthsFinder 2.0" class="aligncenter" /></p>
<p>Finally decided to take the <a href="http://strengthsfinder.com/113647/Homepage.aspx">StrengthsFinder</a> quiz after months of buying the book. My top 5 strengths according to the site below the cut:</p>
<p><span id="more-758"></span><br />
<h3>Learner</h3>
<blockquote style="margin-top:10px;"><p>People who are especially talented in the Learner theme have a great desire to learn and want to continuously improve. In particular, the process of learning, rather than the outcome, excites them.</p></blockquote>
<p>The top strength didn&#8217;t come as a surprise to me; I&#8217;ve already known since college that given the proper environment (Don Bosco vs UP Diliman) I absorb knowledge a lot faster than most people.</p>
<p>According to the Marcus Buckingham books on <a href="http://blog.bryanbibat.com/2009/07/14/talents/">talent</a>, the key to success is to focus on one&#8217;s strengths and no on one&#8217;s weakness. I think I did a good job focusing this talent in the past half decade: the main reason I took the job offer from my previous company was for the training, not the money. Even after I left, I still focus on this talent by continuously learning new stuff.</p>
<h3>Command</h3>
<blockquote style="margin-top:10px;"><p>People who are especially talented in the Command theme have presence. They can take control of a situation and make decisions.</p></blockquote>
<p>This one was surprising because I don&#8217;t really consider myself as a leader.</p>
<p>However, it does make sense when I think about it. When everybody is hesitating, I&#8217;m usually the one who steps up and takes command of the situation. I also have this intimidating aura around me that makes people become wary about my presence.</p>
<p>Another thing about Command is that people who have it aren&#8217;t afraid to disagree with other people or to get into conflicts when something is on the line.</p>
<p>Yeah, I guess I&#8217;m that kind of person.</p>
<h3>Futuristic</h3>
<blockquote style="margin-top:10px;"><p>People who are especially talented in the Futuristic theme are inspired by the future and what could be. They inspire others with their visions of the future.</p></blockquote>
<p>Yet another surprising revelation.</p>
<p>Like Command, I don&#8217;t really think of myself as a guy who focuses on the future. And like Command, this strength makes sense when I think about it.</p>
<p>The key here is that I don&#8217;t dwell in the past nor do I worry about the present. I live my life without regrets, instead I just use past mistakes as a way to guide me to the future. I am also content about the present, constantly making sure that regardless of how many risks I take in life, <a href="http://blog.bryanbibat.com/2009/04/13/first-post/">I know that I won&#8217;t lose</a>.</p>
<p>Without those two, I only have the future to focus on.</p>
<h3>Individualization</h3>
<blockquote style="margin-top:10px;"><p>People who are especially talented in the Individualization theme are intrigued with the unique qualities of each person. They have a gift for figuring out how people who are different can work together productively.</p></blockquote>
<p>This is a relatively new talent, influenced by <a href="http://blog.bryanbibat.com/tag/first-break-all-the-rules/"><em>first, break all the rules</em></a> and the <a href="http://blog.bryanbibat.com/2009/05/16/dreyfus-model-of-skill-acquisition/">Dreyfus Model of </a>Skill Acquisition. The idea behind this strength is the belief that every situation and every person should be dealt with according to the context of the situation.</p>
<p>Thinking about it more, I already had a bit of this talent for a long time. I&#8217;m picky about friends because I know that I eventually have to treat each one of them differently unlike other people who are fine about treating &#8220;friends&#8221; equally.</p>
<p>The dead giveaway is my habit of gift-giving: I never give non-personalized gifts.</p>
<h3>Achiever</h3>
<blockquote style="margin-top:10px;"><p>People who are especially talented in the Achiever theme have a great deal of stamina and work hard. They take great satisfaction from being busy and productive.</p></blockquote>
<p>This isn&#8217;t a surprise especially to the people who have worked with me in the past. I probably wouldn&#8217;t have survived in a company who considers 50-60 hours of work a week as normal for over four years without this talent.</p>
<p>However, it&#8217;s surprising that this strength isn&#8217;t higher on the list. It may be a hint that the goal (Futuristic) and the process (Command) is more important to me than the achievement itself.</p>
<p>&#8212;</p>
<p>Overall, the assessment was slightly unpredictable. I was expecting to have strengths like Competition and Developer (a guy who wants to make others succeed), and I was expecting Achiever to be higher on the list.</p>
<p>The assessment also hints that I am not suited for rank-and-file corporate developer work because of Command (and to a lesser extent, Learner). Good thing I&#8217;m done with that phase in my life. <img src='http://blog.bryanbibat.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bryanbibat.net/2009/10/29/my-strengths-according-to-strengthsfinder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

