<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.3" -->
<rss version="2.0">
	<channel>
		<title>Blog Entries</title>
		<description>Blog Entries</description>
		<link>http://blog.codecall.net</link>
		<lastBuildDate>Wed, 20 Aug 2008 12:58:17 +0100</lastBuildDate>
        <generator>FeedCreator 1.7.3</generator>
		<item>
			<title>Performance or Maintainability</title>
			<link>http://blog.codecall.net/component/myblog/Performance-or-Maintainability.html</link>
			<description>I've been thinking about a question I was asked on a practice exam I took earlier this week.&amp;nbsp; The question appears to have no valid answer....&lt;br&gt;&lt;br&gt;[quote]In a general sense, which is more important: performance or maintainability of an application?&lt;br/&gt;&lt;br/&gt;&lt;br&gt;&lt;br&gt;Answers... &lt;br/&gt;&lt;br&gt;performance first, maintainability second &lt;br&gt;Maintainability first, performance second &lt;br&gt;Maintainability &lt;br&gt;Performance &lt;br/&gt;[/quote]&lt;br&gt;&lt;br&gt;&lt;br&gt;So, being the developer I'd prefer Maintainability this way it would  [...]</description>
			<author>jordan.delozier@gmail.com</author>
			<pubDate>Tue, 19 Aug 2008 00:00:00 +0100</pubDate>
		<category>Programming</category>
		</item>
		<item>
			<title>Passwords</title>
			<link>http://blog.codecall.net/component/myblog/Passwords.html</link>
			<description>Passwords are our digital fingerprints. Shouldn't they be as secure as we want them? Apparently some websites don't think so.&lt;br&gt;&lt;br&gt;&lt;br&gt;How are our passwords stored?&lt;br&gt;Most websites store users passwords as an md5 (message digest 5) hash. Essentially, your plain text password is passed through a function that hashes your password. That hash is stored in the websites database. Since md5 is a one way hashing algorithm (there is no way to convert the md5 hash in the database back to your plain te [...]</description>
			<author>SidewinderX@optonline.net</author>
			<pubDate>Mon, 18 Aug 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>Setting up Windows Server 2003 as a Domain Controller, dhcp server, dns server, wins server, ...</title>
			<link>http://blog.codecall.net/component/myblog/Setting-up-Windows-Server-2003-as-a-Domain-Controller-dhcp-server-dns-server-wins-server-and-share-an-internet-connection-through-a-wireless-router..html</link>
			<description>Setting up Windows Server 2003 as a Domain Controller, dhcp server, dns server, wins server, and share an internet connection through a wireless router.&lt;br&gt;&lt;br&gt;Since I am a system admin, every so often, I am required to perform a new server installation that won't screw up my existing network.&amp;nbsp; Since I thought others might benefit from knowing how to do this, I might as well blog about it.&amp;nbsp; I am going to also make this able to share a local connection to the internet via a usb verizon  [...]</description>
			<author>pjm35@buffalo.edu</author>
			<pubDate>Sun, 17 Aug 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>PHP Nowdocs</title>
			<link>http://blog.codecall.net/component/myblog/PHP-Nowdocs.html</link>
			<description>A few weeks ago Jordan blogged about the heredoc syntax. The point I want to raise in this blog, is the heredoc syntax parses PHP code, similar to double quotes around a string. For example&lt;br&gt;[code=php]$name = &quot;John&quot;; &lt;br&gt;$john = &amp;lt;&amp;lt;&amp;lt;EOD &lt;br&gt;Hello World!&amp;lt;br /&amp;gt; &lt;br&gt;EOD; &lt;br&gt;&amp;nbsp;&lt;br&gt;$world = &amp;lt;&amp;lt;&amp;lt;EOD &lt;br&gt;Hi $name!&amp;lt;br /&amp;gt;&amp;lt;br &amp;gt; &lt;br&gt;EOD;[/code] Would output [quote]Hello World!&lt;br&gt;Hi John![/quote] Notice $name was parsed as a variable not as a literal. Until PHP 5.3  [...]</description>
			<author>SidewinderX@optonline.net</author>
			<pubDate>Sun, 17 Aug 2008 00:00:00 +0100</pubDate>
		<category>PHP</category>
		</item>
		<item>
			<title>NaNoWriMo Day 15</title>
			<link>http://blog.codecall.net/component/myblog/NaNoWriMo-Day-15.html</link>
			<description>Read about images, finally got the EEE PC loaded with the necessary libraries to compile wxWidgets for GTK, and ran out of hard-drive space.&amp;nbsp; That's what happens when you've already downloaded a ton of junk onto, with useless updates, etc.&amp;nbsp; Spent this evening reseting it to factory defaults so I can start the process over again without all the stupid updates.&lt;br&gt;</description>
			<author>wtwentyman@copper.net</author>
			<pubDate>Fri, 15 Aug 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>My Recent Shell Scripting</title>
			<link>http://blog.codecall.net/component/myblog/My-Recent-Shell-Scripting.html</link>
			<description>Recently I have been working on some shell scripts to aid in the installation of applications. One of the scripts I have been working on is a LAMP (linux, apache, mysql, and php) installer. For almost two years I ran a local WAMP server (same as LAMP but the operating system is Windows) which was installed by clicking some executable (XAMPP / VertigoServ). However, Linux shows no sympathy for lazy Windows users, and thus forces us to use a restrictive package manager or install form source. More [...]</description>
			<author>SidewinderX@optonline.net</author>
			<pubDate>Fri, 15 Aug 2008 00:00:00 +0100</pubDate>
		<category>Linux</category>
		</item>
		<item>
			<title>PHP Reflection and Plugins</title>
			<link>http://blog.codecall.net/component/myblog/PHP-Reflection-and-Plugins.html</link>
			<description>The PHP reflection API allows you to view metadata and comments in your PHP scripts which allow you to create highly expandable PHP scripts.&amp;nbsp; It may seem trivial, the ability to look at your own source code from your script but the set of classes and methods provided by this API give you the ability to create easy plugin features, invoke code pragmatically and create instances of code.&lt;br&gt;&lt;br&gt;Imagine you wanted to allow users of your product to upload addons.&amp;nbsp; The addons will be held i [...]</description>
			<author>jordan.delozier@gmail.com</author>
			<pubDate>Thu, 14 Aug 2008 00:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>PHP</category>
 <category>Object Oriented Programming</category>
		</item>
		<item>
			<title>NaNoWriMo Days 5 14</title>
			<link>http://blog.codecall.net/component/myblog/NaNoWriMo-Days-5-14.html</link>
			<description>Not much to say, since I've been reading function definitions, etc.&amp;nbsp; Pretty boring stuff.&amp;nbsp; Getting anything to Link, however, has been an adventure.&lt;br&gt;&lt;br&gt;GCC has a few interesting &quot;quirks&quot;: first, it doesn't automatically locate compiled objects in the search path.&amp;nbsp; Second, it doesn't automatically handle linking of dependent object files in the correct order.&amp;nbsp; The result is that you end up with hideously long link commands, and if you get your compiled units in the wrong o [...]</description>
			<author>wtwentyman@copper.net</author>
			<pubDate>Thu, 14 Aug 2008 00:00:00 +0100</pubDate>
		<category>Object Oriented Programming</category>
 <category>GUI</category>
 <category>Cpp</category>
		</item>
		<item>
			<title>Programs Under the Hood...Part 8: Disassembling Stuff</title>
			<link>http://blog.codecall.net/component/myblog/Programs-Under-the-Hood...Part-8-Disassembling-Stuff.html</link>
			<description>&amp;nbsp; &lt;br/&gt;&lt;P&gt;Welcome back to Part 8 of &lt;I&gt;Programs Under the Hood&lt;/I&gt;. Today we're going to disassemble a BIOS interrupt to get a real-world example of what programs are structured like, and we'll see if we can convert some of it to C/C++ code. (I apologize for the large line breaks. For some reason, they just appeared.)&lt;/P&gt;&lt;br/&gt;&lt;P mce_keep=&quot;true&quot;&gt;&amp;nbsp;&lt;/P&gt;&lt;br/&gt;&lt;P&gt;&lt;B&gt;POPPING THE HOOD-DISASSEMBLING A BIOS ROUTINE&lt;/B&gt;&lt;/P&gt;&lt;br/&gt;&lt;P&gt;A few issues back I mentioned that the BIOS provides a lot of basic functional [...]</description>
			<author>dargueta@stanford.edu</author>
			<pubDate>Wed, 13 Aug 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>Kill Process if in both listboxA and ListboxB</title>
			<link>http://blog.codecall.net/component/myblog/Kill-Process-if-in-both-listboxA-and-ListboxB.html</link>
			<description>Hey every1 i need some help, i makeing a program in .net to block unwanted Exe's and such. i have some idea of what i want to do but its not working out for me..&lt;br&gt;&lt;br&gt;-i have tried converting the listboxes to arrays then saying:&lt;br&gt;if array1 items = array2's items then kill the item that is similar?&lt;br&gt;&lt;br&gt;-i have tried this as well:&lt;br&gt;if listbox1.item =true in listbox2.items then get process name and terminate&lt;br&gt;next&lt;br&gt;&lt;i&gt;&lt;u&gt;&lt;b&gt;This is the code i'm using at the moment:&lt;/b&gt;&lt;/u&gt;&lt;/i&gt;&lt;br&gt;&amp;nbsp [...]</description>
			<author>jared_viper15@hotmail.com</author>
			<pubDate>Sat, 09 Aug 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>Do web hosts oversell? </title>
			<link>http://blog.codecall.net/component/myblog/Do-web-hosts-oversell-.html</link>
			<description>What is overselling?&lt;br&gt;Simply put, overselling is when a host offers to more resources to their clients than what they physically have.&lt;br&gt;&lt;br&gt;I would venture to say, all hosts oversell. Overselling for the most part is a legitimate practice. Most owners of dedicated servers who specialize in web hosting receive, say, an 80 GB hard drive and 8000 GB of transfer from their data center. Lets assume one of the packages a host offers for $5 a month is 1 GB of storage and 10 GB of transfer. Physical [...]</description>
			<author>SidewinderX@optonline.net</author>
			<pubDate>Fri, 08 Aug 2008 00:00:00 +0100</pubDate>
		<category>Hosting</category>
		</item>
		<item>
			<title>PHP: Study</title>
			<link>http://blog.codecall.net/component/myblog/PHP-Study.html</link>
			<description>It has been a while since I wrote a blog so I thought I'd write about what I've been doing.&amp;nbsp; For the past month I've been studying for Zend Certified Engineer test which is a PHP test.&amp;nbsp; From what I can tell the test asks very tricky questions that require you to have a working knowledge of many PHP functions (with Arrays and Strings being the largest two).&amp;nbsp; So far I've managed to memorize most of the 74 array functions and am working on the string functions now.&amp;nbsp; &lt;br&gt;&lt;br&gt;I've [...]</description>
			<author>jordan.delozier@gmail.com</author>
			<pubDate>Fri, 08 Aug 2008 00:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>PHP</category>
		</item>
		<item>
			<title>Random Numbers</title>
			<link>http://blog.codecall.net/component/myblog/Random-Numbers.html</link>
			<description>Have you ever been in a conversation where someone blurts out something completely off topic? You say to yourself, “well, that was random.” Chances are, unless that person suffers from a mental disability, that spew of “random” verbiage was not really random.&lt;br&gt;&lt;br&gt;What is randomness?&lt;br&gt;The Oxford English Dictionary defines random as “made, done, or happening without method or conscious decision.” More than likely, your conversation sparked some conscious relocation which resulted  [...]</description>
			<author>SidewinderX@optonline.net</author>
			<pubDate>Tue, 05 Aug 2008 00:00:00 +0100</pubDate>
		<category>Programming</category>
		</item>
		<item>
			<title>NaNoWriMo Days 3 and 4</title>
			<link>http://blog.codecall.net/component/myblog/NaNoWriMo-Days-3-and-4.html</link>
			<description>After spending about 3 hours on day 2 to get things working, Days 3 and 4 were pretty boring.&amp;nbsp; I'm plowing through chapter 4, which is a summary of most of the components used in wxWidgets.&amp;nbsp; I spend a LOT of my time reading through them thinking that they're just like what Delphi uses.&lt;br&gt;&lt;br&gt;Based on what I'm reading, everything should work fairly well.&amp;nbsp; My biggest issue for my long-term goals is determining whether I should use wxGTK or wxX11 when I compile for my EEE PC.&amp;nbsp;  [...]</description>
			<author>wtwentyman@copper.net</author>
			<pubDate>Mon, 04 Aug 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>NaNoWriMo   Days 1 2</title>
			<link>http://blog.codecall.net/component/myblog/NaNoWriMo-Days-1-2.html</link>
			<description>&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;	&lt;br/&gt;	&lt;br/&gt;	&lt;br/&gt;	&lt;br/&gt;	&lt;br/&gt;	&lt;br/&gt;	&lt;br/&gt;	&lt;br/&gt;&lt;br/&gt;&lt;p style=&quot;margin-bottom: 0in;&quot;&gt;NaCoWriMo: Day 1&lt;/p&gt;&lt;br/&gt;&lt;br/&gt;&lt;p style=&quot;margin-bottom: 0in;&quot;&gt;I had prepared for this day by&lt;br/&gt;downloading MinGW, and installing it.  I had also downloaded&lt;br/&gt;wxWidgets and Boost source code in preparation.  I wasn't sure if I&lt;br/&gt;would be using Code::Blocks or just command-line tools, but would&lt;br/&gt;wing it.  Began reading, having determined I needed to read a minimum&lt;br/&gt;of 20 pages per day to finish the book in one month.  My goal is to&lt;br/&gt;“Learn wxW [...]</description>
			<author>wtwentyman@copper.net</author>
			<pubDate>Sat, 02 Aug 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>Extract Variables</title>
			<link>http://blog.codecall.net/component/myblog/Extract-Variables.html</link>
			<description>A few months ago, in one of the php articles / books I was reading I stumbled across something called variable variables. Essentially, it lets you create a variable whose name is defined by another variable. I thought to myself “where the hell would this be useful?” A few days after Jordan bloged about variable variables I actually found a use for them:&lt;br&gt;&lt;br&gt;ionManager (a framework and CMS built myself), uses the MVC enterprise pattern. The model querys the database and generates/manipulat [...]</description>
			<author>SidewinderX@optonline.net</author>
			<pubDate>Fri, 01 Aug 2008 00:00:00 +0100</pubDate>
		<category>PHP</category>
 <category>ionManager</category>
		</item>
		<item>
			<title>Programs Under the Hood...Part 7: Making Decisions</title>
			<link>http://blog.codecall.net/component/myblog/Programs-Under-the-Hood...Part-7-Making-Decisions.html</link>
			<description>&lt;P mce_keep=&quot;true&quot;&gt;&amp;nbsp;&lt;/P&gt;&lt;br/&gt;&lt;P&gt;Welcome to Part 7 of &lt;I&gt;Programs Under the Hood&lt;/I&gt;. Today we're going to learn a bit more about how programs make decisions on the assembly language level. I &lt;I&gt;promise&lt;/I&gt; after this we'll get back to the disassembler project.&lt;/P&gt;&lt;br/&gt;&lt;P mce_keep=&quot;true&quot;&gt;&amp;nbsp;&lt;/P&gt;&lt;br/&gt;&lt;P&gt;&lt;B&gt;FLOW CONTROL STRUCTURES&lt;/B&gt;&lt;/P&gt;&lt;br/&gt;&lt;P&gt;Everyone who knows C/C++ is familiar with the &lt;I&gt;goto&lt;/I&gt; keyword, the bane of many a programmer's existence. Using &lt;I&gt;goto&lt;/I&gt; makes code harder to read and t [...]</description>
			<author>dargueta@stanford.edu</author>
			<pubDate>Thu, 31 Jul 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>Programming   &quot;Just a stage&quot;</title>
			<link>http://blog.codecall.net/component/myblog/Programming-Just-a-stage-.html</link>
			<description>So, to me Programming is fun, and its also something id like to do, maybe not as a fulltime job, but as a side job, like ToastedPenguin, but pretty much everywhere I go for my job, I get asked &quot;So what do you do on your freetime&quot;, and I say &quot;I like to make website, im a web developer&quot; Every now and then I get someone who is interested in that kinda stuff, but mostly, I get &quot;I went through that stage too&quot;. Is programming a stage for you? I enjoy it way too much, and it can pay rather well too. &lt;B [...]</description>
			<author>jhyland87@hotmail.com</author>
			<pubDate>Thu, 31 Jul 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>Hosting Issues Suck</title>
			<link>http://blog.codecall.net/component/myblog/Hosting-Issues-Suck.html</link>
			<description>So, lately I have had a ton of issues with ToastedPenguin.com. Lets start at the beginning.&lt;br&gt;&lt;br&gt;When I got the site, the registration had some issues that had not been fixed, the issue was it would not connet to the registrar, thus people who signed up would not be able to register a domain, and I would have to do it manually. &lt;br&gt;&lt;br&gt;I contacted WHMAP, (the company who makes the software that connects to the registrar), and asked them what the issue is, I actually ended up talking to the per [...]</description>
			<author>jhyland87@hotmail.com</author>
			<pubDate>Tue, 29 Jul 2008 00:00:00 +0100</pubDate>
		</item>
		<item>
			<title>Zend Studio for Eclipse Training: Day 5/6</title>
			<link>http://blog.codecall.net/component/myblog/Zend-Studio-for-Eclipse-Training-Day-5.html</link>
			<description>We started Day 5 of Zend Studio for Ecliipse Training.&amp;nbsp; &lt;br&gt;&lt;b&gt;&lt;br&gt;Day 5:&lt;br&gt;&lt;br&gt;Unit Testing&lt;/b&gt;&lt;br&gt;Why use Unit Testing?&amp;nbsp; With Unit Testing you can develop in a controlled environment where each alteration of code is test before future alteration.&amp;nbsp; It basically means, if you make a change you run a full test before making any other changes.&amp;nbsp; This eliminates bugs being cause by &quot;bug fixes&quot; and &quot;updates&quot;.&amp;nbsp; &lt;br&gt;&lt;br&gt;You can read about Unit Testing in John's blog: PHPUnit&lt;b [...]</description>
			<author>jordan.delozier@gmail.com</author>
			<pubDate>Mon, 28 Jul 2008 00:00:00 +0100</pubDate>
		</item>
	</channel>
</rss>