Monthly Archives: August 2010

25 My Favorite Clean and Minimalist Blog Design

August 31st, 2010 by aditia rahman / 5 Comments

I always love clean and minimalist design, till now i’m still trying to implement the feel of minimalist design to my blog, some says that “minimalist is created because the lack of ability of design” well I don’t care that much cause I’m not really designer anyway, yet, and for me creating minimalist design not simple as it sound. Here I post my favorite clean blog design to get some inspiration, mostly in black and white themes.

Soulwire Blog

Free LightWeight PHP Editor

August 30th, 2010 by aditia rahman / 8 Comments

My favorite editor sometimes give me a bit motivation to finishing the project, when finishing a project, maybe I could would say, “wow I only use this editor to finish this great project”, event though my current favorite editor is Netbeans, in this post I only talking some lightweight PHP editor, not the full IDE, and maybe this is useful for you who still use the very old PC, about two year ago I’m still using them too, they are bluefish and geany.

WordPress Desktop Wallpaper Collection

August 25th, 2010 by aditia rahman / No Comments

Yet another post of WordPress Desktop Wallpaper, collection around the web that i found, I really love wordpress and sometimes make it my Desktop Wallpaper, and I always try to post wallpaper that have more than 1024 x 768 pixels.

10 Blogs to Follow for Gadget Lovers

August 24th, 2010 by aditia rahman / No Comments

The gadget industry is never stop to innovate, the gadget cost continue becoming cheaper, the big player in the industry can produce fast product, like producing more than 10 products a year. These blogs I mention always keep up with the news in the gadget area, whether it mobile phone, tablet, laptop or something related to gadget. Actually there a lot of blog discussing about gadget but these are my favorite especially the first five

Passing Json Format from PHP to ExtJS

August 22nd, 2010 by aditia rahman / No Comments

When I wrote my previous post, there are some function in PHP that sent the output as Json format to be used in JsonStore component, sometimes I create the json format manually with string concatenation, looping through the data, this is quite simple actually, but I write this post because when I got an error from this json format, it make me feel a bit dizzy  for example:

$query = $this->db->get('products');
$json = "{'products':[";
foreach($query->result() as $data)
{
	$json .= '{"id":"'.$data->id.'",
				"name":"'.$data->name.'",
				"price":"'.$data->price.'",
				"image":"'.$data->image.'"},';
}
$json .= "]}";
echo $json;

Drag and Drop Shopping Cart Using ExtJS and CodeIgniter Cart

August 21st, 2010 by aditia rahman / 9 Comments

This is my other post about simple usage of ExtJS with CodeIgniter, this time I want to create a simple drag and drop shopping cart, I have learn about how to use the cart class in CodeIgniter that I have posted in the previous post, i’m using MySQL for the storing the product data. I prepared the mockup it something like this

[News] Sencha is Preparing The New ExtJS 4

August 13th, 2010 by aditia rahman / 1 Comment

While this post is created, I browsing the official Sencha Site, and there is an event on the site called Sencha Conference 2010 in San Fransisco, and I hope one day I could be there too. So I just browsing the session that planned inside the conference, and you know what? Sencha is getting prepared for ExtJS 4, Wow, just wondering what next cool feature that ExtJS have.

sencha conference

If you are browsing the sessions menu on the site you can see the topic like introduction to ExtJS 4 and ExtJS 4 architecture, on the first day.

PHP Development Stack, What’s Your Choice

August 12th, 2010 by aditia rahman / 2 Comments

If you are really new to PHP programming you must be started by installing the software environment, for me the first time it really frustrating, especially when I’m installing on windows, in ubuntu linux there is a faster way to installing the software one by one by installing from the available repository, but this software stack that I mention below can provide even faster installation step for you to getting ready on developing PHP based application.

php dev stack

CRUD using CodeIgniter and EXTJS Grid – Part 4

August 11th, 2010 by aditia rahman / 14 Comments

It’s been quite a long time since I updated this blog, just continue my blogging journey with very simple post. I have been suggested by Taguchi from the previous post, to adding autosearch filtering to this example, the system will search while user input a value in the searchbox. If you haven’t follow any of this here is the link:
1. CRUD using CodeIgniter and EXTJS Grid – Part 1
2. CRUD using CodeIgniter and EXTJS Grid – Part 2
3. CRUD using CodeIgniter and EXTJS Grid – Part 3
Actually it is quite easy you just have to enable the keyEvent and add a key listeners to the searchUsers component, this is how it look:

Understanding CodeIgniter Cart Class

August 4th, 2010 by aditia rahman / 1 Comment

CodeIgniter Cart ClassCart is one of the most important feature when creating an online store. In this post I want to have more understanding about Cart Class in CodeIgniter, cause maybe come in handy in the future, you can see how many new online store out there open in business, and in this internet age, online store seems the must have for many people who have retail business, in this post I’m not writing about how to use it in some example, the code I posted in here just copying from the original cart class documentation, but i’m included the link to the example usage of this class on the section 4 below.