Working As Application Specialist

Info May 17th, 2009

Now, I’m Working as application specialist on software house Jakarta. I no longer exist in PHP anymore.. akh it’s so hard to me.. Now I must learn the old school programing language Fox Pro.. It’s suck. But I don’t care about this language.. because I learn to much thecnique in analist and programming. I enjoyed it. Yeah.. Sory for waiting me updating this blog.. But I’ll share my experience in working as application specialist. Next post I’ll post about Store Procedure, DTS, Reporting, and much more. Thx for supporting me with your comment^^

Sphere: Related Content

Tags:
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

CRUD generator for Code Igniter

Code Igniter March 3rd, 2009

Hueh.. I found it.. hmmm..
Let’s try^^
You can download it from http://www.datacraft.co.za/index.php/site/products/codecrafter
Just copy paste on that site:

CodeCrafter is an Open Source code generator, for the Code Igniter framework and was designed to help developing web applications. It can generate an entire MVC application in minutes.

CodeCrafter will build CRUD (Create, Read, Update, Delete) source code for your databases. It is designed for busy developers who want a way to automatically generates controller, model and view source code for databases.

Using just a single mouse click, An entire working application can be built from your database in seconds that will run unmodified in CodeIgniter!

The generated code is purposely built to be simple enough so that developers than make intuitive changes to customise the applications.

For the more adventerous developers, Version 0.2.2 now has the ability to customise each field in the table.

Future vesrions will provide the ability to perform relational lookups to other tables.

An installation and user manual is included in the download package.

Select your database, then your table and go to generate your CRUD.
Read the rest of this entry »

Sphere: Related Content

Tags: , , ,
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 1 out of 5)
Loading ... Loading ...

Integrated Tag Cloud Into Code Igniter

Code Igniter March 3rd, 2009

Yeah. Finally i write some post again..

hehe.. This post talk about Tag Cloud on my previous post, but in this post I’ll show you how to integrate it into Code Igniter >> my favorite framework..

First you must create it to you own library..

this is my script:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 
//tag_cloud.php
class Tag_cloud{
	private $arrTags;
	private $sort;
	private $fMaks;
	private $fMin;
/**
* konstruktor
* @param $arrTags tag array
* @param $sort Boolean sort by aphabet
* @param $fMaks Int maximum size of font
* @param $fMin Int minimum size of font
*/
	function __construct($arrTags, $sort = true, $fMaks = 36, $fMin = 12){
	if(!is_array($arrTags)){
		exit('First Argument must array!');
	}
	$this->arrTags = $arrTags;
	$this->sort = $sort;
	$this->fMaks = $fMaks;
	$this->fMin = $fMin;
}
/**
*Create and print tag cloud
*
*/
	function show(){
	$arrTags = $this->arrTags;
	if ($this->sort){
		//sort by aphabet
		ksort($arrTags);
	}
	//maximum item
	$jmlMaks = max(array_values($arrTags));
	//minimum item
	$jmlMin = min(array_values($arrTags));
	//Range total max and min
	$range = $jmlMaks - $jmlMin;
	//avoid divide by zero
	if ($range == 0){
		$range = 1;
	}
	//for increment font tag size
	$step = ($this->fMaks - $this->fMin)/$range;
	$size = 0;
	$arr_item=array();
	$arr_jml=array();
	$arr_size=array();
	$out=array();
	$n=0;
	while (list($item, $jml)=each($arrTags)){
		//increment font size
		$size =round($this->fMin+(($jml-$jmlMin)*$step));
		$arr_item[$n]=$item;
		$arr_jml[$n]=$jml;
		$arr_size[$n]=$size;
		$n++;
	/*echo '<a href="tag/'.$item.'" style="font-size:'.$size.'px" tittle="'.$jml.' item on tag'.$item.'">
	'.$item.' </a>';*/
	}
	$arr1 = array_values($arr_item);
	$arr2 = array_values($arr_jml);
	$arr3 = array_values($arr_size);
	foreach($arr1 as $key1 => $value1) {
	$out[(string)$value1][0] = $arr2[$key1];
	$out[(string)$value1][1] = $arr3[$key1];
	}
	//print_r($out); // this will print out the contents of your new array
	return $out;
	}
 
}
 
 
?>

This script will return 3 dimentional array. Read the rest of this entry »

Sphere: Related Content

Tags: , , ,
1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 3 out of 5)
Loading ... Loading ...

My Design Graphic

Design January 23rd, 2009

One day, on Simple Scratch (my branded for web design) i have to design some wallpaper using Corel and Adobe photoshop.

this is my preview:

Read the rest of this entry »

Sphere: Related Content

Tags: ,
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 1 out of 5)
Loading ... Loading ...

My CSS Design for Mubyarto Institute

Web Design January 22nd, 2009

One day, on Simple Scratch (my branded for web design) i have to design some CSS for Mubyarto Institute. This project from Wibawa Design as my partner..
I have two design for Mubyrato Institute, but only the blue one that accepted.
This is some preview of my design:
Brow and gray:

Blue:
null

Read the rest of this entry »

Sphere: Related Content

Tags: , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Blogroll Link Update