Adjust the settings so that changing from Simple to Formatted doesn't give an error when no text has yet been entered.
A simple web application I wrote over the weekend;
http://owensoft.net/project/note/
Future features left to add;
- Auto Save
- Delete Note
- Edit Category
- settings page
Owensoft Blog - my cool blog, site, community
News Jamaica - best news and links site ever (updated, cleaner faster!)
Newogame Wii Game Dev Blog - Homebrew games
Adjust the settings so that changing from Simple to Formatted doesn't give an error when no text has yet been entered.
.
SHANTI II - Ubuntu 13.04 64bit Desktop
HP Pav G60-236US 3GB RAM Laptop, Ubuntu 13.04 64bit and Win7 Home
"So Daddy, how come you telling me stealing not right when YOU copying DVDs? How come? How Come?"
Changes to posting in Classifieds
Will do. The error comes up because its trying to save the note but I'll fix that in the evening
Owensoft Blog - my cool blog, site, community
News Jamaica - best news and links site ever (updated, cleaner faster!)
Newogame Wii Game Dev Blog - Homebrew games
I like this. I will try to implement this in ASP.NET when i get some free time. Maybe a little friendly competition?
Owensoft Blog - my cool blog, site, community
News Jamaica - best news and links site ever (updated, cleaner faster!)
Newogame Wii Game Dev Blog - Homebrew games
This is cool... why don't more programmers on techjam give us some sample work of what they do. i would like to see some more apps.
The price of anything is the amount of life you exchange for it.
Henry David Thoreau
You could have gotten a script out there and save you the time....
but good app.
|--- www.RealJamaicaEstate.com ™ ---|
Invest small = small returns [micro enterprise] | Invest Big = returns Big [macro enterprise]
--- www.fashionsJAMAICA.com ™ -|- www.ChampsJamaica.com ™
More money, more problems.
yeah I could, but a note pad app is easy code and adds to my online portfolio of projects. As simple as it is.
Well version 1 is almost completed (pending any major flaws or bugs). Here is the Data definition so far;
It should be easy to see what every column means. Category list is a comma separated list of numbers.Code:CREATE TABLE IF NOT EXISTS `note` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `info` text NOT NULL, `type` varchar(10) NOT NULL, `color` varchar(10) NOT NULL, `category_list` varchar(255) NOT NULL, `datecreated` datetime NOT NULL, `dateupdated` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; CREATE TABLE IF NOT EXISTS `note_category` ( `id` tinyint(4) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `rank` tinyint(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
Owensoft Blog - my cool blog, site, community
News Jamaica - best news and links site ever (updated, cleaner faster!)
Newogame Wii Game Dev Blog - Homebrew games
i like. its simple an pretty straight forward.
i know that there are apps out there but i think that trying to do something for you own is also beneficial.
keep on developing your apps. it makes me want to also publish mine, no matter how simple they are