Tag: Programming
The following posts are tagged Programming.
Although PHP for loops are already incredibly fast, you can further, albeit rather marginally, optimize your loops if you are a performance junkie. Here are some simple ways how. Comments are closed. Read the complete article »
Boris Popoff made a beautiful Aptana Studio colorization called Green Chaud. Don’t take my word for it; see the screenshots in the page I link to. Comments are closed. Read the complete article »
Federico Cargnelutti of PHP::Impact ( [str blog] ) just wrote a post listing 30 useful PHP classes and components. I won’t be using all 30 of them of course, but a couple of them look pretty promising and they could find themselves in my future projects Comments are closed. Read the complete article »
ExpressionEngine 2.0: fully CodeIgnited! Take a look at some of the many wonderful perks of this EE code foundation. As Derek says, it’s a good time to be a nerd! Comments are closed. Read the complete article »
I was offered a PHP web development job by a fellow Singaporean this afternoon, and you can read about our conversation and why I ultimately rejected the job offer at BoltClock @ WordPress.com. Comments are closed. Read the complete article »
If you’re not a programmer, you won’t be able to understand half of this post. You could try though, but I’m not forcing anyone.
The gist of this whole post was that all I did was write a few painfully simple lines of Python, have an idea to run it through the parser, do so, and [...] Comments are closed. Read the complete article »
As I’d promised, today I’ll teach you how to create your own functions to assist you in your programming.
It’s pretty simple, but some people might not be able to grasp the concept so I’ll try to make things clear for everyone On to the tutorial! Comments are closed. Read the complete article »
PHP functions
Sep 15
Today we’re going to look at what most programmers call functions.
A function is what you call in your program to tell it to perform a series of smaller actions, like echo(), substr(), mysql_query(), or your very own functions like calculate_age() or bake_cookies() (which we will learn how to create in the next tutorial).
I’ll be explaining [...] Comments are closed. Read the complete article »
I was just messing around with PHP and the very promising web application framework CodeIgniter, which I’m using to develop NOVALISTIC 3.0, and I encountered a funny parse error listed below:
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in D:\NOVALISTIC\3.0\ci\system\application\views\header.php on line 10
The first thing I (obviously and intuitively) did, was search PHP Bugs for the string [...] Comments are closed. Read the complete article »
WordPress Bits today posted an interesting article (among all its interesting articles) to show you how you can get started getting to know WordPress inside out. That is, its source code. Also worth reading is last week’s post on WordPress’s database. Comments are closed. Read the complete article »