<?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>JayNCoke</title>
	<atom:link href="http://www.jasonaniceto.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonaniceto.com</link>
	<description>Jason Aniceto's Home Page</description>
	<lastBuildDate>Thu, 22 Jul 2010 00:19:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flash and the Z-Index</title>
		<link>http://www.jasonaniceto.com/2010/07/21/flash-and-the-z-index/</link>
		<comments>http://www.jasonaniceto.com/2010/07/21/flash-and-the-z-index/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 00:19:15 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[overlays]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/?p=1249</guid>
		<description><![CDATA[Lots of websites I work on (including my own) use some Flash elements. I try to avoid them as much as possible, but when it comes to embedding videos from sites like YouTube and Vimeo, you just can&#8217;t help it! And now these days, there are lots of overlapping elements used in pages, the most [...]]]></description>
			<content:encoded><![CDATA[<p>Lots of websites I work on (including my own) use some Flash elements. I try to avoid them as much as possible, but when it comes to embedding videos from sites like YouTube and Vimeo, you just can&#8217;t help it! And now these days, there are lots of overlapping elements used in pages, the most common example being the modal/lightbox overlay windows. When you have embedded flash in your page and then open one of these overlays, the flash seems to always trump it and cover the overlay element. This had been a thorn in my side for many a times, and I keep forgetting that there IS A SOLUTION. So here it is, for me to remember as well as for you guys to add to your knowledge:</p>
<p>Embedded flash objects have an attribute called &#8216;wmode&#8217; which is usually defaulted to &#8216;window.&#8217; According to <a href="http://kb2.adobe.com/cps/127/tn_12701.html" target="_blank">Adobe</a>, here&#8217;s their description of what it is:</p>
<blockquote><p>
wmode &#8211; Possible values: window, opaque, transparent. Sets the Window Mode property of the Flash movie for transparency, layering, and positioning in the browser.</p>
<ul>
<li>window &#8211; movie plays in its own rectangular window on a web page.</li>
<li>opaque &#8211; the movie hides everything on the page behind it.</li>
<li>transparent &#8211; the background of the HTML page shows through all transparent portions of the movie, this may slow animation performance.</li>
</ul>
</blockquote>
<p>Now to enable z-index&#8217;d elements in your page to display over the embedded flash, you need to change the wmode attribute to &#8216;transparent&#8217;:</p>
<pre>
&lt;embed <strong>wmode="transparent"</strong> src="http://vimeo.com/moogaloop.swf?
clip_id=431114&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;
color=59a5d1&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true"
allowscriptaccess="always" width="300" height="224"&gt;
</pre>
<p>Actually, I didn&#8217;t figure this one out on my own. Full credit goes out to Julie Cousins:<br />
<object width="300" height="224"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=431114&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=59a5d1&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=431114&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=59a5d1&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="300" height="224"></embed></object></p>
<p>I hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2010/07/21/flash-and-the-z-index/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heroku publickey Problem Solved</title>
		<link>http://www.jasonaniceto.com/2010/03/25/heroku-publickey-problem-solved/</link>
		<comments>http://www.jasonaniceto.com/2010/03/25/heroku-publickey-problem-solved/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 21:54:18 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Github]]></category>
		<category><![CDATA[Heroku]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/?p=1229</guid>
		<description><![CDATA[I work on a Ruby on Rails app that is stored on git and deployed by Heroku. I&#8217;ve been added as a collaborator to the project, so I need to be able to pull from the repository to make changes. I&#8217;ve been working with subversion, so I&#8217;m used to using version control systems.
Right now, I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jasonaniceto.com/wp-content/herokulogo.png" alt="" title="herokulogo" width="180" height="58" class="alignleft size-full wp-image-1235" />I work on a Ruby on Rails app that is stored on git and deployed by <a href="http://www.heroku.com/">Heroku</a>. I&#8217;ve been added as a collaborator to the project, so I need to be able to pull from the repository to make changes. I&#8217;ve been working with subversion, so I&#8217;m used to using version control systems.</p>
<p>Right now, I&#8217;m coding on <a href="http://www.ubuntu.com/">Ubuntu</a> which I hope to write another post on someday. But right now I want to address a problem I came across when I tried do a <strong>git clone</strong> and pull from the repository.</p>
<p>Usually, I would run this command:</p>
<pre>git clone -o heroku git@heroku.com:myapp.git</pre>
<p>Note that instead of &#8220;myapp&#8221; I entered the actual name of my Heroku app. When I run this command, the files for this app would be copied over to my computer so I can develop and debug locally. However, I came up to this little bugger of a problem:</p>
<blockquote><p>
Permission denied (publickey).<br />
fatal: The remote end hung up unexpectedly
</p></blockquote>
<p>I tried my best to find out what the exactly was wrong and any solutions, but the best I could come up with was that the SSH key was getting rejected. The closest I came to finding an answer was on this <a href="http://heroku.disqus.com/heroku_api_and_external_git_access/">thread</a>. Basically you had to generate an SSH key then add it to Heroku. All these steps I followed from the Heroku docs for <a href="http://docs.heroku.com/keys">managing keys</a>. However, I was still getting the Permission denied error.</p>
<p>I had to do more research. Then I came across this <a href="http://help.github.com/troubleshooting-ssh/">troubleshooter for SSH</a> from github. Of particular interest was their note on &#8220;Issues when using sudo:&#8221;</p>
<blockquote><p>
You shouldn’t run sudo git unless you have a very good reason. If you don’t know if you have a good reason to use sudo, it’s likely that you do not have one.</p>
<p>If you are using sudo with git commands (e.g. using sudo git clone because you are deploying to a root-owned folder), ensure that you also generated the key using sudo. Otherwise, you will have generated a key for your current user, but when you are doing sudo git, you are actually the root user – thus, the keys will not match.</p>
<p>Simply put, if you are using sudo git, then also use sudo ssh-keygen.
</p></blockquote>
<p>I then realized that I wasn&#8217;t <strong>running as root on my system</strong>. *FACEPALM*</p>
<p>Using this info, I just performed these steps:</p>
<p>1. Run command line:</p>
<pre>sudo ssh-keygen -t rsa</pre>
<p>2. Use the default location, and don&#8217;t enter any password. (Basically, press the Enter key three times.)</p>
<p>3. When that&#8217;s done, run command line:</p>
<pre>sudo heroku keys:add /root/.ssh/id_rsa.pub</pre>
<p>4. After the key is added, run command line: </p>
<pre>sudo git clone -o heroku git@heroku.com:myapp.git</pre>
<p>After that last command, it should then pull in all your Heroku application files for you to work with!</p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2010/03/25/heroku-publickey-problem-solved/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting Started With Ruby</title>
		<link>http://www.jasonaniceto.com/2009/09/21/getting-started-with-ruby/</link>
		<comments>http://www.jasonaniceto.com/2009/09/21/getting-started-with-ruby/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:53:31 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[Notepad++]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/?p=1150</guid>
		<description><![CDATA[I recently got assigned a project that involved using Ruby, a programming language that I always wanted to learn. This was a great opportunity for me to get right into it and gain some experience. Overall, it was a bit of an obstacle to figure out how to program Ruby in a Windows environment.
I had [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jasonaniceto.com/wp-content/ruby-150x150.png" alt="ruby" title="ruby" width="150" height="150" class="alignleft size-thumbnail wp-image-1151" />I recently got assigned a project that involved using <a href="http://www.ruby-lang.org/en/">Ruby</a>, a programming language that I always wanted to learn. This was a great opportunity for me to get right into it and gain some experience. Overall, it was a bit of an obstacle to figure out how to program Ruby in a Windows environment.</p>
<p>I had been reading this book, <a href="http://readernaut.com/jayncoke/books/0321553853/ruby/">Ruby: Visual QuickStart Guide</a>. And while the QuickStart books have always been a great and useful read for me, trying to set up the development environment was a bit tricky for me. I&#8217;m more used to developing in a Unix environment for C and C++ or writing and uploading pages on my server for PHP and Javascript. At first I was under the impression that Ruby was strictly a web server-side language like PHP, so it was difficult for me to comprehend how to set up Ruby pages on my website. <a href="http://rubyonrails.org/">Rails</a> would be the solution to this I would later discover.</p>
<p>A Rails project shouldn&#8217;t be the first thing you do to learn Ruby. While it is a great thing in and of itself, it doesn&#8217;t really work well for learners new to Ruby. However, through my personal experience and trial and error, I was able to finally set myself up with Ruby in a Windows environment.</p>
<p>First thing is first: Download and install Ruby. You can grab a Windows installer on the Ruby website, but here&#8217;s a link to their download page: <a href="http://www.ruby-lang.org/en/downloads/">http://www.ruby-lang.org/en/downloads/</a>. There&#8217;s a One-Click Installer executable, which I used. The installer is pretty straightforward.</p>
<p>Next, for me at least, is to have an editor to actually code in. I personally love <a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a>. It is very simple and robust. I use it also for my web programming. I don&#8217;t know how I got anything done without it. I had tried to fiddle around with <a href="http://www.netbeans.org/">NetBeans</a>, but it was a bit to complicated and overwhelming for a beginner. I might give it a go again after more experience.</p>
<p>So I have the language installed on my Windows computer and have a source code editor. Now what? I wrote a basic .rb file, but how do I compile it? How do I make it work? How do I say, &#8220;HELLO, WORLD!&#8221;? Well, in Windows, all the action is run through the console, aka the <em>cmd</em> command. To check if your Ruby installation is working, start up your console window by clicking your Start Button, then Run, type in <em>cmd</em>, then clicking OK. That black little console window will pop up and prompt you to enter in your commands. Type in <em>ruby -v</em> to see if the &#8216;ruby&#8217; command works. If everything&#8217;s good, then it will show you what version is installed. </p>
<p>The Windows console is a bit rough to work with, personally having been used to the more robust console in Linux or even the awesome SSH client <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a>. And it was even more difficult since the Windows console doesn&#8217;t recognize Unix commands. I am so used to &#8216;ls,&#8217; &#8216;pwd,&#8217; and &#8216;rm&#8217; to navigate and modify files. I recently found a great looking one called <a href="http://git-scm.com/">git</a>. It comes with git bash, which basically looks better than the Windows console in addition to recognizing Unix commands, a big plus for me! Using this console, I can run my Ruby programs with ease.</p>
<p>I am not a Ruby expert by any means. I am still completely new to it and learning it from scratch. This post is mainly to document my own experience with learning how to program in Ruby and hopefully help point other newbies in the right direction when getting started. If you have any personal tips or suggestions, please comment and let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2009/09/21/getting-started-with-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Friends List</title>
		<link>http://www.jasonaniceto.com/2009/06/21/facebook-friends-list/</link>
		<comments>http://www.jasonaniceto.com/2009/06/21/facebook-friends-list/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 04:00:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/?p=1107</guid>
		<description><![CDATA[Lately with Facebook, I am seeing a big surge of connections from not only friends from college, but high school and elementary school. And then I have family starting to sign up. And last but not least, I network with past work colleagues. So with all those social circles having access to my profile, I [...]]]></description>
			<content:encoded><![CDATA[<p>Lately with Facebook, I am seeing a big surge of connections from not only friends from college, but high school and elementary school. And then I have family starting to sign up. And last but not least, I network with past work colleagues. So with all those social circles having access to my profile, I get a bit worried about who gets to see what. I&#8217;m sure you don&#8217;t want your family or those you work with to see those pictures from that party you went to. Or perhaps you have some friends who like to make some very explicit remarks on your wall. So how can you filter what gets seen by who? That&#8217;s a big part of why I love Facebook: they place a large emphasis on Privacy. And one of the latest features that helps you accomplish this is the <strong>Friends List</strong>.</p>
<p>I think this feature was rolled out near the beginning of 2008, but I hadn&#8217;t really used it until recently. It occurred to me that I was posting some things that I wouldn&#8217;t want some of my contacts (i.e. work references, certain family members) to see or know about. It would obviously create some awkward moments if my younger nephew read about some drunken antics my friends and I might have gotten into. Or perhaps I might be sharing some intimate photos with family members that I prefer were kept private among us. So that&#8217;s the beginning of the concept of the Friends List: You have certain friends or contacts that you know through certain social circles; and within those circles they have certain levels of information and access that you prefer they have. You are essentially grouping and organizing your friends. This post will show you how I accomplish privacy filtering through friends lists.</p>
<p>First, you must organize your friends lists. Let&#8217;s keep it simple: group your contacts according to level of privacy. You might be first inclined to group them according to relation like Family, Friends, Work, College, etc. But for the sake of learning the basics of how the privacy filtering works, try to thinking of grouping them according to how much access they&#8217;ll have. Let&#8217;s keep it simple to two groups for now: Trusted and Restricted. The <strong>Trusted</strong> group will have members that you <em>allow</em> access and <strong>no others</strong>. And the <strong>Restricted</strong> group will obviously have members that are granted <em>no</em> access to your information.</p>
<p>To start a list and add members to it, click on the Friends link at the top of your Facebook profile and you should see something similar to this:</p>
<p><center><a href="http://www.jasonaniceto.com/wp-content/facebook_friendslist_01.png"><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_01-300x198.png" alt="facebook_friendslist_01" title="facebook_friendslist_01" width="300" height="198" class="alignnone size-medium wp-image-1108" /></a><br />Click for bigger view.</center></p>
<p>This is through my own profile, so as you can see, I have several lists in place. But please note the ones titled <strong>Restricted</strong> and <strong>Restricted +</strong>. These lists contain members that I want to have no access to my photos, movies, notes, etc. I have a plus group because that one is further restricted to see only the barest of information on my profile. </p>
<p>Back to creating a list: at the left, should see the lists you may have or haven&#8217;t made. If not, you should still see <strong>+ Create</strong> link. Click on that and you will be able to title a new list and add members to it as you see fit. </p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_02.png" alt="facebook_friendslist_02" title="facebook_friendslist_02" width="168" height="390" class="alignnone size-full wp-image-1109" /></center></p>
<p>Another way to add members to a list is to simply go to any list view and click on the list drop down menu on the right of the member you wish to add:</p>
<p><center><a href="http://www.jasonaniceto.com/wp-content/facebook_friendslist_03.png"><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_03-300x238.png" alt="facebook_friendslist_03" title="facebook_friendslist_03" width="300" height="238" class="alignnone size-medium wp-image-1110" /></a><br />Also note that you can add members to multiple lists.</center></p>
<p>So once you&#8217;ve created the lists, it&#8217;s time to start applying privacy policies on them. The procedure to set privacy access to your profile, photos, wall, etc is practically the same. For this example, go to your Profile Privacy page by clicking on Settings >> Privacy Settings >> Profile.</p>
<p><center><a href="http://www.jasonaniceto.com/wp-content/facebook_friendslist_05.png"><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_05-300x257.png" alt="facebook_friendslist_05" title="facebook_friendslist_05" width="300" height="257" class="alignnone size-medium wp-image-1121" /></a><br />Your Profile Privacy Settings.</center></p>
<p>Anytime you see this lock: <img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_lock.png" alt="facebook_friendslist_lock" title="facebook_friendslist_lock" width="13" height="15" class="alignnone size-full wp-image-1129" /> it means that you can adjust its privacy settings. Clicking on the drop down menu adjacent to it shows you these options:</p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_06.png" alt="facebook_friendslist_06" title="facebook_friendslist_06" width="431" height="129" class="alignnone size-full wp-image-1122" /></center></p>
<p>The option we want is <strong>&#8220;Customize&#8230;&#8221;</strong> but I&#8217;ll go over real quick what the others entail:</p>
<ul>
<li><strong>Everyone</strong>: This one is relatively new. It means <em>everyone</em> on the internet will have access, despite whether they have an account or not, nor if they are your friend.</li>
<li><strong>My Networks and Friends</strong>: This limits the number of people who have access to those in your networks and are your friend. This goes for the similar option <em>People at [Network] and Friends</em>.</li>
<li><strong>Friends of Friends</strong>: All of your friends will have access, and their friends in their networks will as well.</li>
</ul>
<p>Click on the <strong>Customize&#8230;</strong> option and this pop-up will come into view:</p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_08.png" alt="facebook_friendslist_08" title="facebook_friendslist_08" width="386" height="570" class="alignnone size-full wp-image-1124" /><br />This little screen is pretty self-explanatory. What we&#8217;re interested in are the <em>Some Friends</em> option under <strong>Who Can See This?</strong> and the <strong>Except These People</strong> option.<br />
</center></p>
<p>These two options are very useful. If you have material that you want only a select few of individuals to see, sort of an &#8220;exclusive&#8221; group, choose the <strong>Some Friends</strong> option. For the things that you don&#8217;t want certain people to see, click on the <strong>Except These People</strong> field. You can add any number of individuals and lists to this which you can do by clicking on this icon: <img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_listicon.png" alt="facebook_friendslist_listicon" title="facebook_friendslist_listicon" width="23" height="16" class="alignnone size-full wp-image-1135" /></p>
<p>With those two options in mind, you would use your newly created <strong>Trusted</strong> list in the <strong>Some Friends</strong> option. With this set up, now only the members of the <strong>Trusted</strong> list will have access and <em>no one else</em>. Some ideas in using this would include: Using a &#8220;Family&#8221; list so that only your family will see your family pictures; Using a &#8220;Best Friends&#8221; list to share those pictures from that party with and no one else; or a &#8220;Work&#8221; list to show the work relevant items only to your co-workers.</p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_07.png" alt="facebook_friendslist_07" title="facebook_friendslist_07" width="333" height="131" class="alignnone size-full wp-image-1123" /><br />Those listed in this option will be able to see what you want them to see and no one else.</center></p>
<p>The <strong>Except These People</strong> section means that whoever is listed in this field will <strong>NOT</strong> have access or be able to see your items. Using the <strong>Restricted</strong> list here means that the members in that list will never be able to see your pictures. I use this option to limit what my co-workers and family can see on my profile and activity. I also have a <strong>Don&#8217;t Know</strong> or &#8220;Strangers&#8221; list with members that I met exclusively on Facebook or those I just met and don&#8217;t necessarily trust that much; I can limit what they can see as well using the <strong>Except These People</strong> section.</p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_09.png" alt="facebook_friendslist_09" title="facebook_friendslist_09" width="372" height="92" class="alignnone size-full wp-image-1139" /><br />Those listed in this field will not see what you don&#8217;t want them to see.</center></p>
<p>That&#8217;s pretty much it! Now if you want to test it out and make sure the privacy settings are correct, there is a &#8220;View As&#8221; mode. Using this mode, you can see your profile how your friend sees it according to the privacy settings you have applied to them. To do this, click on hover over &#8220;Settings&#8221; at the top of any page and click &#8220;Privacy Settings.&#8221; From that page, click the &#8220;Profile&#8221; link. On this page you can see the prompt, &#8220;See how a friend sees your profile:&#8221;</p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/facebook_friendslist_10.png" alt="facebook_friendslist_10" title="facebook_friendslist_10" width="356" height="60" class="alignnone size-full wp-image-1141" /></center></p>
<p>Enter the name of the friend and then click on their name when it pops up. You&#8217;ll then be seeing your &#8216;limited&#8217; profile according to how your friend sees it. This is a pretty good way to test your privacy settings. What I also do is create a second dummy Facebook profile and friend it. Then I apply the privacy settings on that &#8220;dummy&#8221; and view my profile to see if they work. I use an actual different browser to stay logged on both profiles at the same time.</p>
<p>So there you have it! That&#8217;s how you can control what your friends and family can see on your Facebook! I hope this was helpful and please feel free to ask me any questions!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2009/06/21/facebook-friends-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing My Resume</title>
		<link>http://www.jasonaniceto.com/2009/05/12/designing-my-resume/</link>
		<comments>http://www.jasonaniceto.com/2009/05/12/designing-my-resume/#comments</comments>
		<pubDate>Tue, 12 May 2009 16:39:09 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Resume]]></category>

		<guid isPermaLink="false">http://www.battlerobo.com/?p=932</guid>
		<description><![CDATA[Being on the job hunt required me to re-evaluate my CV, or &#8220;Curriculum Vitae.&#8221; I had a very simple one that I&#8217;ve been using the past few years, but I was inspired to create a whole new one from scratch by this very awesome article, How To Create A Great Web Design CV and Résumé? [...]]]></description>
			<content:encoded><![CDATA[<p>Being on the job hunt required me to re-evaluate my CV, or &#8220;Curriculum Vitae.&#8221; I had a very simple one that I&#8217;ve been using the past few years, but I was inspired to create a whole new one from scratch by this very awesome article, <a href="http://www.smashingmagazine.com/2009/04/01/10-handy-tips-for-web-design-cvs-and-resumes/">How To Create A Great Web Design CV and Résumé?</a> from <a href="http://www.smashingmagazine.com/">Smashing Magazine</a>. It would also give me a chance to learn <a href="http://www.gimp.org/">GIMP</a> (GNU Image Manipulation Program). Here&#8217;s a look into my design process and how my current resume came to be.</p>
<p><span id="more-932"></span><center><a href="http://fc03.deviantart.com/fs43/f/2009/114/b/5/My_Resume___Iteration_01_by_jayncoke.png" rel="ibox" title="First Version"><img src="http://th05.deviantart.com/fs43/150/i/2009/114/d/1/My_Resume___Iteration_01_by_jayncoke.png" border="0" alt="First Version" /></a><br />First Version</center></p>
<p>My first iteration of my evolving resume. I just started learning to use GIMP, previously using Microsoft Word to create resumes. The upside is that I can get more creative with my layouts and use more fonts as long as I convert the final file to a PDF. The downside&#8230; I feel like it can get way too crowded and busy for HR heads to look at.</p>
<p>I thought it definitely LOOKED way cooler than my previous resumes, which were restricted to less fancy fonts and ::shudder:: &#8220;tabled&#8221; formats.</p>
<p>I also REALLY liked my last minute inspiration for a &#8220;&lt;/resume&gt;&#8221; tag at the bottom of the page. I had a lot of white space to fill. I initially was thinking of a graphic of some sort that represents me, but I decided that an kind of image would be distracting and just went with a simple text, that being a closing HTML tag noting the &#8220;end&#8221; of my resume.</p>
<p><center><a href="http://www.deviantart.com/download/120357938/My_Resume___Iteration_02_by_jayncoke.png" rel="ibox" title="Second Version"><img src="http://th09.deviantart.com/fs43/150/i/2009/114/2/2/My_Resume___Iteration_02_by_jayncoke.png" border="0" alt="Second Version" /></a><br />Second Version</center></p>
<p>The second version. I changed the font for the blocked text mostly because I thought it was a bit too small and wouldn&#8217;t read well when printed. It would be this version that I started having friends look at to give me their critiques.</p>
<p><center><a href="http://www.deviantart.com/download/120359000/My_Resume___Iteration_03_by_jayncoke.png" rel="ibox" title="Third Version"><img src="http://th08.deviantart.com/fs44/150/i/2009/114/4/b/My_Resume___Iteration_03_by_jayncoke.png" border="0" alt="Third Version" /></a><br />Third Version</center></p>
<p>Started to really flesh out the resume from here. It&#8217;s not aligned properly because I went for another layout as you&#8217;ll see in the next version.</p>
<p>After some critiques from some friends, I followed a format that worked for them on their resumes. That is, their job history divided up under Experience Headings. I thought this was pretty cool since an HR head sees a LOT of resumes and usually have to skim through them in less than 30 seconds. My job history before was listed chronologically, but it was cluttered and a hiring rep wouldn&#8217;t be able to cypher the best details of myself from it.</p>
<p>By using the Experience Headings, I can state 3 of my best attributes that describe me as well as highlight for the hiring rep what they really want to know from a resume.</p>
<p>I had to add 2 more positions to my experience history so I can have a third heading. I had to pretty much pull out my freelance work and school experience, which I think helps since that&#8217;s where most of my programming and developing skills came from.</p>
<p>I decided to take out the bullets and go with blocked texts, mostly because it became a pain to align texts with the bullets and also to save some space.</p>
<p>The References section was also taken out because, really, if an employer needs one, they&#8217;ll just ask for it despite it being said on my resume or not.</p>
<p><center><a href="http://www.deviantart.com/download/120359658/My_Resume___Iteration_04_by_jayncoke.png" rel="ibox" title="Fourth Version"><img src="http://th03.deviantart.com/fs44/150/i/2009/114/9/f/My_Resume___Iteration_04_by_jayncoke.png" border="0" alt="Fourth Version" /></a><br />Fourth Version</center></p>
<p>The current version of my resume that I&#8217;m using.</p>
<p>I tweaked the layout a bit. Instead of dividing it into two columns like before, I went for a more row-like format with sub-columns. That way I could fit in more, such as the Objective.</p>
<p>A lot of the experience summaries got rewritten and cut to give just the gist of it all rather than cluttering the whole thing up.</p>
<p>I took out the gray header background to make the resume more printer friendly. While I like a contrasting background, I think it&#8217;s more practical to make the resume easier to print and read for more technical head hunters.</p>
<p><center><a href="http://www.deviantart.com/download/120361045/My_Resume___Iteration_05_by_jayncoke.png" rel="ibox" title="Fifth Version"><img src="http://th03.deviantart.com/fs42/150/i/2009/114/0/0/My_Resume___Iteration_05_by_jayncoke.png" border="0" alt="Fifth Version" /></a><br />Fifth Version</center></p>
<p>I decided to make a more simple and straightforward version using Word with less fancy fonts and layouts.</p>
<p>It spilled over into a second page, kind of breaking the &#8220;One-Page-Only Resume&#8221; rule. I think that can be forgiven in some exceptions.</p>
<p>I made this mostly because I figured that some hiring managers read resumes on their blackberries or some portable device. Also, by creating it in Word and then converting it into PDF, I&#8217;m able to preserve the actual &#8220;text&#8221; in the file; meaning that the PDF can actually be &#8220;searched&#8221; through (Ctrl-F) for keywords.</p>
<p>Before, on GIMP, I saved it as a Postscript (.ps) file and then converted it to a PDF. Unfortunately, you couldn&#8217;t really distinguish the &#8220;text&#8221; with search mechanisms.</p>
<p>And that&#8217;s what I got. I&#8217;m always looking at my resume to see what it is I could be missing or how I can always improve it. Got any suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2009/05/12/designing-my-resume/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CSS Sprites</title>
		<link>http://www.jasonaniceto.com/2009/05/09/css-sprites/</link>
		<comments>http://www.jasonaniceto.com/2009/05/09/css-sprites/#comments</comments>
		<pubDate>Sat, 09 May 2009 21:10:37 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[sprites]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/?p=134</guid>
		<description><![CDATA[A brief look into the concept of CSS sprites, its origins, and usefulness in web design.]]></description>
			<content:encoded><![CDATA[<style type="text/css">
<!--
#sprite { position: relative; }
#sprite li { padding:0; list-style:none; position:relative; top:0;}
#sprite li, #sprite li a { height:50px; width:50px; display:block; float:left; margin-right:10px;}
li#spritepanelA a { background:url(/wp-content/avatar_spritemap.png); background-position:0px 0px; }
li#spritepanelB a { background:url(/wp-content/avatar_spritemap.png); background-position:170px 0px; }
li#spritepanelA a:hover { background:url(/wp-content/avatar_spritemap.png); background-position:110px 0px; }
li#spritepanelB a:hover { background:url(/wp-content/avatar_spritemap.png); background-position:50px 0px; }
-->
</style>
<p>I remember in the old-school gaming days of SNES and Sega Genesis when graphics were limited to sprites and pixels. 3-D graphics are wonderful, of course, but I do miss the artistic aspects of the old days. I didn&#8217;t know much about the technical jazz behind all that until I read this article by <a href="http://www.smashingmagazine.com/">Smashing Magazine</a>, &#8220;<a href="http://www.smashingmagazine.com/2009/04/27/the-mystery-of-css-sprites-techniques-tools-and-tutorials/">The Mystery of CSS Sprites: Techniques, Tools and Tutorials</a>:&#8221;</p>
<blockquote><p>The term “sprite” (similar to “spirit,” “goblin,” or “elf”) has its origins in computer graphics, in which it described a graphic object blended with a 2-D or 3-D scene through graphics hardware. Because the complexity of video games has continually increased, there was a need for smart techniques that could deal with detailed graphic objects while keeping game-play flowing. One of the techniques developed saw sprites being plugged into a master grid (see the image below), then later pulled out as needed by code that mapped the position of each individual graphic and selectively painted it on the screen.</p>
<p>Sprites were displayed over a static or dynamic background image, and the positioning of the sprite was controlled simply by the hardware controllers. The term was coined because the sprites seemed to “haunt” the display and didn’t really exist in the graphic memory.</p></blockquote>
<p>That&#8217;s pretty cool, and makes a lot of sense. Programmers back then were working with a very limited amount of resources, so having one big sprite map to save memory is pretty ingenious. </p>
<p>The article goes on to state that sprites continue to be used today in web design. It mostly came out of the need for an easier and more efficient alternative to Javascript rollover menus:</p>
<blockquote><p>In 2004, Dave Shea suggested a simple CSS-based approach to CSS sprites based on the practice established by those legendary video games. In this case, multiple images used throughout a website would be combined into the so-called “master image.” To display a single image from the master image, one would use the <strong>background-position</strong> property in CSS, defining the exact position of the image to be displayed. Any hover, active or focus effects would be implemented using the simple definition of the background-position property for the displayed element.</p>
<p>When the page is loaded, it would not load single images one by one (nor hover-state images per request), but would rather <strong>load the whole master image at once</strong>. It may not sound like a significant improvement, but it actually was: the main disadvantage of the onMouse effects is that JavaScript-based hover effects require two HTTP requests for each image, which takes time and creates that unpleasant “flickering” of images. Because the master image is loaded with the whole page only once with CSS sprites, no additional HTTP requests are needed for hover, active or focus effects (because the image is already loaded), and no “flickering” effect occurs.</p>
<p>Consequence: CSS sprites reduce HTTP requests and the loading time of pages. This is the main reason why CSS sprites are often used on websites with heavy traffic, where millions of page impressions would need “only” a tiny fraction of what could otherwise be 30,000,000. Hence, CSS sprites are commonly used, particularly for navigation (such as for hover effects), icons and buttons.</p></blockquote>
<p>This is way easier to implement and saves much overhead on the servers when serving millions and millions of views.</p>
<p>It then shows the sprite maps of some of the big web sites like Amazon, Google, and Apple. It is a very interesting look at the behind-the-scenes tricks of the trade of web design. </p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/apple_spritemap.jpg" alt="apple_spritemap" title="apple_spritemap" width="590" height="152" class="alignnone size-full wp-image-141" /><br />
You can easily see how Apple uses this sprite map for its rollover navigation menu.</center></p>
<p><center><img src="http://www.jasonaniceto.com/wp-content/google_spritemap.png" alt="google_spritemap" title="google_spritemap" width="150" height="105" class="alignnone size-full wp-image-143" /><br />
While Google&#8217;s sprite map may seem small and simplistic; really think about how many times those stars and other graphics are used on the site.</center></p>
<p>Using sprites comes down to using the <span class="css">background-position</span> property of CSS. Instead of explicitly stating an <span class="code">&lt;img&gt;</span> object, you would create a block-level element and its <span class="css">background-image</span> and <span class="css">background-position</span> CSS attributes. I decided to give it a whirl and implement it.</p>
<p><img src="http://www.jasonaniceto.com/wp-content/avatar_spritemap.png" alt="avatar_spritemap" title="avatar_spritemap" width="230" height="50" class="alignnone size-full wp-image-182" /></p>
<p>Nice little spirte map, huh? I pasted together my avatar images into one using <a href="http://www.gimp.org/" rel="external">GIMP</a>. After a couple of hours of fiddling around with the CSS, I came up with this:</p>
<ul id="sprite">
<li id="spritepanelA"><a href="#1"></a></li>
<li id="spritepanelB"><a href="#2"></a></li>
</ul>
<div style="clear:both"></div>
<p>Here&#8217;s the HTML code:</p>
<pre>
&lt;ul id="sprite"&gt;
    &lt;li id="spritepanelA"&gt;&lt;a href="#1"&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;li id="spritepanelB"&gt;&lt;a href="#2"&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>And the CSS:</p>
<pre>
#sprite { position: relative; }
#sprite li { padding:0; list-style:none; position:relative; top:0;}
#sprite li, #sprite li a { height:50px; width:50px; display:block; float:left; margin-right:10px;}
li#spritepanelA a { background:url(/wp-content/avatar_spritemap.png); background-position:0px 0px; }
li#spritepanelB a { background:url(/wp-content/avatar_spritemap.png); background-position:170px 0px; }
li#spritepanelA a:hover { background:url(/wp-content/avatar_spritemap.png); background-position:110px 0px; }
li#spritepanelB a:hover { background:url(/wp-content/avatar_spritemap.png); background-position:50px 0px; }
</pre>
<p>What really confused me was the second panel. I had to reverse the <span class="css">background-position</span> of the regular link and <span class="css">hover</span> aspect. I really couldn&#8217;t figure out why that was happening. Maybe I&#8217;ll discover it later. But in the end I got the effect I was going for. The hover links are all calling the same sprite map, and thus making a call to the server once instead of four times (two for the each link and the two more for each hover image.)</p>
<p>CSS spriting is a great little tool for web designers. It takes a little bit getting used to in order to figure out exact pixel positions on the maps, but in the end you get a way to effectively load pages just that much quicker.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2009/05/09/css-sprites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Banking From A Banker</title>
		<link>http://www.jasonaniceto.com/2008/12/05/banking-from-a-banker/</link>
		<comments>http://www.jasonaniceto.com/2008/12/05/banking-from-a-banker/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 16:56:05 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Money]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[banking]]></category>

		<guid isPermaLink="false">http://www.battlerobo.com/?p=764</guid>
		<description><![CDATA[A long time ago, I had written a note about some banking tips, seeing as how I&#8217;m a banker myself. I totally forgot about it until I had found it while wasting time on the Facebook. It bugs me that I hadn&#8217;t posted it on the blog, but I intend to remedy that now, with [...]]]></description>
			<content:encoded><![CDATA[<p>A long time ago, I had written a note about some banking tips, seeing as how I&#8217;m a banker myself. I totally forgot about it until I had found it while wasting time on the Facebook. It bugs me that I hadn&#8217;t posted it on the blog, but I intend to remedy that now, with a few modifications/additions.</p>
<p><span id="more-764"></span>I&#8217;ve been working in the banking industry for the past six years, and I learned a lot about how to handle my own finances. Seeing many many many customers with overdrawn accounts and hit with countless fees, I feel a little pity for them since they don&#8217;t know how to handle a debit card. And now most of you are in/done with college. As adults, we pretty much have to take care of our own money situations and have checking accounts. While it goes without saying, the basic principle to handling a checking account is to never ever withdraw more than you have in your balance, aka OVERDRAW YOUR ACCOUNT. You will be hit with crazy NSF (Non-Sufficient Funds) and/or Overdrawn fees, which can amount to $35 each, depending on your bank. So keep track of your purchases!</p>
<p>But here are my other little tips that you may or may not know:</p>
<p>CASHING CHECKS<br />
- I always try to cash a check out first and then deposit the cash. Cash will post IMMEDIATELY to your account balance and is there to spend. This also avoids the trouble having a bounced check deposited. This will always generate a fee for you from your bank, even though it wasn&#8217;t your check that was bad. This leads me to&#8230;<br />
- Always try to take the check to the bank it was from (it will always say who on the check) and try to cash it there. Depending on the bank, you shouldn&#8217;t be charged a fee for not being a customer since it is THEIR check. You WILL need two forms of ID. And most banks ask for your thumbprint on the check for fraud protection (aka stolen checks). Doing this also lets you know if the check is bad or not, but due to privacy rules, the bank cannot say that there is no money in the account; they can only usually say &#8220;We can&#8217;t negotiate this check at this time. Please check with whomever wrote you this.&#8221; Now you can go see that poor bum who wrote you that bad $.05 check and punch his face.<br />
- <b>Primary</b> forms of ID that banks will accept: Driver&#8217;s License, Motor Vehicle Administration ID Card, Passport, Military ID.<br />
- <b>Secondary</b> forms of ID that some banks will <i>sometimes</i> accept: Employment ID, Student ID, Credit Card, Bank debit card.<br />
- Forms of ID that banks will <b>NOT</b> accept: Membership IDs (i.e. Sam&#8217;s Club, Blockbuster), Social Security Card, Birth Certificate.<br />
- If it is a form of ID that is acceptable, make sure it has NOT expired! Banks cannot accept expired ID! They don&#8217;t put them on there for nothing!</p>
<p>DIRECT DEPOSIT<br />
- I also have my work direct deposit my paycheck. This means that on payday, they will deposit my pay directly into my account. The money is there immediately for me to use. Therefore, I don&#8217;t have to have a check that I need to go personally and deposit and then wait for it to clear. Direct deposit is the way to go; easy and no hassle.<br />
- Not really a banking tip, but more of a savings one: have a portion of your paycheck direct deposited to your savings or money market. That way you don&#8217;t see the cash in your checking and will be less likely to spend it. SAVE SAVE SAVE!!!!</p>
<p>DEPOSITING CHECKS<br />
- Know when the business date ends. It usually is around 5PM for my bank. Most banks close at that time, but others (like in stores such as Safeway or Giant) will most likely be open until the evening as well as on the weekends. But note this: depositing a check after the business date ends means the check doesn&#8217;t get sent to the processing dept until the next business day. So if you come into a branch and deposit a check on Friday at say 6:30PM (cut off time is at 6 on Fridays at my bank), do not expect it to post over the weekend. The next business day is Monday and it will be sent that afternoon, and clear by Tuesday morning at the <i>earliest</i>.<br />
- Checks <i>usually</i> clear by the next business day. If it is out of state (look on the check), then it will most likely take another 1-2 days. Depositing a check does NOT mean it is good to spend right then and there! Like I said, cash the check and then deposit the cash! It may be more of a hassle to go to the other bank (heck it may be impossible if there aren&#8217;t any branches in your area), but you should try to do it that way if you want to avoid some possible hassles.</p>
<p>ATM<br />
- This should be obvious, but I&#8217;ll post it anyway. When using an ATM, try to use your bank&#8217;s ATM. Using another bank&#8217;s ATM will result in paying a $1-$3 fee per transaction from that bank for using their ATM. And depending on your bank, they might impose a foreign ATM fee on their side as well. Use your own bank&#8217;s ATM and get your cash for free. If there is no ATM around, you can also go to a grocery store, buy something, and use the debit option with cash back. You spend a little bit, but at least you get something and not throw cash away to the bank.</p>
<p>DEBIT CARDS<br />
- Debit cards and ATM cards are two different things!!! Debit cards usually have the Visa logo on them, meaning you can use them to make purchases at merchants that accept Visa cards (in life and online). ATM cards are ONLY for ATM withdrawals! They cannot be used for purchases.<br />
- Using a debit card will automatically authorize the bank to place a hold on those funds in your account. Buying that $5 meal with a debit purchase will mean that a pending $5 will post to your account. So if you had $4 in there, you will most likely be hit with a NSF fee. The only way I usually counteract this is to deposit cash the same day to avoid the fee.<br />
- But really, you shouldn&#8217;t try that. Instead, try to always keep a $100 buffer in your checking. Don&#8217;t risk going in the red. That&#8217;s more of a personal tip than anything.</p>
<p>BRANCH BANKING<br />
- As a bank teller, I can personally say that the mantra that you can &#8220;catch more flies with honey&#8221; works. If you hate dealing with a teller/banker, just be nice and polite and they will be courteous as well. If they aren&#8217;t, always ask for the manager, but always always ALWAYS be firm, polite, and not raise your voice.<br />
- If you get hit with an overdraft fee, talk with the branch that you opened your account at. If not, any branch is fine as well, but the personal relationship with the branch personnel usually helps. If they know you, they are more receptive. Even though you know it is your fault for incurring an overdraft, be polite and ask the bank rep if it is in any way possible to reverse the fee. If this is your first, state that it is and that you will be more careful. Most reps can see how many times you have had your fees reversed, so be honest. If the rep cannot help, again speak with management. Be firm and state that you would appreciate the gesture of a fee refund. <b>Do not abuse this! Meaning do not just overdraft all the time and expect your branch to refund you each time!</b><br />
- The relationship with your bank helps with this instance, so if you can, try to visit your local branch a bit more frequently to make yourself familiar to the staff. As a banker, I love having customers who I know and treat me with respect and care. I always reciprocated that back to them when I could (this means making <i>exceptions</i>!)<br />
- I might go into what these exceptions are, but I predict people reading them and go ahead and abuse/misuse the tip. These exceptions are usually on a case-by-case basis and I&#8217;ll probably grant it to you if: you are polite, have a great relationship with the bank (i.e. long banking history, steady balance, little to no overdrafts). I can&#8217;t/will not grant them to you simply because you have an emergency (too many fraud cases use that excuse, and they&#8217;re total liars! Way to ruin it for the rest of us, jerks!) or I know you personally outside of work.<br />
- Also, if you get a teller trying to recommend you something, please don&#8217;t be mean! This is their job, but they are also looking out for you. We only recommend services that we think you might need. They won&#8217;t pressure you, so if you politely decline, they&#8217;ll of course thank you for your business with a smile and hope to see you again next time.</p>
<p>NSF<br />
- Ah, yes&#8230; the dreaded Non-Sufficient Funds fee. There&#8217;s also a UAF (Unavailable Funds Fee) and Returned Item (you wrote a bad check) fee. But basically I want to cover the NSF fee.<br />
- I get a good amount of people who come to me, crying about how they overdraft their account with some pretty creative excuses. You can tell me all sorts of sob stories, but it all comes down to this: We are only supposed to give fee refunds if it was due to a <b>bank error</b>. You are responsible for your account, and basically you should know how much you have and how much you can spend. It is not our fault you are spending money that isn&#8217;t yours!<br />
- I am not totally heartless. I&#8217;ll grant courtesy refunds, as covered earlier, if you aren&#8217;t a complete jerk and haven&#8217;t had a history of constant NSFs.<br />
- I hear these A LOT: &#8220;The bank shouldn&#8217;t let me overdraft my account! They only let me overdraft my account so they can make money off of me! I got charged $35 for overdrawing my account for $1.05?!&#8221; Yeah, those crack me up. I know you&#8217;re upset. I know you don&#8217;t like being in the negative. But I know that you need to know the rules; we give you the rules and regulations of the account when we open it. Here are my responses to those complaints:<br />
-<i>The bank shouldn&#8217;t let me overdraft my account!</i> I kind of agree with you there. Personally, I think people should know that they have the option to opt out of using overdraft. What? You didn&#8217;t know that? Yeah, we try not to advertise that mostly because yes, we make money off the fees, and that&#8217;s how I get paid! But on the other side of it, I think it helps consumers be more responsible/less whiny if they can select to not be able to overdraft. But I also say this: We cannot tell every time a person is about to go into the overdraft if they are willing to or not. There are times when people will go into overdraft and are willing to pay the fees due to emergencies. Like they really need gas or they really need cash for something, the times where they need the cash and are willing to pay for it rather than face some dire problem where it could get worse without the money. Some simply don&#8217;t want the embarrassment of having their card rejected. If we set it up that no one is allowed to overdraft their account all the time, not only will the bank lose income, but I can see people complaining to us that they really could use the money. I mean essentially, you are using credit that you didn&#8217;t have to apply for (although you do have to pass a background check and a &#8220;soft&#8221; hit on your credit history).<br />
- <i>They only let me overdraft my account so they can make money off of me!</i> Well, duh!  Yes, we make money off of it! But why not? You are essentially using money that&#8217;s not yours, like credit! You have to pay for the service! And I&#8217;m able to still get paid because of it. However, I want to point out that you can usually avoid the large, crazy NSF fees by setting up <b>Overdraft Protection</b>. This means linking your checking account to either a savings or credit card/line of credit. If you should overdraw your checking account, a set amount (usually $100 increments) is transferred from the savings/credit card/line of credit to cover the amount drawn and not put you in the negative. And the fee is usually a lot more reasonable ($10 per transfer at my bank). Of course, you need to make sure you have enough in your savings/credit card/line of credit to cover the drawn amount, but you shouldn&#8217;t be spending more than you have in checking anyway, right? <img src='http://www.jasonaniceto.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
- <i>I got charged $35 for overdrawing my account for $1.05?!</i> Yes. It may seem ridiculous, but again it&#8217;s money that isn&#8217;t yours to spend. Most of the times in these cases I&#8217;ll grant a fee refund, but if you yell at me for stuff like that, you are screwed. That&#8217;s why I suggested the $100 buffer to keep from getting into this problem. And most of the times I see this, they could have been avoided by not spending aimlessly at fast food joints and other such wasteful places. That&#8217;s why you should: BUDGET.</p>
<p>BUDGETING<br />
- I recently got into working within a budget around May this year. This was in part thanks to <a href="http://www.mint.com/" title="Mint">Mint</a>. This is a great free online money management application. I link all my bank accounts, credit cards, loans, and even my 401k to it. If you can access your accounts online, Mint can access them, pull your transactions, and show your financial activity in some very helpful, informative, and comprehensive ways. You can categorize your purchases, and therefore see how much you spend on say Food or Gas each month. There&#8217;s a budget tracker too, to show how much your spending in regards to how much you set aside for that particular budgeted item. I use it all the time and highly, highly recommend it. It has helped me keep track and pay down my debt and I&#8217;ve been able to cut a lot of costs down. I also just love the interface. You can read more about Mint from <a href="http://www.mint.com/product/" title="Mint.com">here</a>.</p>
<p>Now all of these tips don&#8217;t apply to all banks, of course. Different banks have different rules, but these tips have helped me keep in the positive and then some. I&#8217;m only sharing what has worked for me. I&#8217;m not rich, but I do have enough to live contently for a while, stress free. You can too, if you exercise discipline, restraint, patience, and good manners. If you have any banking questions, don&#8217;t hesitate to ask.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2008/12/05/banking-from-a-banker/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Thanks for the free money!</title>
		<link>http://www.jasonaniceto.com/2008/05/02/thanks-for-the-free-money/</link>
		<comments>http://www.jasonaniceto.com/2008/05/02/thanks-for-the-free-money/#comments</comments>
		<pubDate>Fri, 02 May 2008 14:18:48 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Money]]></category>
		<category><![CDATA[Digital Camera]]></category>
		<category><![CDATA[Savings]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/2008/05/02/thanks-for-the-free-money/</guid>
		<description><![CDATA[ 
Cash Money, originally uploaded by vyxle.
Okay, not really free, per se. I just got my Economic Stimulus Payment direct deposited into my account. It&#8217;s nice to get a little padding in my cash flow.
Now what am I going to do with my newfound booty? There are several suggestions out there. I should either pay [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href="/wp-content/404852690_7382e82fca.jpg" class="lightview"> <img src="/wp-content/404852690_7382e82fca-300x225.jpg" alt="" border="0" /></a><br />
<a href="http://www.flickr.com/photos/vyxle/404852690/">Cash Money</a>, originally uploaded by <a href="http://www.flickr.com/people/vyxle/">vyxle</a>.</center></p>
<p>Okay, not really free, per se. I just got my <a href="http://www.irs.gov/irs/article/0,,id=177937,00.html" title="Economic Stimulus Payment">Economic Stimulus Payment</a> direct deposited into my account. It&#8217;s nice to get a little padding in my cash flow.</p>
<p>Now what am I going to do with my newfound booty? There are several <a href="http://consumerist.com/5007336/what-will-you-do-with-your-economic-stimulus-check" title="What will you do with your economic stimulus check?">suggestions</a> out there. I <em>should</em> either pay down some of my current debt or sock it away into my emergency savings funds (which I have slowly been building back up)&#8230; I <strong>really</strong> like the idea to &#8220;invest into career development.&#8221; That could actually be what I really need right now.</p>
<p>But isn&#8217;t the point of getting this cash to spend it? You know, help actually <em>stimulate</em> the economy? Okay. I&#8217;m down with that. What to buy? What to buy? Make a large purchase? Or spend it on a number of random smaller purchases? Food? Gas? Clothes?</p>
<p>Um&#8230; I actually have been wanting to get a new digital camera. Maybe I should do some research first&#8230; but I&#8217;m inclined to get a <a href="http://www.flickr.com/cameras/sony/" title="Sony Cameras">Sony</a> Cyber-shot. I don&#8217;t know why, really&#8230; the Sony brand has just been growing on me, I guess.</p>
<p>Well either way, I&#8217;m glad I have some extra cash!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2008/05/02/thanks-for-the-free-money/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sony XPERIA X1</title>
		<link>http://www.jasonaniceto.com/2008/04/30/sony-xperia-x1/</link>
		<comments>http://www.jasonaniceto.com/2008/04/30/sony-xperia-x1/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 14:47:50 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Gadget]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Sony]]></category>
		<category><![CDATA[X1]]></category>
		<category><![CDATA[XPERIA]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/?p=67</guid>
		<description><![CDATA[ 
I&#8217;ve had my eye on this phone, the Sony XPERIA X1, for over a month now&#8230; To think that over a year ago, I didn&#8217;t think I&#8217;d want all the cool features that I have on my Sidekick 3.
I use my phone a lot. I use it to take pictures when I don&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href="/wp-content/xperia.jpg" title="Sony XPERIA X1" rel="lightbox" style="border:0px; underline:none; float:left"> <img src="/wp-content/xperia-150x150.jpg" border="0" /></a></center></p>
<p>I&#8217;ve had my eye on this phone, the <a href="http://www.sonyericsson.com/x1/?lc=en&#038;cc=SG" title="Sony XPERIA X1">Sony XPERIA X1</a>, for over a month now&#8230; To think that over a year ago, I didn&#8217;t think I&#8217;d want all the <a href="http://www.sonyericsson.com/cws/products/mobilephones/overview/x1?lc=en&#038;cc=SG" title="Sony XPERIA X1 Features">cool features</a> that I have on my <a href="http://www.sidekick.com/" title="Sidekick">Sidekick 3</a>.</p>
<p>I use my phone a lot. I use it to take pictures when I don&#8217;t have my digital camera. I use it to browse the Internet (that in itself provides cumulative hours of distraction by checking e-mail, Facebook, news, and Flickr). I used to use it constantly for instant messaging, but I&#8217;ve recently cut back on that to put my time to more productive use. I use it to listen to my mp3s all the time. I use it to hold plenty of notes and information that I need on the fly (contacts, dates, wireless network keys, urls, personal information, etc). Yep&#8230; my phone is more of a mobile device than it is a phone.</p>
<p>I had thought about getting an <a href="http://www.apple.com/iphone/" title="Iphone">Iphone</a>&#8230; but I&#8217;ve been really reluctant to get it. It looks really nice, but I think what kept me from buying one was its lack of a QWERTY keyboard. I need that thing. Bad. I am not a single-handed texter. And I have no intention of becoming one. The touch interface keyboard on the Iphone looks nice, but I prefer the physical one.</p>
<p>The XPERIA X1 has a QWERTY keyboard&#8230; PLUS a touch UI. I would love to have that. And it runs on Windows Mobile. Not too sure if that&#8217;s a good thing or not since I haven&#8217;t had much experience with it&#8230; but I&#8217;m sure that I&#8217;ll have way more capabilities with that than my Sidekick (like getting my e-mail directly via POP rather than having it forward to my T-mobile account). And it has a sort of &#8216;flip&#8217; on it to reveal the keyboard, which is more of a personal preference than anything. So yeah&#8230; I&#8217;m really excited about this phone, er, mobile device.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2008/04/30/sony-xperia-x1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Poetic Prophet &#8211; Design Coding</title>
		<link>http://www.jasonaniceto.com/2008/04/21/the-poetic-prophet-design-coding/</link>
		<comments>http://www.jasonaniceto.com/2008/04/21/the-poetic-prophet-design-coding/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 19:50:44 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Design Coding]]></category>
		<category><![CDATA[Poetic Prophet]]></category>
		<category><![CDATA[Rap]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.jasonaniceto.com/?p=48</guid>
		<description><![CDATA[Hehehe, this is such a great video&#8230; at least for web designers and coders like me.    
Lyrics:
Your site design is the first thing people see
it should be reflective of you and the industry
easy to look at with a nice navigation
when you can&#8217;t find what you want it causes frustration
a clear Call to [...]]]></description>
			<content:encoded><![CDATA[<p><center><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/a0qMe7Z3EYg&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/a0qMe7Z3EYg&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></center></p>
<p>Hehehe, this is such a great video&#8230; at least for web designers and coders like me.  <img src='http://www.jasonaniceto.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' />  </p>
<p><span id="more-604"></span>Lyrics:</p>
<p>Your site design is the first thing people see<br />
it should be reflective of you and the industry<br />
easy to look at with a nice navigation<br />
when you can&#8217;t find what you want it causes frustration<br />
a clear Call to action to increase the temptation<br />
use appealing graphics they create motivation<br />
if you have animation<br />
use with moderation<br />
cause search engines can&#8217;t index the information<br />
display the logos of all your associations<br />
highlight your contact info that&#8217;s an obligation<br />
create a clean design you can use some decoration<br />
but to try to prevent any client hesitation<br />
every page that they click should provide and explanation<br />
should be easy to understand like having a conversation<br />
when you design the style go ahead and use your imagination<br />
but make sure you use correct color combinations<br />
do some investigation, look at other organizations<br />
but don&#8217;t duplicate or you might face a litigation<br />
design done, congratulations but it&#8217;s time to start construction<br />
follow these instructions when you move into production<br />
your photoshop functions then slice that design<br />
do your layout with divs make sure that it&#8217;s aligned<br />
please don&#8217;t use tables even though they work fine<br />
when it come to indexing they give searches a hard time<br />
make it easy for the spiders to crawl what you provide<br />
remove font type, font color and font size<br />
no background colors, keep your coding real neat,<br />
tag your look and feel on a separate style sheet<br />
better results with xml and css<br />
now you making progress, a lil closer to success<br />
describe your doctype so the browser can relate<br />
make sure you do it great or it won&#8217;t validate<br />
check in all browsers, I do it directly<br />
gotta make sure that it renders correctly<br />
some use IE, some others use Flock<br />
some use AOL, I use Firefox<br />
title everything including links and images<br />
don&#8217;t use italics, use emphasis<br />
don&#8217;t use bold, please use strong<br />
if you use bold that&#8217;s old and wrong<br />
when you use CSS, you page will load quicker<br />
client satisfied like they eating on a snicker<br />
they stuck on your page like you made it with a sticker<br />
and then they convert now that&#8217;s the real kicker<br />
make you a lil richer, your site a lil slicker<br />
design and code right man I hope you get the picture<br />
what I&#8217;m telling you is true man it should be a scripture<br />
if it&#8217;s built right you&#8217;ll be the pick of the litter<br />
everyone will want to follow you like twitter<br />
competition will get bitter and you&#8217;ll shine like glitter<br />
if you trying to grow your company will get bigger<br />
design and code right man can you get with it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonaniceto.com/2008/04/21/the-poetic-prophet-design-coding/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
