• Categories

    » Command Line
Sep
9

Micro Instances EC2!

Yes! i never thought this day would come! Amazon now has an option for a much lower cost server instance, they are calling it “Micro Instances”. This drops the monthly cost to about $.48 a day and about $14 a month!
Micro instances provide 613 MB of memory and support 32-bit and 64-bit platforms on both [...]

Aug
28

PHP/MySQL after 2010-005

After applying Security Update 2010-05, some users have reported PHP and MySQL problems, including an inability to connect to MySQL databases. Apple reports that the following procedure resolves the database connection issue:

In the Terminal type sudo nano /etc/php.ini (Terminal will ask you for your password)
Change: mysql.default_socket = to: mysql.default_socket = /tmp/mysql.sock
Press Ctrl-O, then Enter to [...]

Aug
22

phpArmory for WoW

phpArmory is a PHP class library. It allows php software developers to easily access data from the World of Warcraft Armory website. This is useful because the Armory website contains up-to-date and official details on characters, guilds, and items in World of Warcraft.

Aug
19

Investment in Open Source is up!

This year could be of critical importance to the open source software industry, with a recent survey showing a majority of businesses and organizations in the U.S. and United Kingdom expecting to increase investment in it this year.

Aug
4

Wave goodbye

From the official Google blog. They announced today that they will no longer be supporting Google Wave by the end of the year.

Aug
4

PHP 5.3.3 Backwards incompatible change

Methods with the same name as the last element of a namespaced class name will no longer be treated as constructor. This change doesn’t affect non-namespaced classes.

namespace Foo;
class Bar {
public function Bar() {
// treated as constructor in PHP 5.3.0-5.3.2
[...]

Aug
3

var_export in PHP 5

So var_export(mixed $expression [, bool $return = false ] ) outputs or returns a parsable string representation of a variable.

Jul
19

OpenStack

Today is a big day for Rackspace Hosting. They announced a new project that Rackspace believes will change the way the cloud is developed and it’s called OpenStack – an open source cloud platform designed to foster the emergence of technology standards and cloud interoperability.

Jul
19

Data Filtering

Time to leave $_GET and $_POST in the dust! In fact, you probably shouldn’t use $_GET and $_POST anymore. Since PHP 5.2, there is a new and better way to safely retrieve user-submitted data.

Jul
16

Paulette Greene

One of the latest project i have done for SCI is for a client named Paulette Greene. They are a large realtor shop here in the DFW (Dallas/Fort Worth) area.

Jul
13

Cluster Compute Instances for EC2

Amazon is excited to announce the immediate availability of Cluster Compute Instances for Amazon EC2, a new instance type specifically designed for high-performance computing (HPC) applications and other demanding network-bound applications. Customers with complex computational workloads such as tightly coupled parallel processes, or with applications sensitive to network performance, can now achieve the same high [...]

Jun
30

Query Strings in Codeigniter

In some cases you might prefer to use query strings URLs and not the pretty URLs. CodeIgniter optionally supports this capability which can be enabled in your application/config.php file.

Jun
23

PHP5 Method Chaining

One improvement over PHP4 to PHP5 is something called method chaining and enables us to do pretty cool things like…

Jun
22

Nice Dog Framework

I just came across this mico php framework a few nights ago. When i say “micro” i mean micro, this framework is one file!

Jun
17

WordPress 3.0 “Thelonious”

The new Wordpress 3.0 is out and full of new stuff to play with! It’s a great improvement for us as developers and as the end user.

Jun
15

Why website crashes are unavoidable

Found this on CNN and thought it made some good points. Something to show the clients that want 100% uptime.
Obviously, no one likes it when websites go down. And, for website owners, even a few hours offline can mean a big hit to revenue from ads. But if you understand how the Internet works, there’s [...]

Jun
14

Codeigniter Path Helper

he Path Helper file contains functions that permits you to work with file paths on the server.

Jun
11

Amazon S3 Console

The AWS Management Console now provides a simple and intuitive web interface for managing your Amazon S3 resources. You can manage your existing Amazon S3 resources, as well as create new buckets and upload objects to your buckets using the console.

Jun
8

Amazon CloudFront Adds HTTPS

Amazon is excited to let you know about three separate changes to Amazon CloudFront, the easy-to-use AWS content delivery network.

Jun
7

Listing files in a directory Codeigniter

The Directory Helper file contains functions that assist in working with directories.
First if you plan on using this often you may want to place this in your autoload under the config folder. Below is how you would load it in the controller itself.

$this->load->helper(’directory’);

Now you have access to the directory_map function, this function reads the directory [...]