Thinking about ornagai tsv license

Posted March 2nd, 2010 in blog by admin

We are not selling data. I provide data and service. Ok. google don’t own data but he can add ads. Like this, you can’t sell data but you can use free. You can add Ads in your service. Existing published dictionaries ? Yes, but what books ? can’t tell exactly. Many books and I just provide data service to add in ornagai. So, data is a free of use and can combine with any technology with free of charges. (thinking about license).

Now, I just thinking about ornagai license. Ornagai source code should be free all the time ? Of course, TSV will be free all the time. TSV can’t own because data is created by community. Ornagai is written by CodeIgniter Framewrok and I used Zawgyi Library that made myself. So, I need to think about ornagai source code also. GPL or MIT ?

Snippely

Posted March 2nd, 2010 in blog by admin

Snippely is a air application for code snippets. It’s a great application for me. I can backup from

~/Library/Preferences/com.snippely.##gobbledygook##/Local\ Store/application.db.

In Windows,

Continue Reading »

ePad

Posted March 1st, 2010 in blog by admin

LOL!!! hello to the future

Done MVC

Posted February 24th, 2010 in blog by admin

Today, I done my MVC framework raw, not include library file.

Just call Controller -> Model -> View

I told about my controller in yesterday. Here my view design

class simpleModel extends Model {

function simpleModel()
{
parent::Model();
}
function printit()
{
$data['a']=1;
$this->load->view("Test",$data);
}
}

Continue Reading »

load model look like CI

Posted February 23rd, 2010 in blog by admin

Abstract class Controller extends Loader {
public $load;
function Controller()
{
	$this->load=$this;
}
abstract function index();
}

So, I can call like this

class IndexController extends Controller {

    function IndexController()
    {
        parent::Controller();
    }

	function index()
	{
		$this->load->model("simple");
		print_r($this->simple);
	}
}

This is my first time setting look like this and I never thinking before

$this->load=$this ;

In the old, I calling like this

$this->load->simple->function();

hmm… How stupid it!!!
Cheer!!!!
Saturngod

Page 2 of 21123451020...Last »