<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Julius F</title>
  <id>http://127.0.0.1</id>
  <updated>2010-02-12T00:00:00Z</updated>
  <author>
    <name>Julius F</name>
  </author>
  <entry>
    <title>Time Tracking with TOGGL and git-commit-hooks</title>
    <link href="http://127.0.0.1/2013/01/13/time-tracking-with-toggl-and-git-commit-hooks/" rel="alternate"/>
    <id>http://127.0.0.1/2013/01/13/time-tracking-with-toggl-and-git-commit-hooks/</id>
    <published>2013-01-13T00:00:00Z</published>
    <updated>2013-01-13T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;I&amp;rsquo;m pretty sure you&amp;rsquo;ve heard about &lt;a href="http://www.toggl.com"&gt;Toggl&lt;/a&gt; a very
awesome tool that let&amp;rsquo;s you track time spent to whatever your doing.
You&amp;rsquo;ll have to install the desktop client to do this. As developers one&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;I&amp;rsquo;m pretty sure you&amp;rsquo;ve heard about &lt;a href="http://www.toggl.com"&gt;Toggl&lt;/a&gt; a very
awesome tool that let&amp;rsquo;s you track time spent to whatever your doing.
You&amp;rsquo;ll have to install the desktop client to do this. As developers one
thing we really want to have is to track our progress and the amount of
time we spent in projects, thus helping us create development invoices
down the road.&lt;/p&gt;

&lt;p&gt;And from time to time, most progress on the project is tracked by your
commit messages on the project, that is unless your not using GIT. Enter
git commit-hooks.&lt;/p&gt;

&lt;p&gt;Here&amp;rsquo;s how I track my time for every project that I&amp;rsquo;m working on. I&amp;rsquo;ve
created a &lt;code&gt;post-commit&lt;/code&gt; hook that I import to all the projects I want to
track time with Toggl. To setup follow the instructions below:&lt;/p&gt;

&lt;p&gt;Open up the terminal:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ mkdir -p ~/.git_template/hooks
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Add a new file in named &lt;code&gt;post-commit&lt;/code&gt; and copy the contents below&lt;/p&gt;

&lt;script src="https://gist.github.com/adc13ec44346a28119eb.js"&gt;&lt;/script&gt;


&lt;p&gt;Also you&amp;rsquo;ll need to get an API_TOKEN from &lt;a href="https://www.toggl.com/user/edit"&gt;Toggl&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Once you have this, you&amp;rsquo;ll have to add a new file &lt;code&gt;~/.toggl&lt;/code&gt; and add the
token there.&lt;/p&gt;

&lt;p&gt;By default it will use the project&amp;rsquo;s folder as TAG, which makes it
easier to generate reports with later on. TAGS can be used as filter in
your Toggl report. Another thing you can modify is the default hours
spent, which right now is set to &lt;code&gt;3600&lt;/code&gt; or &lt;code&gt;1&lt;/code&gt; hour. Modify it as you
wish.&lt;/p&gt;

&lt;p&gt;The TASK_DATE is related to the date you&amp;rsquo;ve posted the commit in the
repository.&lt;/p&gt;

&lt;p&gt;The TASK_NAME is the extracted git commit message you just added.&lt;/p&gt;

&lt;p&gt;The TASK_DATA is the JSON data that will be passed into the curl request
to the API endpoint of Toggl.&lt;/p&gt;

&lt;p&gt;If you have these files setup, time to add them into your repositories.
First thing you want to do is to setup your global git config to read
the &lt;code&gt;~/.git_template&lt;/code&gt; folder and import that to your repository. If you
have this setup and you run &lt;code&gt;git clone&lt;/code&gt; it will automatically be
imported. Thus creating new repositories in your local machine as well.&lt;/p&gt;

&lt;p&gt;To set global git config:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ git config --global init.templatedir '~/.git_template'
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If you have an existing repository and you want to import this
&lt;code&gt;post-commit&lt;/code&gt; hook:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ git init
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Don&amp;rsquo;t worry, this is not destructive, it will only copy the files under
&lt;code&gt;~/.git_template&lt;/code&gt; into the &lt;code&gt;.git&lt;/code&gt; folder of your project. You can add
more hooks if you want, but for now I&amp;rsquo;m more into the &lt;code&gt;post-commit&lt;/code&gt;
hook.&lt;/p&gt;

&lt;p&gt;Right now the state of the script is pretty basic, it will output the
JSON response from the curl command to Toggl API. But add more options
to the curl command and you should be good.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Still Learning</title>
    <link href="http://127.0.0.1/2012/11/23/still-learning/" rel="alternate"/>
    <id>http://127.0.0.1/2012/11/23/still-learning/</id>
    <published>2012-11-23T00:00:00Z</published>
    <updated>2012-11-23T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;blockquote&gt;&lt;p&gt;&amp;ldquo;Intellectual growth should commence at birth and cease only at death.&amp;rdquo; &amp;ndash;
Albert Einstein&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;When we were born we started to learn new things, we never stop. In fact&lt;/p&gt;
</summary>
    <content type="html">&lt;blockquote&gt;&lt;p&gt;&amp;ldquo;Intellectual growth should commence at birth and cease only at death.&amp;rdquo; &amp;ndash;
Albert Einstein&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;When we were born we started to learn new things, we never stop. In fact
we&amp;rsquo;re learning even if we don&amp;rsquo;t think we are getting something it.&lt;/p&gt;

&lt;p&gt;In the technical world, things are moving fast. Almost everyday there
are new technologies, new products and new concept comming out. For a
developer like me, new things are built every single day, if you stick
to your domain, that doesn&amp;rsquo;t mean it&amp;rsquo;ll not change, it is also changing.
The only difference is that you are confined with the sandbox that your
playing with.&lt;/p&gt;

&lt;p&gt;Exploring new things is always part of my day-to-day life. Keeping up
with these changes sounds like I&amp;rsquo;ve been spending my day in front of my
computer and just say goodbye to social life. Not sure about others, but
that&amp;rsquo;s not me. I spend an hour max to get into something new, if it&amp;rsquo;s
really interesting, I make it a point I add it to my calendar or even my
to-do list. That way I can still do the important things that I have to
do, like being a husband and working on a real job.&lt;/p&gt;

&lt;p&gt;The beauty of being a developer compared to other vocation, we never
stop solving problems. By doing so, we learn a lot from it. I find it
really interesting to solve application related problems, not only to
comply about requirements but also to add level to your skills. It is
very fundamental to understand that there are multiple ways of solving a
problem, some may come easy but some may cause you to pull your hair
out. Good for me I&amp;rsquo;m bald, so that&amp;rsquo;s out of the equation.&lt;/p&gt;

&lt;p&gt;For me solving problems is all about knowing it before working on a
solution. Making sure that I get all the points needed, or let&amp;rsquo;s just
say the acceptance parameters before moving on. Diving into a problem
and giving a quick-out-of-the-blue solution is really a bad thing, may
come to you that fast but later on will bite you hard. So you really
need to think about before giving a solution.&lt;/p&gt;

&lt;p&gt;In the world of programming, or in my world of programming. I find
myself going back to basic every now and then. Why? Sometimes the
hardest problem can be solved by just the fundamentals of the language,
no magic needed from those fancy gems/plugins. If you find yourself
mastering or just getting used to frameworks, and completely forgetting
about the fundamentals of the language, you will find yourself asking
for more later. But if you know the basic and you know how to formulate
a solution by just that, you&amp;rsquo;ll go to a different route and start
building your own thing(gem). But try not to re-invent the wheel, if you
think you have a better solution, fork-code-pull-profit (contribute).&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>The Next Chapter</title>
    <link href="http://127.0.0.1/2012/11/21/the-next-chapter/" rel="alternate"/>
    <id>http://127.0.0.1/2012/11/21/the-next-chapter/</id>
    <published>2012-11-21T00:00:00Z</published>
    <updated>2012-11-21T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;It&amp;rsquo;s been months since I last posted something here, figure I drop by
and add some new things, again trying to make sure I post something
every once in a while. Most of the #geeks I know blog-a-log, I think&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;It&amp;rsquo;s been months since I last posted something here, figure I drop by
and add some new things, again trying to make sure I post something
every once in a while. Most of the #geeks I know blog-a-log, I think
it&amp;rsquo;s better to have just some small updates every now and then. That&amp;rsquo;s
the purpose of &lt;a href="http://twitter.com/baldrailers"&gt;Twitter&lt;/a&gt;, good thing
there&amp;rsquo;s a &lt;a href="http://iam.baldrailers.com/tweets"&gt;widget&lt;/a&gt; that can easily be
customized and you just slap it in to any html site.&lt;/p&gt;

&lt;p&gt;For the past 9 months things are going OK, not saying they aren&amp;rsquo;t now,
but things are really shaping up. A lot of things going on and those
things I completely forget to write about. It&amp;rsquo;s a growing pain, being
busy with Consulting and Development work makes it hard to chime in with
this blog every so often. So what happened to me during this past few
months.&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ve been part of a very cool project called
&lt;a href="http://www.purecharity.com"&gt;PureCharity&lt;/a&gt;, I played the role of a
backend developer dealing with data aggregations from various Affiliate
networks. During that time I was able to work on some cool developers
and some cool &lt;a href="http://rubygems.org/gems/sqoot"&gt;gems&lt;/a&gt;. It&amp;rsquo;s a very good
training ground for me, not only in my coding skills but also on how to
work effectively with a remote team. Since my timezone is at GMT+8,
technically I am working during the night, which is great.&lt;/p&gt;

&lt;p&gt;I started going back to Voice Application Development, that means Rails
and &lt;a href="http://adhearsion.com"&gt;Adhearsion&lt;/a&gt; revisit. The last time I&amp;rsquo;ve
worked with VoIP application was way back my startup days when I worked
on a Call Center Solution platform. Back then it was only v1, now it&amp;rsquo;s
rocking out at v2.x.x. Funny because that&amp;rsquo;s not really the first
technology of choice, the first implementation of the project was
running under &lt;a href="http://www.tropo.com"&gt;Tropo&lt;/a&gt;, as all projects the first
phase is always working but there&amp;rsquo;s always a time where you expand and
the platform is very limited with the project requirements. That&amp;rsquo;s when
I decided to move back to Adhearsion. The move is painful, yet
rewarding. Now I have full control of the platform/backend and I can say
that it is more stable compared to the first implementation.&lt;/p&gt;

&lt;p&gt;During my days of VoIP and PureCharity work, I spent some of my free
time doing some mentorship for a startup company in Dallas, TX. Which
ended up into a Chief Techie role. It was fun, I got the chance to bring
my old team with me and be awesome again. Every startup has its ups and
downs, that&amp;rsquo;s the beauty about it.&lt;/p&gt;

&lt;p&gt;Another big thing that happened to me was buying our own house. My
&lt;a href="http://twitter.com/yanibaldrailers"&gt;wife&lt;/a&gt; and I finally decided to buy
our own house, we moved there last October. We are very happy and so
excited about it.&lt;/p&gt;

&lt;p&gt;Things happen for a reason, it takes a positive outlook in life to make
all possible.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Installing Asterisk 10.5.0 in OSX Lion 10.7.4</title>
    <link href="http://127.0.0.1/2012/06/05/installing-asterisk-1050-in-osx-lion-1074/" rel="alternate"/>
    <id>http://127.0.0.1/2012/06/05/installing-asterisk-1050-in-osx-lion-1074/</id>
    <published>2012-06-05T00:00:00Z</published>
    <updated>2012-06-05T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;This is a quick quide for install &lt;a href="http://www.asterisk.org/downloads"&gt;Asteirsk
10.5.0&lt;/a&gt; in OSX Lion 10.7.4. Let&amp;rsquo;s get
started&lt;/p&gt;

&lt;iframe border='0' height='684' id='shelr_record_4fcd81749660800dda000044' scrolling='no' src='http://shelr.tv/records/4fcd81749660800dda000044/embed'style='border: 0' width='934'&gt;&lt;/iframe&gt;

</summary>
    <content type="html">&lt;p&gt;This is a quick quide for install &lt;a href="http://www.asterisk.org/downloads"&gt;Asteirsk
10.5.0&lt;/a&gt; in OSX Lion 10.7.4. Let&amp;rsquo;s get
started&lt;/p&gt;

&lt;iframe border='0' height='684' id='shelr_record_4fcd81749660800dda000044' scrolling='no' src='http://shelr.tv/records/4fcd81749660800dda000044/embed'style='border: 0' width='934'&gt;&lt;/iframe&gt;


&lt;p&gt;Since Asterisk is not part of
&lt;a href="http://mxcl.github.com/homebrew/"&gt;homebrew&lt;/a&gt; anymore, the best way to
install Asterisk is compiling it from source. Which presents another
issue specially if your running XCode 4.2+ because gcc-4.2 was removed
from it&amp;rsquo;s toolchains.&lt;/p&gt;

&lt;p&gt;I strongly suggest you download and install
&lt;a href="https://github.com/kennethreitz/osx-gcc-installer"&gt;osx-gcc-installer&lt;/a&gt;
and Apple&amp;rsquo;s Command Line Tools to be able to run this source compiles
properly. After installing those requirements, your &lt;a href="https://gist.github.com/34c95ac5f937b8baa944"&gt;brew
&amp;mdash;config&lt;/a&gt; should look at
least like this, which indicates that you have GCC-4.2 installed.&lt;/p&gt;

&lt;p&gt;Download the latest stable release from Asterisk, which is 10.5.0&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;wget -N -c http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-10.5.0.tar.gz
tar -zxvf asterisk-10.5.0.tar.gz
cd asterisk-10.5.0
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Here&amp;rsquo;s where the magic begins:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;CC=/usr/bin/gcc-4.2 ./configure --host=x86_64-darwin
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You need to pass your compiler which is &lt;strong&gt;gcc-4.2&lt;/strong&gt; in the configure
command so that the generated &lt;em&gt;Makefile&lt;/em&gt; will use it.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;make menuselect
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Remove &lt;strong&gt;res_snmp&lt;/strong&gt; under &lt;em&gt;Resource Modules&lt;/em&gt;. Hit &lt;strong&gt;Q&lt;/strong&gt; then &lt;strong&gt;S&lt;/strong&gt; to
save the settings. Then run:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sudo make
sudo make install
sudo make samples
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Here&amp;rsquo;s a quick screencast for the whole installation process:
&lt;a href="http://shelr.tv/records/4fcd81749660800dda000044"&gt;Here&lt;/a&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Information Diet</title>
    <link href="http://127.0.0.1/2012/01/07/information-diet/" rel="alternate"/>
    <id>http://127.0.0.1/2012/01/07/information-diet/</id>
    <published>2012-01-07T00:00:00Z</published>
    <updated>2012-01-07T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;I just acquired a new BlackBerry Curve 9360, a cheap yet powerful
smartphone that I think I&amp;rsquo;ll stick with for a long time. It&amp;rsquo;s like love
at first sight. It has the basic features I&amp;rsquo;m looking for on a&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;I just acquired a new BlackBerry Curve 9360, a cheap yet powerful
smartphone that I think I&amp;rsquo;ll stick with for a long time. It&amp;rsquo;s like love
at first sight. It has the basic features I&amp;rsquo;m looking for on a
communication device.&lt;/p&gt;

&lt;p&gt;With the BlackBerry Curve 9360, I can stay connected everywhere I go,
I was amazed about the speed of the device and how it manage to utilize
my data connection, even at GPRS I can post a tweet, do my email,
checkin with foursquare. With a very good built-in camera, I can snap a
pic and upload it directly to my social feed.&lt;/p&gt;

&lt;p&gt;Yes, I&amp;rsquo;m moving all my social apps to this small beast. Need less to
say, It&amp;rsquo;s the best information diet I&amp;rsquo;ll have. With the Curve always
connected, I can shutdown my mail client, twitter, facebook access and
just wait for the Curve to notify me when there&amp;rsquo;s something important.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>2012 All Out</title>
    <link href="http://127.0.0.1/2012/01/01/2012-all-out/" rel="alternate"/>
    <id>http://127.0.0.1/2012/01/01/2012-all-out/</id>
    <published>2012-01-01T00:00:00Z</published>
    <updated>2012-01-01T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;It&amp;rsquo;s the first day of the year(2012) figure I whip something out, an
blog. Would be great to code or bootstrap something but that&amp;rsquo;ll take a
lot of time&amp;hellip;&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;It&amp;rsquo;s the first day of the year(2012) figure I whip something out, an
blog. Would be great to code or bootstrap something but that&amp;rsquo;ll take a
lot of time.&lt;/p&gt;

&lt;p&gt;Looking back 2011, it was one of those years I&amp;rsquo;ll remember. First year
to live as a married man with my very loving wife, trust me it never
stops there. First actual year of consulting independently, comming from
2010&amp;rsquo;s startup fiasco. All is well.&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ve had a full blast last year, given a chance to work with awesome
people and companies, like CodeWranglers, Shwinkers, MojoLingo. I&amp;rsquo;ve
learned a lot, not only in the technical side but most of all about life
and the reality of it.&lt;/p&gt;

&lt;p&gt;Projects and clients come and go, but the bond and friendship you get
take along with you lives forever. I can really say that my personal
network expanded vastly last year. And I&amp;rsquo;m looking forward into getting
more people in my personal network.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Blog Again</title>
    <link href="http://127.0.0.1/2011/12/27/blog-again/" rel="alternate"/>
    <id>http://127.0.0.1/2011/12/27/blog-again/</id>
    <published>2011-12-27T00:00:00Z</published>
    <updated>2011-12-27T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;It&amp;rsquo;s been a long time since I&amp;rsquo;ve written or shared anything meaningful
in this site. I figure I&amp;rsquo;d revisit it and make sure I update it once in
a while&amp;hellip;&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;It&amp;rsquo;s been a long time since I&amp;rsquo;ve written or shared anything meaningful
in this site. I figure I&amp;rsquo;d revisit it and make sure I update it once in
a while.&lt;/p&gt;

&lt;p&gt;Everything seems to move to fast, and the next thing you know it&amp;rsquo;s
already 2012. Looking back this 2011, I&amp;rsquo;ve been all over the place. As
always it&amp;rsquo;s not so bad.&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ve focused mainly on mobile development with
&lt;a href="http://www.appcelerator.com"&gt;Titanium&lt;/a&gt; even contributing with a very
cool tool-chain &lt;a href="https://github.com/revans/Ti"&gt;&lt;code&gt;ti&lt;/code&gt;&lt;/a&gt;. All is well, got
two production projects under my belt and some opensource projects to
showcase this.&lt;/p&gt;

&lt;p&gt;Still feeling good but not yet enough. I still feel like there&amp;rsquo;s a lot
to do and a lot to explore. Learned a lot of things this year, not only
on the geekside but most of all about life.&lt;/p&gt;

&lt;p&gt;One of my New Years resolution is to get back to contributing to
opensource and writing awesome codes/apps.&lt;/p&gt;

&lt;p&gt;Till then.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>GeekTool Revisit</title>
    <link href="http://127.0.0.1/2011/04/21/geektool-revisit/" rel="alternate"/>
    <id>http://127.0.0.1/2011/04/21/geektool-revisit/</id>
    <published>2011-04-21T00:00:00Z</published>
    <updated>2011-04-21T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;I&amp;rsquo;ve recently upgraded my 13" MacBookPro with 8GB of RAM. Being a
minimalist, I&amp;rsquo;ve revisited
&lt;a href="http://geektool3.tynsoe.org/projects/show/geektool3"&gt;GeekTool&lt;/a&gt;. I&amp;rsquo;ve&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;I&amp;rsquo;ve recently upgraded my 13" MacBookPro with 8GB of RAM. Being a
minimalist, I&amp;rsquo;ve revisited
&lt;a href="http://geektool3.tynsoe.org/projects/show/geektool3"&gt;GeekTool&lt;/a&gt;. I&amp;rsquo;ve
been using this long time ago and decided to disable it since I&amp;rsquo;m very
conservative with resources, now that I have a highway to play around
with, I went back.&lt;/p&gt;

&lt;p&gt;Here&amp;rsquo;s a snapshot of my current setup:
&lt;img src="http://farm6.static.flickr.com/5148/5639814289_d28472e004_z.jpg" alt="GeekTool" /&gt;&lt;/p&gt;

&lt;p&gt;Still minimal. Got the wallpaper from
&lt;a href="http://simpledesktops.com/"&gt;SimpleDesktops&lt;/a&gt; and some
&lt;a href="http://www.macosxtips.co.uk/geeklets/"&gt;GeekLets&lt;/a&gt;. Here&amp;rsquo;s the rundown
from top to buttom.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Calendar&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;cal | sed -E '1,$'"s/ ($(date +%e))( |$)/ $(echo '\033[1;31m')\1$(echo'\033[0m')\2/"
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;em&gt;Top 13 Processes(HOGS)&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;ps -amcwwwxo "command %mem %cpu" | grep -v grep | head -13
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;em&gt;Day of the Week&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;date +"%A"
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;em&gt;RAM USAGE&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;top -l 1 | awk '/PhysMem/ {print "" $8 " "}' ;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;em&gt;System Load&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sysctl vm.loadavg | sed s/'^vm.loadavg: '//
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;em&gt;CPU Usage(I have 2 cores)&lt;/em&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;top -l 2 | awk '/CPU usage/'
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You can also check my &lt;a href="http://www.macosxtips.co.uk/geeklets/productivity/pivotal-tracker--1/"&gt;Pivotal
GeekLet&lt;/a&gt;
so that you can add your &lt;a href="http://www.pivotaltracker.com"&gt;Pivotal
Tracker&lt;/a&gt; Stories into your desktop using
GeekTool.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Giving iTerm2 another shot</title>
    <link href="http://127.0.0.1/2011/03/31/giving-iterm2-another-shot/" rel="alternate"/>
    <id>http://127.0.0.1/2011/03/31/giving-iterm2-another-shot/</id>
    <published>2011-03-31T00:00:00Z</published>
    <updated>2011-03-31T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;Now here&amp;rsquo;s my current setup:
&lt;img src="http://farm6.static.flickr.com/5060/5576406906_dd661d3e7b_z.jpg" alt="photo by
baldrailers" /&gt;&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ve been playing around with &lt;a href="http://www.iterm2.com/"&gt;iTerm2&lt;/a&gt;. During&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;Now here&amp;rsquo;s my current setup:
&lt;img src="http://farm6.static.flickr.com/5060/5576406906_dd661d3e7b_z.jpg" alt="photo by
baldrailers" /&gt;&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ve been playing around with &lt;a href="http://www.iterm2.com/"&gt;iTerm2&lt;/a&gt;. During
the first few days, it&amp;rsquo;s quite a resource hog, and one thing I don&amp;rsquo;t
like is the &amp;ldquo;lag&amp;rdquo; on using scrollbacks. Good thing I&amp;rsquo;ve checked the
&lt;a href="http://www.iterm2.com/#/section/faq"&gt;FAQ&lt;/a&gt; portion. It&amp;rsquo;s really helpful
and resolves a lot of issues specially the scrollback &amp;ldquo;LAG&amp;rdquo;.&lt;/p&gt;

&lt;p&gt;Here are the tweaks I&amp;rsquo;ve added:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.iterm2.com/"&gt;iTerm2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/robbyrussell/oh-my-zsh"&gt;oh-my-zsh&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;oh-my-zsh theme &lt;a href="http://i.imgur.com/GZqXu.png"&gt;bira&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/carlhuda/janus"&gt;janus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;iTerm2 &lt;a href="https://github.com/baskerville/iTerm-2-Color-Themes"&gt;color
pack&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;iTerm2 is a very feature rich application, with the following
&lt;a href="http://www.iterm2.com/#/section/features"&gt;highlights&lt;/a&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Split Panes &lt;em&gt;both vertical and horizontal&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Full xterm-256color support&lt;/li&gt;
&lt;li&gt;Global HotKey just like Visor&lt;/li&gt;
&lt;li&gt;Save your Window Arrangement&lt;/li&gt;
&lt;/ul&gt;

</content>
  </entry>
  <entry>
    <title>Stand Up and Code </title>
    <link href="http://127.0.0.1/2011/03/06/stand-up-and-code/" rel="alternate"/>
    <id>http://127.0.0.1/2011/03/06/stand-up-and-code/</id>
    <published>2011-03-06T00:00:00Z</published>
    <updated>2011-03-06T00:00:00Z</updated>
    <author>
      <name>Julius F</name>
    </author>
    <summary type="html">&lt;p&gt;I started to venture with &lt;a href="http://en.wikipedia.org/wiki/Standing_desk"&gt;StandUp Desk&lt;/a&gt;, right now it&amp;rsquo;s all just DIY, things
I can find in my house like shoeboxes and old table accessories. I&amp;rsquo;ve been&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;I started to venture with &lt;a href="http://en.wikipedia.org/wiki/Standing_desk"&gt;StandUp Desk&lt;/a&gt;, right now it&amp;rsquo;s all just DIY, things
I can find in my house like shoeboxes and old table accessories. I&amp;rsquo;ve been
on a &amp;ldquo;StandUp Desk&amp;rdquo; for more than 2 weeks now. During the first week, it&amp;rsquo;s
very hard to endure the pain in my feet, part of it not being as healthy and
not being fit. After the first 3 days, I managed to get use to it.&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ve noticed a major change specially in my concentration, I am more focus and
can think clear about things, which is very good. At the end of the first week
I&amp;rsquo;ve read about the &lt;a href="http://en.wikipedia.org/wiki/Pomodoro_Technique"&gt;Pomodoro Technique&lt;/a&gt;, very intersting article and very effictive I must say.
Since I&amp;rsquo;m using Mac, I downloaded the free &lt;a href="http://pomodoro.ugolandini.com/"&gt;Pomodoro Timer&lt;/a&gt;. I set my pomodoros to 30 minute(s). I take 5 minutes break every now and then, during those breaks,
I just sit down, make some phone calls and contemplate.&lt;/p&gt;

&lt;p&gt;I can say that I&amp;rsquo;m making progress, very lean progress when it comes to my day-to-day
work, I forgot to mention, I&amp;rsquo;m working fulltime at home.&lt;/p&gt;

&lt;p&gt;I will post the setup I have for the &amp;ldquo;StandUp Desk&amp;rdquo; later.&lt;/p&gt;
</content>
  </entry>
</feed>
