Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Web based Notepad Application

  1. #1
    Join Date
    Feb 2003
    Posts
    2,216
    Country
    Jamaica

    Default Web based Notepad Application

    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

  2. #2
    Join Date
    Aug 2002
    Posts
    6,128
    Country
    Jamaica

    Default

    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

  3. #3
    Join Date
    Feb 2003
    Posts
    2,216
    Country
    Jamaica

    Default

    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

  4. #4
    Join Date
    Dec 2004
    Posts
    1,183

    Default

    I like this. I will try to implement this in ASP.NET when i get some free time. Maybe a little friendly competition?
    'If we're supposed to work in Hex, why have we only got A fingers?'

    Follow Me: @psybuck2002us

  5. #5
    Join Date
    Feb 2003
    Posts
    2,216
    Country
    Jamaica

    Default

    Quote Originally Posted by ramesh View Post
    Adjust the settings so that changing from Simple to Formatted doesn't give an error when no text has yet been entered.
    fixed a couple bugs last night but my net connection at home down

    Quote Originally Posted by psybuck2002us View Post
    I like this. I will try to implement this in ASP.NET when i get some free time. Maybe a little friendly competition?
    sure, I will pray for your safe journey
    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

  6. #6
    Join Date
    Jul 2004
    Posts
    2,250
    Country
    Sierra Leone

    Default

    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

  7. #7
    Join Date
    Feb 2006
    Posts
    4,149
    Country
    Jamaica

    Default

    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

  8. #8
    Join Date
    Jul 2004
    Posts
    2,250
    Country
    Sierra Leone

    Default

    Quote Originally Posted by Utech22 View Post
    You could have gotten a script out there and save you the time....
    but good app.
    Utech you no easy in that case script out there for everything!
    The price of anything is the amount of life you exchange for it.
    Henry David Thoreau

  9. #9
    Join Date
    Feb 2003
    Posts
    2,216
    Country
    Jamaica

    Default

    Quote Originally Posted by duster View Post
    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.
    More money, more problems.

    Quote Originally Posted by Utech22 View Post
    You could have gotten a script out there and save you the time....
    but good app.
    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;
    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 ;
    It should be easy to see what every column means. Category list is a comma separated list of numbers.
    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

  10. #10
    Join Date
    Mar 2005
    Posts
    28
    Country
    Jamaica

    Default

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •