Most Active Open Source Projects

Autoform (PHP5, MIT License)

Quickly build forms, validated server-side

$form = new autoform();
$form->email = textField()
	->label('Email')
	->validation('required,email');
$form->submit = submitField();

if($_POST) {
	$form->fillValues($_POST);
	if($form->validate()) {
		// form validated successfully
		// save submitted data here
	}
}

// print your page header, then:
$form->render();
// print your page footer

[name pending] (Python, GPL License)

Create PDFs, MIDI for marching percussion music

Input: Concise marching percussion notation

snare:
	P<-h-hh. ,H-h-hh FH

tenor:
	P<ccccb... a-b-bd FA

bass:
	=cb u-a-aa Fu

Output: Lilypond syntax for making PDFs. And MIDI files for making audio.



Updates and Other

I started another blog... yes, another one. You appreciate art, right?

  • TESI and Knox (an alternative to GNU screen) have been updated on github. (Dec08)
  • Making much progress on mercussion, the next generation of my lilyperc project. (Dec08)
  • Added my new lilyperc project. (Aug07)
  • Updated Autoform examples and demo. (Jul21)
  • Moved Autoform and dbFacile source code repositories to github. (Jul05)
  • It's time to remove some clutter and reduce the wordiness of this site. Trying to make it more welcoming to visitors. (May21)
  • dbFacile - Included non-OOP version for MySQL in the repository. (Feb12)
  • Autoform - Version 0.8.1, a bugfix release. (Feb12)
  • ORM Usability - My explorations into making ORM tools better. (Jan19)

 

Creative Commons License
This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License.