View RSS Feed

Uncategorized

Entries with no category

  1. The Most Important Software Engineering Skills

    by , 01-24-2011 at 08:01 PM
    I was recently asked by an freshman computer science student several questions about the software engineering industry. The one I would like to highlight is What are some of the most important software engineering skills? I immediately wanted to start naming off technologies and paradigms that I see used daily. Things like object oriented programming, test driven development, design/architecture patterns, and popular programming languages. But after a moment of contemplation, I responded with what ...
    Categories
    Uncategorized
  2. Illogical PHP Logic

    by , 07-17-2009 at 03:53 PM
    In algebra, after we learn the basic distributive, commutative, and associative properties, the transitive property of equality is usually next in the curriculum. For those of you who do not recall the terminology, the transitive property of equality says if $a == $b and $b == $n then $a == $n. Using this age old logic, you can prove FALSE == TRUE and 0 == 1 in PHP. Here is how:

    Code:
    $a 0;
    $b "Hooray for PHP logic and dynamic type casting?";
    var_dump(((FALSE == 
    ...

    Updated 07-17-2009 at 08:37 PM by John

    Categories
    Uncategorized
  3. PHP6 - ifsetor() :?

    by , 02-16-2009 at 12:07 AM
    Web developers are constantly validating data, either through JavaScript or through a server side programming language such as PHP. If you have done any PHP development, I am sure you have been in the situation where, if a request variable is set, you want want to use that value, if it is not set, you would like it to default to a specific value. The most common and logical method to accomplish this is to use an if/else block.
    Code:
    if(isset($_GET['foo'])) {
        
    $bar $_GET['foo']; 
    ...
    Tags: php6 Add / Edit Tags
    Categories
    Uncategorized
  4. 1-2-3-4-5-6-7-8-9-0

    by , 02-13-2009 at 07:13 PM
    Today, February 13, 2009 at 6:31 EST, the Unix time reached 1234567890. That is, 1,234,567,890 seconds since the Unix epoch (January 1, 1970).
    Categories
    Uncategorized
  5. D Link DNS 323 NAS

    by , 01-16-2009 at 09:00 PM
    A few days ago I purchased a D-Link DNS 323 and a 1TB Western Digital hard drive to go along with it. I must say, I am thoroughly impressed. The initial setup took five minutes. I simply took off the front cover of the NAS, inserted the drive (no cables), plugged in the RJ-45 and power cables, and it was all set.


    The purpose of a NAS is to provide network storage. The D-Link NAS 323 extends beyond this default requirement and offers an abundance of applications such as a built in FTP ...
    Categories
    Uncategorized
  6. Tidy up your HTML

    by , 12-17-2008 at 09:00 PM
    If you are a php programmer, you should be aware of the annoyances brought upon by html. I am not saying html is annoying, but when you combine php and html in the same document, it becomes a head ach.  Even if you separate your presentation logic from your business logic and data, your html source code will most likely look like crap. Sure you might spend a few minutes properly indenting your php source, but once that php executes and sends the response to the browser, at the very least, there ...
    Categories
    Uncategorized
  7. Joomla! And Incompetent Programmers

    by , 11-28-2008 at 09:00 PM
    Over the past few days I have been attempting to migrate my Joomla 1.0 & SMF website to Joomla 1.5 along with Fireboard. I decided to upgrade Joomla for the obvious reason - it is outdated, and I decided to migrate away from SMF due to the licensing issues between Joomla and SMF. These issues cause any extensions connecting the two pieces of software, for example a bridge, to be illegal (so much for the OpenSource "freedom").

    In terms of forum software, there were several options. I decided ...
    Categories
    Uncategorized
Page 1 of 4 123 ... LastLast