View RSS Feed

All Blog Entries

  1. Lack of Knowledge

    by on 02-07-2009 at 04:57 AM
    Hello there, first blog post so excuse me if I don't do this 100% correctly.

    I'd like to say I have a knowledge of C, I believe it to be good, although as with everything it could be improved upon. I may start learning C++, I was going too but didn't have the time with college although I do now have the time (my course is unrelated to programming).

    So, I would think to myself; "What to do now? continue going over the things that I already know?"
    ...
  2. Python

    by on 02-06-2009 at 07:29 PM
    Wow. I have had an great experience lately. I've been working with a python script and been customizing it for a few days. And Python does have potential, oh yeah!

    I find the language easy to program in, most of the time, but it has many special things that isn't so easy. I have troubles finding good documentation. python.org is not especially good source for good python documentation, if you compare it to php.net for example.

    It's understandable as it's more third ...
    Categories
    Programming
  3. ionFiles 4.5 Public Beta 1

    by on 02-06-2009 at 05:52 PM
    This is, in no way, the final release. There are many more items I want to accomplish before this is released to the public but I figured it has been a while and a lot of people have been anticipating the features in this one. I've attached the first public beta for ionFiles 4.1.

    Joomla!
    The entire administration has been redone and follows the MVC design pattern and uses a Factory to distribute models. If you are saying "wtf" right now, don't worry, this is only ...

    Updated 06-30-2009 at 02:20 PM by Jordan

    Categories
    Programming
    Attached Thumbnails Attached Thumbnails Cms-addfile.jpg   Cms-config_options.jpg   Cms-fileupload.jpg   Cms-reset.jpg   Cms-stats.jpg  

    Cms-update.jpg  
  4. Meaningless Problems

    by on 02-06-2009 at 05:34 PM
    As one sits in class, not only is it boring enough being there, sometimes a teacher may force students to complete projects that mean nothing and do not amount to a higher education at all. I agree that knowing how to do certain things may increase a learning experience, but just to give busy work is ridiculous.
    Categories
    Uncategorized
  5. PHP: Finding the Max Value Key

    by on 02-06-2009 at 10:51 AM
    If you have an array and want to find the maximum value, use the max() function. You can pass several variables to max or an array.

    Code:
    echo max(13567);  // Will echo 7
    echo max(array(248)); // Will Echo 8 
    Key/Index of Max Value
    But what if you need to find the key/Index of the max value? Using max will output incorrect results:

    Code:
    echo max(array("Jan"=>7May"=>4, "April"=>5)); 
    Which echos "7", ...
    Categories
    Programming
Page 51 of 90
FirstFirst ... 41 49 50 51 52 53 61 ... LastLast