<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>d3vious.com The Blog of Brandon Green</title>
<description>d3vious.com is the personal blog and life of Brandon Green.</description>
<link>http://www.d3vious.com</link>
<copyright>(C) Copyright d3vious.com</copyright>

<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/d3vious" type="application/rss+xml" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>CSS Navigation Rollovers</title>
		<description><![CDATA[<p>Ever wonder how some people have those flawless navigations that catch your attention? They are quick to load, the rollovers aren&rsquo;t glitchy, and no javascript is used. Wait, no javascript is used? What?! That&rsquo;s right, this is accomplishable in a very easy and painless way. This way is by using the power of CSS!</p><p>&nbsp;</p>The Basics<p>First off before any CSS is implemented, we must first figure out how to &lsquo;create&rsquo; the navigation images. At first it&rsquo;s going to sound weird, but there is a purpose for this madness! The examples I&rsquo;m going to use will be from this blog to make this simple. First off, you want to create the navigation button. Your going to put the &lsquo;regular&rsquo; button look on the left, and then duplicate it and place a copy of it exactly to the right of the regular button. Do whatever you want to the button on the right hand side because this is going to be your &lsquo;rollover&rsquo; button. That&rsquo;s right, we&rsquo;ve made this regular, and rollover navigation button out of 1 image! Here is an example of my homepage regular/rollover button. Keep in mind the width of the full button, because later on we&rsquo;ll need to know that for the CSS. &nbsp;This will basically make loading times negligible and it will act as if it is a javascript branded rollover button. Still wondering how we are going to accomplish this? Here comes the CSS part.</p><p>&nbsp;</p>The CSS<p>The CSS is actually quite basic here. First ill show the CSS, and then I will show how it works inside the XHTML code of the buttons. I&rsquo;m sure there are a ton of ways to implement this next task I am about to show, but after you are familiar with it spice it up some and make it however you need. Ok, so you will need a little bit of CSS knowledge to understand this. What I do is create classes for my &ldquo;a-href&rdquo; tags. That way I can create a navigation button link and slap that class on it so it knows what to do. So as using my example above with the homepage, here is the CSS that is used to accomplish it. Ill break down each line so we know what its doing.</p><p>a.nav-homepage {&nbsp;&nbsp;&nbsp; float: left;&nbsp;&nbsp;&nbsp; width: 72px;&nbsp;&nbsp;&nbsp; height: 43px;&nbsp;&nbsp;&nbsp; background: url(&#39;../images/nav-home.jpg&#39;) no-repeat;&nbsp;&nbsp;&nbsp; text-decoration: none;&nbsp;&nbsp;&nbsp; margin-right: 20px;}a:hover.nav-homepage { background-position: -72px 0; text-decoration: none; }</p><p>&nbsp;</p>a.nav-homepage --<p><strong>Float: left;</strong><em>// This is just used to fit into my navigation layout. Not really needed to make this technique work.</em></p><p><strong>Width: 72px;</strong><em>// This is important. The width is going to be HALF of actual button. So as we can see the full button is 144px. This means it will start out only showing the first 72px of the image. ( the left side )</em></p><p><strong>Height: 43px;</strong><em>// Nothing tricky about this. Just the height of the button your using.</em></p><p><strong>Background: url(&lsquo;../images/nav-home.jpg&rsquo;) no-repeat;</strong><em>// This is just the link to where the FULL background image Is located. Nothing tricky here either. It must have the &ldquo;no-repeat&rdquo; attribute though. That is important because we don&rsquo;t want to see multiple nav images floating around!</em></p><p><strong>Text-decoration: none;</strong><em>// This is another attribute you don&rsquo;t REALLY need. More so just to fit my css/layout styles.</em></p><p><strong>Margin-right: 20px;</strong>&nbsp;&nbsp;&nbsp;<em> // Again, not important. You don&rsquo;t need this for the technique to work.</em></p>a:hover.nav-homepage &ndash;<p><em>// And this is where the magic starts! When the image is HOVERED over (a:hover), then do this set of instructions!</em></p><p><strong>Background-position: -72px 0;</strong><em>// So when its hovered, this move the image to the left 72 px! This does exactly what you think &ndash; shows the &ldquo;rolled&rdquo; over image that you created earlier. So in theory, it is basically &lsquo;shifting&rsquo; the image to the right and left when its hovered over and left alone.</em></p><p><strong>Text-decoration: none;</strong><em>// Lastly, this may or may not be needed in your design to make it work. Most likely not, but once your familiar with this CSS, play with it and see what you get!</em></p>The XHTML<p>So you&rsquo;ve got your CSS all laid out and ready to implement the XHTML side of it? Good, because this is the easiest part. I usually place my navigations in whats called &lsquo;unordered&rsquo; lists tags. So basically all you must do is this.</p><p>&nbsp;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;/&quot; class=&quot;nav-homepage&quot;&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</p><p>Just fill in the link that you want the button to go to and voila! The part in red, &lsquo;nav-homepage&rsquo; is essential, otherwise nothing will work. You must set class=&rdquo;your button classes&rdquo;, whatever they may be. Feel free to make as many as you need. Just duplicate the CSS code, make your images, and then add the XHTML code. This is exactly how I do it with all of my navigation buttons above. Please feel free to contact me with any questions/comments regarding this topic and I will be glad to give my help/feedback.</p><p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/9">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/9</link>
		<guid>http://www.d3vious.com/archives/9</guid>
		<pubDate>Mon, 25 May 2009 0:00:00 EST</pubDate>
	</item> 
	
<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<item>
		<title>Javascript Click to Select All</title>
		<description><![CDATA[<p>Well, I was doing some work this morning on displaying the URL to certain items. This of course was to make things more user friendly for people who wanted to paste the url elsewhere within the site. Well instead of just the usual boring &quot;<em>displaying</em>&quot; the url as plain text, I figured I&#39;d kick it up a notch and do some form/javascript stuff to make it a little bit easier for those lazy users. ;)</p>The Code <p>Well, first off, I did not write this code from scratch. This code was hard to find and edit, so therefore that is why I am posting it here so may be other people will not have trouble finding it. Again, this code allows the user to &quot;<em>click</em>&quot; on the form element and it &quot;<em>highlights all</em>&quot; of the text. This allows for easy copy and pasting! </p><p>This javascript goes at the top, preferably inside the tags. Although this javascript code can be placed pretty much anywhere in the code. It must go before the form field you are trying to use it with though. (Common sense tells us this) </p>function select_all(field){     field.focus();     field.select();} <p>&nbsp;</p><p>Then, for each form field that you want to &quot;select all&quot; when you click on it, just add this attribute to the form field:</p><p>&nbsp;</p>onClick=&#39;select_all(this);&#39;Examplefunction select_all(field){     field.focus();     field.select();}&lt;input type=&quot;Text&quot; name=&quot;Test&quot; value=&quot;I&#39;m going to get selected!&quot; onClick=&#39;select_all(this);&#39;&gt;Closing Remarks <p>Thats pretty much it. If anyone has any problems with getting this to work, i&#39;ll be more than happy to help. Any questions or comments, let me know and ill address them.</p><p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/8">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/8</link>
		<guid>http://www.d3vious.com/archives/8</guid>
		<pubDate>Thu, 27 Nov 2008 23:00:00 EST</pubDate>
	</item> 
	
<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<item>
		<title>Stupid Blog Bots! And A PHP Script.</title>
		<description><![CDATA[<p>This post really has no central issue but I have been doing a few things the past few days to help upgrade d3vious a little bit and make it better.</p>Spam Robots! <p>Well for starters, I always check my comments to see who is around and about my blog and commenting and one day I saw 18 comments on my first blog post. Well at first I was thinking, &quot;WOW did everyone just read that or what am I missing here&quot;. So all excited, I went to go read them and quickly got sad. What is the reason for this you ask?!? Well besides the 2 or 3 faithful and true comments, there were about 15-16 blog robot comments! Well this pissed me off and because it has happened before but not in this much bulk (last time was like 2 or 3 comments). So what I decided to do about this was add a field to the comments form that asks the user if they are a robot or not. As long as the user inputs &quot;no&quot; &quot;No&quot; or &quot;NO&quot; then there comment will be posted. Anything otherwise, and it will not post the comment. This is sort of a pain in the butt and im sorry, but this is my attempt to stop blog robot spam. HA</p>Simple PHP Pay Calculator Script<p>Today I was bored, and was looking at past paychecks from my jobs that I have had in the past years. I was trying to calculate what tax was taken from each and how they differed. Well in doing this I decided to make my own small, and simple script to decide the amount you will get paid, incase you want to know before your pay stub comes in, or before you check your accounts. This script is more based on MY job, and therefore I didn&#39;t make it very modular for other taxes that may be used that I don&#39;t know about. It is just a simple script that takes hours worked and hourly rate, and decides what your pay will be depending on the taxes you place on it. Once again this script is geared towards Me and my current work situation and is open for anyone to take and use for their own use. </p><p>Here is the script.</p>&lt;?php// Pay Calculator.// By: Brandon Greenif(isset($_POST[&#39;submit&#39;])){    $hours = $_POST[&#39;hours&#39;];    $rate = $_POST[&#39;rate&#39;];    (isset($_POST[&#39;federal&#39;])) ? $federal = $_POST[&#39;federal&#39;] : $federal = NULL;    (isset($_POST[&#39;ssEmployee&#39;])) ? $ssEmployee = $_POST[&#39;ssEmployee&#39;] : $ssEmployee = NULL;    (isset($_POST[&#39;medicare&#39;])) ? $medicare = $_POST[&#39;medicare&#39;] : $medicare = NULL;    (isset($_POST[&#39;mdTax&#39;])) ? $mdTax = $_POST[&#39;mdTax&#39;] : $mdTax = NULL;        if(empty($hours) || empty($rate))    {        echo &quot;&lt;font color=\\&quot;red\\&quot;&gt;Fill out all Text fields. &lt;a href=\\&quot;javascript:history.go(-1)\\&quot;&gt;[GO BACK]&lt;/a&gt;&lt;/font&gt;&quot;;    }    elseif(!(is_numeric($hours)))    {        echo &quot;&lt;font color=\\&quot;red\\&quot;&gt;Hours must be numeric. &lt;a href=\\&quot;javascript:history.go(-1)\\&quot;&gt;[GO BACK]&lt;/a&gt;&lt;/font&gt;&quot;;    }    elseif(!(is_numeric($rate)))    {        echo &quot;&lt;font color=\\&quot;red\\&quot;&gt;Rate must be numeric. &lt;a href=\\&quot;javascript:history.go(-1)\\&quot;&gt;[GO BACK]&lt;/a&gt;&lt;/font&gt;&quot;;    }    else    {        // It seems nothing has gone wrong, so lets calculate this pay period.                // First Calculate (hours * rate) to get our gross pay.                $grossPay = $hours * $rate;                // Federal was selected, take 10%        ($federal != NULL) ? $federalPay = $grossPay * $federal : $federalPay = 0;                // Social Security Employee was selected, take 6.2%        ($ssEmployee != NULL) ? $ssEmployeePay = $grossPay * $ssEmployee : $ssEmplyeePay = 0;                // Medicare Employee was selected, take 1.45%        ($medicare != NULL) ? $medicarePay = $grossPay * $medicare : $medicarePay = 0;                // MD Income Tax was selected, take 4.1%        ($mdTax != NULL) ? $mdTaxPay = $grossPay * $mdTax : $mdTaxPay = 0;                $finalSubtractions = $federalPay + $ssEmployeePay + $medicarePay + $mdTaxPay;                $finalPay = $grossPay - $finalSubtractions;                echo &quot;&lt;p&gt;Your gross pay without taxes is &lt;i&gt;$&quot; . $grossPay . &quot;&lt;/i&gt;&lt;/p&gt;&quot;;                if($federal != NULL || $ssEmployee != NULL || $medicare != NULL || $mdTax != NULL)            echo &quot;&lt;p&gt;Your pay, after taxes that you selected, will be approximately: &lt;b&gt;$&quot; . number_format($finalPay, 2, &#39;.&#39;, &#39;&#39;) . &quot;&lt;/b&gt;&lt;/p&gt;&quot;;                    echo &quot;&lt;p&gt;&lt;a href=\\&quot;payCalc.php\\&quot;&gt;Again?&lt;/a&gt;&lt;/p&gt;&quot;;    }}else{?&gt;&lt;form action=&quot;payCalc.php&quot; method=&quot;post&quot;&gt;       Hours Worked: &lt;input type=&quot;text&quot; name=&quot;hours&quot; size=&quot;20&quot; /&gt;&lt;br /&gt;       Rate Per Hour:  &lt;input type=&quot;text&quot; name=&quot;rate&quot; size=&quot;20&quot; /&gt;&lt;br /&gt;       &lt;input type=&quot;checkbox&quot; name=&quot;federal&quot; value=&quot;.10&quot;/&gt; Federal Withholding (10%)&lt;br /&gt;       &lt;input type=&quot;checkbox&quot; name=&quot;ssEmployee&quot; value=&quot;.062&quot;/&gt; Social Security Employee (6.2%)&lt;br /&gt;       &lt;input type=&quot;checkbox&quot; name=&quot;medicare&quot; value=&quot;.0145&quot;/&gt; Medicare Employee (1.45%)&lt;br /&gt;       &lt;input type=&quot;checkbox&quot; name=&quot;mdTax&quot; value=&quot;.041&quot;/&gt; MD - Income Tax (4.1%)&lt;br /&gt;       &lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Calculate&quot; /&gt;&lt;/form&gt;&lt;?php}?&gt;<p>Im sure there are plenty of shortcuts which could be used to program this and make it more efficient but this is just something i did on the spur of the moment. This is nothing drastic or special but just something I thought I&#39;d share with everyone else! </p><p>Go test it out by clicking <a href=\"http://www.d3vious.com/payCalc.php\">here</a>! Any comments or suggestions let me know. </p><p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/7">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/7</link>
		<guid>http://www.d3vious.com/archives/7</guid>
		<pubDate>Fri, 07 Nov 2008 23:00:00 EST</pubDate>
	</item> 
	
<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<item>
		<title>An Obamanation?</title>
		<description><![CDATA[<p>Well, as everyone knows Senator Obama is now elected president by the people of the United States. Through our electoral college system, Democract Barack Obama won 349 electoral votes, while Republican John McCain won 147 electoral votes. There have been other resounding victories similar to this in our pastime, for example Franklin Delano Roosevelt over Alf Landon in 1936, 523 to 8 votes or Woodrow Wilson over Roosevelt and William Taft in 1912, 435-96. (Source: The Associated Press) Either way, this is not something new as we have seen in our past.</p>Yee-Haa (Gallop!) <p>In the days leading up to the election there were so called &quot;gallop&quot; polls that stated the current election status of each candidate for example Obama 53% to McCain&#39;s 47%. These polls are clearly just a spark to give the press and American citizens something to gossip about and go by. In my opinion we could do without these polls but the press needs something to feed off of right? My reason for this is these polls may not be accurate at all. For example when you get the call at home and they ask you who you are going to vote for, some people that aren&#39;t even going to vote may say Obama or McCain just to get the gallop polls to stop calling. On the contrary people who just don&#39;t feel like dealing with them, but still are going to vote, may just hang up. Either way, in my opinion, gallop polls are no good and just an extra way to &quot;get the crowd going&quot;.</p>Early Voting <p>Another issue that every citizen got to vote for was being able to vote early. As early as too weeks. This issue seems to be a great alternative to those who may not be able to attend their polling place that certain day (due to vacation, business, etc). The idea of being able to vote early could potentially grab many more voters and increase the chances of people voting. Voting two weeks ahead of time could also drag things out and make the process more complicated. This means there is more time to lose voting data or more time for error to take place in that two week span. Either way, its up to the voters to decide this one so i&#39;ll leave it at that.</p>Biased May Be? <p>As for this subject I am sort of concerned that this election was racially determined. Yes Obama is a great speaker, very charismatic, and seems to have all the answers to everyones solutions. We all know he can&#39;t make everyone happy and people will disagree with some things he does but this is normal. But the fact that over two million black voters voted for the first time in this election, 95% of which voted for Obama is a little odd. (Source: CNN News) Call me crazy and may be it is just a coincidence but why did this all of the sudden happen? Did these black voters vote for Obama just to &quot;make history&quot; by putting a black man in the whitehouse? Do they even know his policies or what he wants to do? These questions are out there but I myself am just curious. I am not saying that blacks didn&#39;t vote for McCain, (he did get 5% of black votes), but it just seems a little racially biased and that people may be voting for the wrong reasons.</p>Wrap-Up<p>Well, I think i&#39;ve laid out some things I had liked to address. Just to set things straight, I am not a racist, nor do I intend anything I said to be racist. I just hope that we have elected the right guy for the right reasons. I guess we&#39;ll see how much change we will be getting within the next 4 years at least. For now, thats it for me!</p><p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/6">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/6</link>
		<guid>http://www.d3vious.com/archives/6</guid>
		<pubDate>Tue, 04 Nov 2008 23:00:00 EST</pubDate>
	</item> 
	
<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<item>
		<title>RIM Blackberry Storm...Brilliant or Bust?</title>
		<description><![CDATA[<p>Well, I know the first thing that comes to mind (especially for you iPhone fanatics) is &quot;oohh a blackberry, EWW&quot; or as some say &quot;crackberries&quot;. Well, I have to agree to an extent, but this is only because most are comparing it to the iPhone itself. In reality, what can step up to the plate against the iPhone... Not really any phone at all. At least so far. Anyway so lets examine the positives and negatives that I have been able to uncover so far for this new Verizon capabale touch screen. Oh, and by the way, this phone is supposedly the first ever touch screen blackberry and is expected to be released somewhere in November of this year (08). Verizon slaves lets unite and keep our fingers crossed on this one... </p>Specifics<p>Before i get started on the intricate details of this phone I want to first say I got most of my information from <a href=\"http://www.phonearena.com\" title=\"Phone Arena!\">PhoneArena</a>. They are up to date with the newest phones for every provider out there. Should check them out if your into up to date details on phones.&nbsp; Anyways, so this phone sports a 3.2&quot; display screen, 3.2MP camera, html browser, etc. It is .5&quot; in thickness and can operate on both Verizon and GSM networks. This phone also supports just about all the bells and whistles except for wifi. This is disappointing to me but in reality if i really needed it I would just use the 3G capability and get a data plan. Although we are talking about verizon here...ugh.&nbsp;</p> <p>Ever been driving in unknown territory and completely miss a turn? It is frustrating because now you are off course and have not a clue how to get back on route. The iPhone sports a GPS which is ever life saving. (Friend of mine helps me with his all the time) Well fear not anymore, for this phone has GPS too! May be I won&#39;t need to borrow my friends iPhone anymore or depend on him being there. May be I will? Not much has been said about the GPS on this phone, but assuming anything, it most likely rivals the iPhone best as it can. This of course, may be wishful thinking... But wishful thinkin never hurt anyone did it? </p>Verizon Kills<p>First off I would like to thank whoever took this picture, and whoever wrote this on their vehicle. I give all rights to them and this picture. I am just advertising it more as it should be because this is the way most all verizon customers who give a crap think. The picture states &quot;Verizon Sucks. Can You Hear Me Now?&quot;. I could rant about Verizon all day long with things I don&#39;t like, but in the readers interest i&#39;ll leave it at that. </p><p>Well we all know that Verizon is very good at taking great phones and distorting them and making them a little better than crap. Is the trend going to continue? Are they going to strip this phone down to its boxers and socks? Lets hope they at least let it keep its dignity and hold a few good features. After all, it seems Verizon doesn&#39;t like giving customers what they want, and that is why the rejected the iPhone in the first place right? (I understand there were other reasons, lol) </p>Is it a killer?<p>So, is this phone potentially an iPhone killer?? It&#39;s specs might match up but does it have the capability? I mean, it does bear the infamous &quot;blackberry&quot; trademark that doesn&#39;t get much love, but can it pull out of slavery and start a revolution? Ok, that was a little history oriented and im sorry. This is a vast topic and I could expand more and more but for now ill leave things as they are. As a Verizon customer I am looking into getting this phone so any serious opinions on it would be nice. Until next time, thats all for me, Brandon out. </p><p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/5">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/5</link>
		<guid>http://www.d3vious.com/archives/5</guid>
		<pubDate>Sat, 11 Oct 2008 23:00:00 EST</pubDate>
	</item> 
	
<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<item>
		<title>COLD Blooded?</title>
		<description><![CDATA[<p>It&#39;s been almost a month since I last posted anything and I have good reason! This past month has been hectic and a change to me. All summer I was either outside helping work around the house, or inside working on <a href=\"http://www.x3no.net\" title=\"x3no Studios\">x3no</a> and other various web design projects. Now that college has started back up, I&#39;ve been trying to get back into the swing of things there and stay on top of my homework. So far so good.</p><p></p>Are you COLD?<p>Well to add to the change of things recently, I acquired a part time job at a Software Company called <a href=\"http://www.nsite.info\" title=\"Nsite LLC!\">Nsite, LLC</a>. At this company I have learned many new things and had to change my current programming habits. For the most part I do PHP/MySQL development for my projects and sites that I&#39;ve made. The simple reason is because its free, and easy to implement onto servers (most servers come with it already installed). Having said that, I had to completely change every habit of web development that I was accustomed to (not a bad thing), and jump into the ColdFusion/SQL array of development for Nsite. Learning the language of ColdFusion wasn&#39;t really the challenge, but instead understanding the process of pushing into development and editing code that someone else has written. I am continuously learning more and more about ColdFusion development and how vast and deep it can ultimately be. There is much to be learned so therefore expect some of my future blog posts to be ColdFusion/SQL related as I will be wanting to discuss it more and more. </p>Adobe Users<p>Upon joining Nsite, I was also welcomed into the Adobe <a href=\"http://esmug.zoobiesoft.com/\" title=\"Adobe User Group!\">Eastern Shore of Maryland Users Group</a> where they hold one meeting every month to showcase new Adobe software and any questions you may have about them. The first night I came I received tons of cool free stuff so thats an incentive to join us right there! The user group is always looking for more members, which means Adobe will give more free stuff! So come join us at the next user group meeting Friday, September 26, 2008 at 7 p.m. at the ZoobieSoft Office. Scheduled speaker is Yancy Wharton, Owner of <a href=\"http://www.zoobiesoft.com\" title=\"ZoobieSoft!\">ZoobieSoft</a>. Currently the location is being discussed and may be moved to the Salisbury University College in the near future. More details about that to come later. If you have more questions about the User Group email me, or go to the <a href=\"http://esmug.zoobiesoft.com/\" title=\"Adobe User Group!\">website</a>!</p><p></p>College<p>Well, college has started back up full-time for me and I am taking 16 credits this semester so I will try my best to keep blog posts frequent, even if they may be short. If anyone has expertise in Philosophy, or World Literature feel free to contact me or find me on <a href=\"http://www.twitter.com/brandongreen\" title=\"Follow me on Twitter\">twitter</a> because most likely I will have questions regarding these topics in the near future. Well I believe thats all for me so any questions or comments you know how to <a href=\"http://www.d3vious.com/contact\" title=\"Contact Me!\">get in touch</a>! </p><p>&nbsp;</p> <p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/4">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/4</link>
		<guid>http://www.d3vious.com/archives/4</guid>
		<pubDate>Fri, 05 Sep 2008 23:00:00 EST</pubDate>
	</item> 
	
<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<item>
		<title>iPod Touch Ups and Downs</title>
		<description><![CDATA[<p></p><p>Well, recently i bought an iPod Touch 16 GB off of eBay for a fairly good price even though it was refurbished. I have since then had mixed thoughts about the iPod Touch (or as it is also called the iTouch). It has its up&#39;s and down&#39;s (mostly up&#39;s). Where to begin.. We&#39;ll start with the good aspects of this genious Mp3 design.</p>Some Background<p>I&#39;m sure everyone has seen and heard the hype about the iPhone and all that it is doing. Well I have verizon and they denied apple&#39;s iphone (which thoroughly pisses me off) so i&#39;m stuck with getting the 2nd best thing which is the iTouch. The iTouch, like the iPhone, has pretty much the same interface but there are a few functionality differences. They should be obvious but the iTouch can&#39;t call or take pictures. There may be more but that is basically the only big differences i&#39;ve noticed. Being as i dont have an iPhone, that is all just from research.&nbsp; </p>The Design<p>The iPod touch design is pure genious with the all touch screen commands and the easy access on/off and standby buttons. When you first turn on your iTouch, the apps seem to be the perfect size for most fingers, not to small, not to large and make the touch screen as easy as ever. Once you touch an app, it glides onto the screen and now you&#39;ve got new commands to tap, or if all else fails just press the friendly home button (which is not touch sensored) and it will take u back to the home screen. The fact that the touch screen is so very user friendly makes it the best touch screen mp3 player out there. With all the extra goodies that are yet to come, this touch wont be going anywhere soon.</p>Apps Anyone?<p> </p><p>This may be the deciding feature that sets the iTouch apart from any other mp3. It sort of puts it on its &#39;own level&#39; if you will. The fact that you can open up an internet browser on the iTouch and browse google for that certain answer that has been bugging you is just amazing. As long as your near a wireless router you can pick up a connection to the internet. Other handy apps including stocks, email, weather, maps, etc all add up to make this PDA like mp3 player one phenomenal investment. To top all of that, if you upgrade to the latest version (2.0.x), you will get another add-on called the &quot;app store&quot; where you can buy or even download for free some of your favorite apps! The possibilites are endless and that&#39;s why Apple is on top. </p>But...Wait..<p>Now that we have gone through some of the good things about the iTouch, lets touch on some of the not so good things about it. For starters, and the most annoying problem is its connection to itunes from your computer. On a good day, it will let users upgrade and restore, but other times it will continually give certain errors saying &quot;Unable to restore error code (1604) &quot; yadda yadda. Apple NEEDS to fix this. I understand mine is refurbished and could have a potential problem but this same error is happening to many new iTouch&#39;s also. That is the biggest problem i have had with my iTouch is just getting it to update/restore when needs be. Another smaller and yet personal problem is when i&#39;m typing on the keypad that is offered, sometimes I hit the wrong letters only because the keys are sort of small. I realize if you turn the iTouch sideways the keys get bigger, but its still a small problem that happens. </p>iPod Touch Recieves an A?<p>Well all in all, the iTouch is an amazing mp3/wifi player and I would 100% recommend it to anyone who was in the market for a new mp3 player. Apple still has a few kinks to work out which is equally the same for every company but once those kinks are worked out, Apple will have nothing stopping them from taking over the cell phone market (with the iPhone), the mp3 player market (with the iTouch), and the computer market (with the MacBook&#39;s and Apple Desktops). Some can argue that this has already been done but Apple still has a ways to go before they are king of the market. So yea, the iTouch recieves an A from me. </p><p>&nbsp;</p><p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/3">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/3</link>
		<guid>http://www.d3vious.com/archives/3</guid>
		<pubDate>Mon, 11 Aug 2008 23:00:00 EST</pubDate>
	</item> 
	
<br />
<b>Warning</b>:  mysql_fetch_array(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>22</b><br />
<br />
<b>Warning</b>:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in <b>/home/d3vious/public_html/rss.php</b> on line <b>25</b><br />
	<item>
		<title>New Blogger In Town</title>
		<description><![CDATA[ <p>Recently my nephew and I started a web-design company (<a href=\"http://www.x3no.net\" target=\"_blank\">x3no</a>) to grab clients who needed a web site and to get our expertise on web design known on the eastern shore. We started designing sites years ago, but never really put the practice into action. To get a little idea of things here is a timeline I put together in umm, 15 seconds.. haha </p><p>Year 1: Beginning of Design, The Age of FrontPageYear 1.5: HTML Table Layouts, FrontPage 2003 Is like GoldYear 2: CSS Emerges, Revolution in DesignYear 2.5: CSS div based layouts, Mark of a New Standard in DesignYear 3: CSS is Widely understood, d3vious Blog Appears! </p><p><em>Side-note: Yet through all of this Internet Explorer has yet to adapt or change to meet standards. HA</em></p>Big Baby<p>   Things have come a long way from being breastfed by FrontPage, to now coding and programming CSS like it&rsquo;s a habit. Either way things are in the right direction and standards are becoming increasingly important. Anyway that topic is for another day, but if you want to learn more about me or my company visit the <a href=\"../../about\">about</a> page and indulge yourself!  </p>Why Blog?<p>  Because everyone blogs! Nah, but I am blogging because I believe that there are many subjects on programming and design languages that need exploring and I want to hear other&rsquo;s opinions. A wider range of subjects will be discussed as I go back to college and get deeper into my computer science major. For now, the blog posts will mainly consist of web design, development, and things internet related.   </p>Feedback<p>  There are many ways to get involved with my posts. Leave me comments, tell me what you think, subscribe to my <a href=\"http://feeds.feedburner.com/d3vious\">RSS feed</a> , even email me on the <a href=\"../../contact\">contact</a> page if you would like to discuss something. If you disagree with something or think something should be changed, let me know and we can talk about it! Any type of feedback is welcomed and encouraged!</p><p>&nbsp;</p><p>&nbsp;</p>...<a href="http://www.d3vious.com/archives/2">read more</a>]]></description>
		<link>http://www.d3vious.com/archives/2</link>
		<guid>http://www.d3vious.com/archives/2</guid>
		<pubDate>Thu, 24 Jul 2008 23:00:00 EST</pubDate>
	</item> 
	
  

</channel>
</rss>
