<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>Life, the Universe, and Everything</title>
	<link>http://blog.codesignstudios.com</link>
	<description>A day in the life of an audio visual junkie</description>
	<pubDate>Fri, 19 Jun 2009 08:04:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language></language>
			<item>
		<title>Google AdWords keeps declining my Unionbank E-On VISA card :( What&#8217;s wrong?</title>
		<link>http://blog.codesignstudios.com/google-adwords-keeps-declining-my-unionbank-e-on-visa-card-whats-wrong/</link>
		<comments>http://blog.codesignstudios.com/google-adwords-keeps-declining-my-unionbank-e-on-visa-card-whats-wrong/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 08:04:46 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/google-adwords-keeps-declining-my-unionbank-e-on-visa-card-whats-wrong/</guid>
		<description><![CDATA[Quite frustrated today.
Tried to use my UnionBank E-On VISA Debit Card with Google AdWords and it kept getting declined.

I am 100% sure my information is correct.
Tried at least 50 times.
Tried using different information in case I wrote something wrong.
I wish the error message was more specific rather so I would know what&#8217;s wrong, rather than [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p>Quite frustrated today.</p>
<p>Tried to use my <a href="http://blog.codesignstudios.com/unionbank-e-on-visa-electron-debit-card/">UnionBank E-On VISA Debit Card</a> with Google AdWords and it kept getting declined.</p>
<p><a href='http://blog.codesignstudios.com/wp-content/uploads/2009/06/google-adwords-account-setup.png' title='Google AdWords Card Declined'><img src='http://blog.codesignstudios.com/wp-content/uploads/2009/06/google-adwords-account-setup.thumbnail.png' alt='Google AdWords Card Declined' /></a></p>
<p>I am 100% sure my information is correct.</p>
<p>Tried at least 50 times.</p>
<p>Tried using different information in case I wrote something wrong.</p>
<p>I wish the error message was more specific rather so I would know what&#8217;s wrong, rather than just saying &#8220;Card Declined&#8221; every time. That would be a potential security issue though &#8230;</p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=762&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_762" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/google-adwords-keeps-declining-my-unionbank-e-on-visa-card-whats-wrong/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Evolution of a Programmer</title>
		<link>http://blog.codesignstudios.com/the-evolution-of-a-programmer/</link>
		<comments>http://blog.codesignstudios.com/the-evolution-of-a-programmer/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 09:08:25 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Work]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/the-evolution-of-a-programmer/</guid>
		<description><![CDATA[
In an e-mail being passed around in the office:
The Evolution of a Programmer
High School/Jr.High


  10 PRINT "HELLO WORLD"
  20 END


First year in College


  program Hello(input, output)
    begin
      writeln('Hello World')
    end.


Senior year in College


  (defun hello
    (print
  [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p><a href='http://blog.codesignstudios.com/wp-content/uploads/2009/06/evolution-of-programmer.jpg' title='The Evolution of a Programmer'><img src='http://blog.codesignstudios.com/wp-content/uploads/2009/06/evolution-of-programmer.thumbnail.jpg' alt='The Evolution of a Programmer' /></a></p>
<p>In an e-mail being passed around in the office:</p>
<h1>The Evolution of a Programmer</h1>
<h2>High School/Jr.High</h2>
<div id="code">
<pre>
  10 PRINT "HELLO WORLD"
  20 END
</pre>
</div>
<h2>First year in College</h2>
<div id="code">
<pre>
  program Hello(input, output)
    begin
      writeln('Hello World')
    end.
</pre>
</div>
<h2>Senior year in College</h2>
<div id="code">
<pre>
  (defun hello
    (print
      (cons 'Hello (list 'World))))
</pre>
</div>
<h2>New professional</h2>
<div id="code">
<pre>
  #include &lt;stdio.h&gt;
  void main(void)
  {
    char *message[] = {"Hello ", "World"};
    int i;

    for(i = 0; i &lt; 2; ++i)
      printf("%s", message[i]);
    printf("n");
  }
</pre>
</div>
<h2>Seasoned professional</h2>
<div id="code">
<pre>
  #include &lt;iostream.h&gt;
  #include &lt;string.h&gt;

  class string
  {
  private:
    int size;
    char *ptr;

  string() : size(0), ptr(new char[1]) { ptr[0] = 0; }

    string(const string &#038;s) : size(s.size)
    {
      ptr = new char[size + 1];
      strcpy(ptr, s.ptr);
    }

    ~string()
    {
      delete [] ptr;
    }

    friend ostream &#038;operator &lt;&lt;(ostream &#038;, const string &#038;);
    string &#038;operator=(const char *);
  };

  ostream &#038;operator&lt;&lt;(ostream &#038;stream, const string &#038;s)
  {
    return(stream &lt;&lt; s.ptr);
  }

  string &#038;string::operator=(const char *chrs)
  {
    if (this != &#038;chrs)
    {
      delete [] ptr;
     size = strlen(chrs);
      ptr = new char[size + 1];
      strcpy(ptr, chrs);
    }
    return(*this);
  }

  int main()
  {
    string str;

    str = "Hello World";
    cout &lt;&lt; str &lt;&lt; endl;

    return(0);
  }
</pre>
</div>
<h2>Master Programmer</h2>
<div id="code">
<pre>
  [
  uuid(2573F8F4-CFEE-101A-9A9F-00AA00342820)
  ]
  library LHello
  {
      // bring in the master library
      importlib("actimp.tlb");
      importlib("actexp.tlb");

      // bring in my interfaces
      #include "pshlo.idl"

      [
      uuid(2573F8F5-CFEE-101A-9A9F-00AA00342820)
      ]
      cotype THello
   {
   interface IHello;
   interface IPersistFile;
   };
  };

  [
  exe,
  uuid(2573F890-CFEE-101A-9A9F-00AA00342820)
  ]
  module CHelloLib
  {

      // some code related header files
      importheader(&lt;windows.h&gt;);
      importheader(&lt;ole2.h&gt;);
      importheader(&lt;except.hxx&gt;);
      importheader("pshlo.h");
      importheader("shlo.hxx");
      importheader("mycls.hxx");

      // needed typelibs
      importlib("actimp.tlb");
      importlib("actexp.tlb");
      importlib("thlo.tlb");

      [
      uuid(2573F891-CFEE-101A-9A9F-00AA00342820),
      aggregatable
      ]
      coclass CHello
   {
   cotype THello;
   };
  };

  #include "ipfix.hxx"

  extern HANDLE hEvent;

  class CHello : public CHelloBase
  {
  public:
      IPFIX(CLSID_CHello);

      CHello(IUnknown *pUnk);
      ~CHello();

      HRESULT  __stdcall PrintSz(LPWSTR pwszString);

  private:
      static int cObjRef;
  };

  #include &lt;windows.h&gt;
  #include &lt;ole2.h&gt;

  #include &lt;stdio.h&gt;
  #include &lt;stdlib.h&gt;
  #include "thlo.h"
  #include "pshlo.h"
  #include "shlo.hxx"
  #include "mycls.hxx"

  int CHello::cObjRef = 0;

  CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk)
  {
      cObjRef++;
      return;
  }

  HRESULT  __stdcall  CHello::PrintSz(LPWSTR pwszString)
  {
      printf("%ws
", pwszString);
      return(ResultFromScode(S_OK));
  }

  CHello::~CHello(void)
  {

  // when the object count goes to zero, stop the server
  cObjRef--;
  if( cObjRef == 0 )
      PulseEvent(hEvent);

  return;
  }

  #include &lt;windows.h&gt;
  #include &lt;ole2.h&gt;
  #include "pshlo.h"
  #include "shlo.hxx"
  #include "mycls.hxx"

  HANDLE hEvent;

   int _cdecl main(
  int argc,
  char * argv[]
  ) {
  ULONG ulRef;
  DWORD dwRegistration;
  CHelloCF *pCF = new CHelloCF();

  hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);

  // Initialize the OLE libraries
  CoInitializeEx(NULL, COINIT_MULTITHREADED);

  CoRegisterClassObject(CLSID_CHello, pCF, CLSCTX_LOCAL_SERVER,
      REGCLS_MULTIPLEUSE, &#038;dwRegistration);

  // wait on an event to stop
  WaitForSingleObject(hEvent, INFINITE);

  // revoke and release the class object
  CoRevokeClassObject(dwRegistration);
  ulRef = pCF-&gt;Release();

  // Tell OLE we are going away.
  CoUninitialize();

  return(0); }

  extern CLSID CLSID_CHello;
  extern UUID LIBID_CHelloLib;

  CLSID CLSID_CHello = { /* 2573F891-CFEE-101A-9A9F-00AA00342820 */
      0x2573F891,
      0xCFEE,
      0x101A,
      { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
  };

  UUID LIBID_CHelloLib = { /* 2573F890-CFEE-101A-9A9F-00AA00342820 */
      0x2573F890,
      0xCFEE,
      0x101A,
      { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
  };

  #include &lt;windows.h&gt;

  #include &lt;ole2.h&gt;
  #include &lt;stdlib.h&gt;
  #include &lt;string.h&gt;
  #include &lt;stdio.h&gt;
  #include "pshlo.h"
  #include "shlo.hxx"
  #include "clsid.h"

  int _cdecl main(
  int argc,
  char * argv[]
  ) {
  HRESULT  hRslt;
  IHello        *pHello;
  ULONG  ulCnt;
  IMoniker * pmk;
  WCHAR  wcsT[_MAX_PATH];
  WCHAR  wcsPath[2 * _MAX_PATH];

  // get object path
  wcsPath[0] = ' ';
  wcsT[0] = ' ';
  if( argc &gt; 1) {
      mbstowcs(wcsPath, argv[1], strlen(argv[1]) + 1);
      wcsupr(wcsPath);
      }
  else {
      fprintf(stderr, "Object path must be specifiedn");
      return(1);
      }

  // get print string
  if(argc &gt; 2)
      mbstowcs(wcsT, argv[2], strlen(argv[2]) + 1);
  else
      wcscpy(wcsT, L"Hello World");

  printf("Linking to object %wsn", wcsPath);
  printf("Text String %wsn", wcsT);

  // Initialize the OLE libraries
  hRslt = CoInitializeEx(NULL, COINIT_MULTITHREADED);

  if(SUCCEEDED(hRslt)) {

      hRslt = CreateFileMoniker(wcsPath, &#038;pmk);
      if(SUCCEEDED(hRslt))
   hRslt = BindMoniker(pmk, 0, IID_IHello, (void **)&#038;pHello);

      if(SUCCEEDED(hRslt)) {

   // print a string out
   pHello-&gt;PrintSz(wcsT);

   Sleep(2000);
   ulCnt = pHello-&gt;Release();
   }
      else
   printf("Failure to connect, status: %lx", hRslt);

      // Tell OLE we are going away.
      CoUninitialize();
      }

  return(0);
  }
</pre>
</div>
<h2>Apprentice Hacker</h2>
<div id="code">
<pre>
  #!/usr/local/bin/perl
  $msg="Hello, world.n";
  if ($#ARGV &gt;= 0) {
    while(defined($arg=shift(@ARGV))) {
      $outfilename = $arg;
      open(FILE, "&gt;" . $outfilename) || die "Can't write $arg: $!n";
      print (FILE $msg);
      close(FILE) || die "Can't close $arg: $!n";
    }
  } else {
    print ($msg);
  }
  1;
</pre>
</div>
<h2>Experienced Hacker</h2>
<div id="code">
<pre>
  #include &lt;stdio.h&gt;

  #define S "Hello, Worldn"
  main(){exit(printf(S) == strlen(S) ? 0 : 1);}
</pre>
</div>
<h2>Seasoned Hacker</h2>
<div id="code">
<pre>
  % cc -o a.out ~/src/misc/hw/hw.c
  % a.out
</pre>
</div>
<h2>Guru Hacker</h2>
<div id="code">
<pre>
  % echo "Hello, world."
</pre>
</div>
<h2>New Manager</h2>
<div id="code">
<pre>
  10 PRINT "HELLO WORLD"
  20 END
</pre>
</div>
<h2>Middle Manager</h2>
<div id="code">
<pre>
  mail -s "Hello, world." bob@b12
  Bob, could you please write me a program that prints "Hello, world."?
  I need it by tomorrow.
  ^D
</pre>
</div>
<h2>Senior Manager</h2>
<div id="code">
<pre>
  % zmail jim
  I need a "Hello, world." program by this afternoon.
</pre>
</div>
<h2>Chief Executive</h2>
<div id="code">
<pre>
  % letter
  letter: Command not found.
  % mail
  To: ^X ^F ^C
  % help mail
  help: Command not found.
  % damn!
  !: Event unrecognized
  % logout
</pre>
</div>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=761&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_761" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/the-evolution-of-a-programmer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>At 29, Life Hates Me (Self pity)</title>
		<link>http://blog.codesignstudios.com/at-29-life-hates-me-self-pity/</link>
		<comments>http://blog.codesignstudios.com/at-29-life-hates-me-self-pity/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 09:37:54 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Poetry]]></category>

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/at-29-life-hates-me-self-pity/</guid>
		<description><![CDATA[
Today, I went out with only 12.35 in my pocket.
Paid the jeep 7 pesos, went down at Puregold.
They have no ATM machines.
I walked west to Allied Bank. Machine offline.
Walked back east, past Puregold onto Budgetlane.
They have no ATM machines.
Guard tells me there&#8217;s an RCBC further west.
I move forward, almost getting hit by a car.
My flip [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p><img src='http://blog.codesignstudios.com/wp-content/uploads/2009/06/2381703005_1.jpg' alt='Emo railroad' /></p>
<p>Today, I went out with only 12.35 in my pocket.</p>
<p>Paid the jeep 7 pesos, went down at Puregold.</p>
<p>They have no ATM machines.</p>
<p>I walked west to Allied Bank. Machine offline.</p>
<p>Walked back east, past Puregold onto Budgetlane.</p>
<p>They have no ATM machines.</p>
<p>Guard tells me there&#8217;s an RCBC further west.</p>
<p>I move forward, almost getting hit by a car.</p>
<p>My flip flops snap.</p>
<p>Finally, an ATM.</p>
<p>Got some cash. I need to replace my flip flops.</p>
<p>Went further west to Mercury Drug. No flip flops here.</p>
<p>It starts to drizzle.</p>
<p>Went back east to Budgetlane.</p>
<p>Their flip flops are no good.</p>
<p>Bad day. I&#8217;m going home.</p>
<p>I walk back to Puregold to get a ride.</p>
<p>It starts to pour.</p>
<p>I get rained on.</p>
<p>Home at last.</p>
<p>Almost 29 and life hates me.</p>
<p>I haven&#8217;t really accomplished anything.</p>
<p>My parents do not understand me.</p>
<p>I lost my business.</p>
<p>I lost my car.</p>
<p>I have no friends.</p>
<p>Nobody loves me.</p>
<p>I am alone.</p>
<p>This is my life, I did this to myself.</p>
<p>Advanced happy birthday to me.</p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=759&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_759" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/at-29-life-hates-me-self-pity/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parenting</title>
		<link>http://blog.codesignstudios.com/parenting/</link>
		<comments>http://blog.codesignstudios.com/parenting/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 13:08:59 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Poetry]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/parenting/</guid>
		<description><![CDATA[
Parenting
Sometimes I find myself wondering
Of how my life would have been
Or could have been
A lot more exciting,
A lot less distressing,
Maybe even interesting
If it hand&#8217;t been
For my parents meddling
In things I find myself in
But then I would not have been
If it hadn&#8217;t been
For their sweet loving
That brought me into being
To a world of living
And breathing,
Warm human [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p><a href='http://blog.codesignstudios.com/wp-content/uploads/2009/06/artist__s_parents_after_dix_by_hnedy.jpg' title='Artist’s Parents'><img src='http://blog.codesignstudios.com/wp-content/uploads/2009/06/artist__s_parents_after_dix_by_hnedy.thumbnail.jpg' alt='Artist’s Parents' /></a></p>
<p><strong>Parenting</strong></p>
<p>Sometimes I find myself wondering<br />
Of how my life would have been<br />
Or could have been<br />
A lot more exciting,<br />
A lot less distressing,<br />
Maybe even interesting<br />
If it hand&#8217;t been<br />
For my parents meddling<br />
In things I find myself in<br />
But then I would not have been<br />
If it hadn&#8217;t been<br />
For their sweet loving<br />
That brought me into being<br />
To a world of living<br />
And breathing,<br />
Warm human beings.</p>
<p>Dennison Uy<br />
05/27/2009</p>
<p>Image credits: <a href="http://hnedy.deviantart.com/art/Artist-s-Parents-after-Dix-43473006">Artist&#8217;s Parents (after Dix)</a></p>
<blockquote><p>Winner of The Holburne Dukes Portrait Prize 2006</p>
<p>The winner of this year&#8217;s biennial competition was announced at a reception at the Holburne Museum on Monday 30 October. The panel of judges, including the artist Sir Peter Blake, the Times art critic Rachel Campbell-Johnston, and writer and broadcaster Bel Mooney unanimously agreed the winner as The Artist&#8217;s Parents (after Dix) by Vincent Brown.</p>
<p>Sir Peter Blake commented that the portrait was &#8216;a beautiful and tender painting which showed great insight into the characters of the sitters.<br />
Sir Peter felt confident that Vincent Brown would produce an interesting commission for the Holburne Museum with the £5,ooo prize.</p>
<p>RachelCampbell-Johnston of the Times said that she loved the &#8216;unsparing exactitude of the portrait, its bleakness and the totemic feel of the figures&#8217; She felt that the painting also demonstrated &#8216;great technical competence&#8217;.</p>
<p>Bel Mooney revealed that she was immediately drawn to the portrait as there was something touching about it which reminded her of her own parents. She said that &#8216;looking at the figures in the painting you feel as if you are looking at a real life story of two people; in a sense it is a novel in paint&#8217;.</p></blockquote>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=754&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_754" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/parenting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cyberfucked</title>
		<link>http://blog.codesignstudios.com/cyberfucked/</link>
		<comments>http://blog.codesignstudios.com/cyberfucked/#comments</comments>
		<pubDate>Fri, 15 May 2009 12:52:55 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Bored]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/cyberfucked/</guid>
		<description><![CDATA[Things I do when I&#8217;m bored:
1. Make random rubbish posts on other blogs on the intarweb
2. Play with my cat
3. Work on my plans for world domination
4. Attempt to hack into government networks (requirement for item #3)
Things I do when I&#8217;m extremely bored:
Rid the society of unwanted lower life forms by frying their brains. Here [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p>Things I do when I&#8217;m bored:</p>
<p>1. Make random rubbish posts on other blogs on the intarweb<br />
2. Play with my cat<br />
3. Work on my plans for world domination<br />
4. Attempt to hack into government networks (requirement for item #3)</p>
<p>Things I do when I&#8217;m extremely bored:</p>
<p>Rid the society of unwanted lower life forms by frying their brains. Here are some examples.</p>
<p>Case study #1: daviddelucca25 (horny mofo)</p>
<p>[12:48] daviddelucca25: hi<br />
[12:48] daviddelucca25: im horny as hell, care to cam to cam darling?<br />
[13:04] me: do you mean to say you&#8217;re horny now, or that you&#8217;re a horny person in particular?<br />
[13:04] daviddelucca25: horny<br />
[13:04] daviddelucca25: now<br />
[13:04] me: you said you were in hell, how come?<br />
[13:04] me: is that because you&#8217;re horny?<br />
[13:05] daviddelucca25: cuz i gotz no one to play with<br />
[13:06] me: is this type of play the metaphysical type?<br />
[13:06] daviddelucca25: i<br />
[13:06] daviddelucca25: dont<br />
[13:06] daviddelucca25: care<br />
[13:06] daviddelucca25: anymore<br />
[13:07] daviddelucca25: fuck<br />
[13:08] me: that&#8217;s funny, because neither do i. but for some reason you messaged me, and i thought i&#8217;d oblige by sending a response.<br />
[13:08] daviddelucca25: (sigh)<br />
[13:08] daviddelucca25: send to all<br />
[13:08] daviddelucca25: and u and some other gals answered<br />
[13:11] me: when you send a message to somebody, the normal reaction of the other party would be to send a response, as is the standard of discourse, ergo, you are just as obliged to respond back, probably due to lack of foresight in removing seemingly uninterested individuals like me from your &#8220;send to all&#8221;<br />
[13:14] me: are you there? please don&#8217;t tell me your mind suddenly combusted.</p>
<p>Case study #2: milky_banana (monkey brains)</p>
<p>[14:08] milky_banana: where did u go<br />
[14:08] milky_banana: wich trip<br />
[14:10] me: trip to universe<br />
[12:52] milky_banana: how was the trip<br />
[13:04] me: It was fun, I got to see the earth and live in it.<br />
[13:04] milky_banana: hmmmm<br />
[13:05] milky_banana: sohow u feel<br />
[13:05] me: it feels weird, talking to a primeval like you.<br />
[13:05] milky_banana: oh k<br />
[13:06] milky_banana: did nt u take the pics<br />
[13:07] me: i tried to, but my camera broke out all of a sudden when i tried to take a picture of you.<br />
[13:08] milky_banana: so funny<br />
[13:08] milky_banana: ok carry on ,, have a nice day bye<br />
[13:12] me: would you like ketchup with that sir, or would a big &#8220;fuck you&#8221; do just as well?</p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=753&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_753" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/cyberfucked/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Katrina Halili - Hayden Kho video scandal</title>
		<link>http://blog.codesignstudios.com/katrina-halili-hayden-kho-video-scandal/</link>
		<comments>http://blog.codesignstudios.com/katrina-halili-hayden-kho-video-scandal/#comments</comments>
		<pubDate>Thu, 14 May 2009 18:39:11 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Movies]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/katrina-halili-hayden-kho-video-scandal/</guid>
		<description><![CDATA[&#8230; AKA porno for the masses, starring Philippine sexy actress Katrina Halili and doctor-cum-singer-cum-MILF man Hayden Kho. They both have super hot bodies, which makes things quite easy especially for Mr. Hayden, who&#8217;s only a month older than me. Can I imagine going out with someone as old as my mom? I guess as long [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p>&#8230; AKA porno for the masses, starring Philippine sexy actress Katrina Halili and doctor-cum-singer-cum-MILF man Hayden Kho. They both have super hot bodies, which makes things quite easy especially for Mr. Hayden, who&#8217;s only a month older than me. Can I imagine going out with someone as old as my mom? I guess as long as she appears to be in her twenties and has tons of cash to spend, it doesn&#8217;t matter.  Wooops! I shouldn&#8217;t be saying anything nasty about Quark&#8217;s mom. Sorry bro. Please point that gun away from me now ;<</p>
<p>Actual TV performance:<br />
<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/x4Zdd3RxSk8&#038;hl=en&#038;fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/x4Zdd3RxSk8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Here is a video of the alleged &#8220;practice&#8221; session:<br />
<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/YUiufVg3emc&#038;hl=en&#038;fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YUiufVg3emc&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>They are celebrities in the Philippines, so videos like these spread rather quickly through mobile phones, PSPs, iPods etc etc so by the end of the day even your grandmother would have seen this hot hot HOT video. Whoever thought of putting camera and video recording capability into mobile phones is a GENIUS, I tell you.</p>
<p>And now, back to your regular program &#8230;</p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=752&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_752" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/katrina-halili-hayden-kho-video-scandal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google dream</title>
		<link>http://blog.codesignstudios.com/google-dream/</link>
		<comments>http://blog.codesignstudios.com/google-dream/#comments</comments>
		<pubDate>Tue, 12 May 2009 08:24:40 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Work]]></category>

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/google-dream/</guid>
		<description><![CDATA[
In the 70&#8217;s, I wasn&#8217;t born yet, but I wanted to work for IBM.
The 80&#8217;s came, and I was born wanting to work for Microsoft.
Then the 90&#8217;s and the Internet arrived, and I wanted to work for Yahoo.
Today, I want to work for Google.
???
???
???
Profit!

Footnote: It&#8217;s like, every geek&#8217;s wet dream. I want it so badly, [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><ol>
<li>In the 70&#8217;s, I wasn&#8217;t born yet, but I wanted to work for IBM.</li>
<li>The 80&#8217;s came, and I was born wanting to work for Microsoft.</li>
<li>Then the 90&#8217;s and the Internet arrived, and I wanted to work for Yahoo.</li>
<li>Today, I want to work for Google.</li>
<li>???</li>
<li>???</li>
<li>???</li>
<li>Profit!</li>
</ol>
<p><small>Footnote: It&#8217;s like, every geek&#8217;s wet dream. I want it so badly, that I will even work for them free. That last part was meant to be a joke. Or maybe not. I&#8217;m that desperate. If any of Google&#8217;s hiring managers are reading this, please hire me. If you&#8217;re my present employer, and you&#8217;re reading this, don&#8217;t fret. I love my job, and I work to keep it. When we dream, dream big, right?</small></p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=749&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_749" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/google-dream/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Conquering The Universe 101</title>
		<link>http://blog.codesignstudios.com/conquering-the-universe-101/</link>
		<comments>http://blog.codesignstudios.com/conquering-the-universe-101/#comments</comments>
		<pubDate>Tue, 05 May 2009 17:59:27 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[World]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/conquering-the-universe-101/</guid>
		<description><![CDATA[Those who dream of conquering the world are small timers. I, on the other hand, shall conquer them instead. When that is done, I will just sit back, relax, and let others do the work while the profits roll in.
Copyright &#169; 2009 Life, the Universe, and Everything. This Feed is for personal non-commercial use only. [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p>Those who dream of conquering the world are small timers. I, on the other hand, shall conquer them instead. When that is done, I will just sit back, relax, and let others do the work while the profits roll in.</p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=750&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_750" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/conquering-the-universe-101/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Latest Twitter updates include search and AJAXification(tm)</title>
		<link>http://blog.codesignstudios.com/latest-twitter-updates-include-search-and-ajaxificationtm/</link>
		<comments>http://blog.codesignstudios.com/latest-twitter-updates-include-search-and-ajaxificationtm/#comments</comments>
		<pubDate>Fri, 01 May 2009 07:08:30 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Cool]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/latest-twitter-updates-include-search-and-ajaxificationtm/</guid>
		<description><![CDATA[It was bound to happen, one way or another. Today, my worst fears have been confirmed. All was well as I logged in to my blessed Twitter account. Everything appeared to be normal. But wait, something seems amiss. There&#8217;s a new search box below the favorites link, and when did Twitter have a home link? [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p>It was bound to happen, one way or another. Today, my worst fears have been confirmed. All was well as I logged in to <a href="http://twitter.com/dennison">my blessed Twitter account</a>. Everything appeared to be normal. But wait, something seems amiss. There&#8217;s a new search box below the favorites link, and when did Twitter have a home link? As I hurriedly clicked on the new links one after the other a deep, disturbing realization dawned upon me.</p>
<p><a href="http://www.twitter.com/">Twitter</a> has been AJAXified&trade;.</p>
<p><a href='http://blog.codesignstudios.com/wp-content/uploads/2009/05/twitter-ajax-update.png' title='Twitter’s new AJAXified(tm) page'><img src='http://blog.codesignstudios.com/wp-content/uploads/2009/05/twitter-ajax-update.thumbnail.png' alt='Twitter’s new AJAXified(tm) page' /></a></p>
<p>And by Jobe, I&#8217;m LOVING it. Twitter is like the kewlest thing, evar (next to Google, Linux, and the iPhone)</p>
<p><a href="http://blog.twitter.com/2009/04/twitter-search-for-everyone.html">Read the Twitter Blog post about the new search function</a></p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=747&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_747" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/latest-twitter-updates-include-search-and-ajaxificationtm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Ninth Beatitude</title>
		<link>http://blog.codesignstudios.com/the-ninth-beatitude/</link>
		<comments>http://blog.codesignstudios.com/the-ninth-beatitude/#comments</comments>
		<pubDate>Fri, 01 May 2009 06:45:39 +0000</pubDate>
		<dc:creator>Dennison Uy</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://blog.codesignstudios.com/the-ninth-beatitude/</guid>
		<description><![CDATA[
Blessed are the geeks, for they shall inherit &#8230; cyberspace.
Dennison Uy
May 1, 2009
Copyright &#169; 2009 Life, the Universe, and Everything. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we [...]]]></description>
			<content:encoded><![CDATA[<div id="lw_context_ads"><p><a href="http://xkcd.com/256/"><img src='http://blog.codesignstudios.com/wp-content/uploads/2009/05/online_communities.png' alt='online communities from xkcd comics' /></a></p>
<p>Blessed are the geeks, for they shall inherit &#8230; cyberspace.</p>
<p>Dennison Uy<br />
May 1, 2009</p>
<hr/>Copyright &copy; 2009 <strong><a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@blog.codesignstudios.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span></div>
<p>Post from: <a href="http://blog.codesignstudios.com">Life, the Universe, and Everything</a></p>
<p class="akst_link"><a href="http://blog.codesignstudios.com/?p=744&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_744" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.codesignstudios.com/the-ninth-beatitude/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
