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

Thread: Web based Notepad Application

  1. #1
    Join Date
    Feb 2003
    Posts
    3,184
    Rep Power
    0

    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

  2. #2
    Join Date
    Aug 2002
    Posts
    6,223
    Rep Power
    0

    Default

    Adjust the settings so that changing from Simple to Formatted doesn't give an error when no text has yet been entered.
    .
    PC - Ubuntu 15.04 64bit Desktop
    HP Pav G60-236US 3GB RAM Laptop, Ubuntu 15.04 64bit and Win7 Home

    "So Daddy, how come you telling me stealing not right when YOU copying DVDs? How come? How Come?"


    RIP Ramesh ...

  3. #3
    Join Date
    Feb 2003
    Posts
    3,184
    Rep Power
    0

    Default

    Will do. The error comes up because its trying to save the note but I'll fix that in the evening

  4. #4
    Join Date
    Dec 2004
    Posts
    1,181
    Rep Power
    0

    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
    3,184
    Rep Power
    0

    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

  6. #6
    Join Date
    Jul 2004
    Posts
    2,250
    Rep Power
    0

    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,242
    Rep Power
    0

    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
    Rep Power
    0

    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
    3,184
    Rep Power
    0

    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.

  10. #10
    Join Date
    Mar 2005
    Posts
    28
    Rep Power
    0

    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
  •