ToothBrash: A Java based Reminder for PC
Page 1 of 1 • Share •
ToothBrash: A Java based Reminder for PC
The project is a Reminder. The current version is really too simple. What it can do is:
1. Add a reminder time of course.
2. Add a reminder message.
3. The input window disappears after you have input message and time. However, it leaves an icon in the NotificationArea/SystemTray using which you can discard the reminder any time you want.
There is a big limitation, the reminder is discarded if you shut down your computer. So its kind of short-time-reminder.
I will try to overcome this limitation next time.
Here is the source. File size 7.1 KB.
And here is the executable files' archive. File size 11.2 KB.
To run the program, extract the Remainder-Execute.zip archive. You will see a read me file there. It includes instructions for Linux users. I don't know commands for windows. Is there anyone who can help by providing a little batch file to run my reminder?
I have used a little icon here. I got that some where in my the System files in my Ubuntu. I didn't like that much. Can you give me something better? Like an alarm or something else.
The name of the tool is Tooth brash, lets see who can tell why it is so
1. Add a reminder time of course.
2. Add a reminder message.
3. The input window disappears after you have input message and time. However, it leaves an icon in the NotificationArea/SystemTray using which you can discard the reminder any time you want.
There is a big limitation, the reminder is discarded if you shut down your computer. So its kind of short-time-reminder.
I will try to overcome this limitation next time.
Here is the source. File size 7.1 KB.
And here is the executable files' archive. File size 11.2 KB.
To run the program, extract the Remainder-Execute.zip archive. You will see a read me file there. It includes instructions for Linux users. I don't know commands for windows. Is there anyone who can help by providing a little batch file to run my reminder?
I have used a little icon here. I got that some where in my the System files in my Ubuntu. I didn't like that much. Can you give me something better? Like an alarm or something else.
The name of the tool is Tooth brash, lets see who can tell why it is so

BIT0102-Mohaimin- Programmer

- Course(s):
- BIT
Blood Group: B+
Posts: 415
Points: 713
Re: ToothBrash: A Java based Reminder for PC
That's a very impressive program
RPP. So, how does the reminder remembers things? I mean, does it store the notes within itself?
I think this image should be good.
You need to resize the image though.

There is another thing. When one reminder is given(I was not able to give multiple reminders), and I close the reminder window, one reminder notification stays in the tray, which is ok. But after it gives alert, it does not prompt whether I want to insert any other reminder or not. Maybe it should ask?
And erm, remainder and reminder are different. Maybe you meant to use reminder in the program
BTW, please do understand that the IITDU uploader is not stable at all. (It is actually created using simple php and ftp combination.
And the place where the files goes does not actually accept file hosting
)
There is another thing I am curious about as well. Apparently, the process goes like this:
1) a shell process is started when Run.sh is used.
2) the jre is executed within the shell.
3) jre exits, and then shell exits.
That is two processes are running at the same time.
It can be avoided if we use a & after the command that is going to be executed from shell. That is, we will be using forking, and the shell will exit after java is executed
Erm, mind explaining this line?
Run.sh still works even if I comment out this line.
Ps: It is toothbrush because you forget brushing your teeth after working late at night maybe?
RPP. So, how does the reminder remembers things? I mean, does it store the notes within itself? I think this image should be good.
You need to resize the image though.

There is another thing. When one reminder is given(I was not able to give multiple reminders), and I close the reminder window, one reminder notification stays in the tray, which is ok. But after it gives alert, it does not prompt whether I want to insert any other reminder or not. Maybe it should ask?
And erm, remainder and reminder are different. Maybe you meant to use reminder in the program
BTW, please do understand that the IITDU uploader is not stable at all. (It is actually created using simple php and ftp combination.
And the place where the files goes does not actually accept file hosting There is another thing I am curious about as well. Apparently, the process goes like this:
1) a shell process is started when Run.sh is used.
2) the jre is executed within the shell.
3) jre exits, and then shell exits.
That is two processes are running at the same time.
It can be avoided if we use a & after the command that is going to be executed from shell. That is, we will be using forking, and the shell will exit after java is executed
Erm, mind explaining this line?
- Code:
cd $(cd `dirname $0` && pwd)
Run.sh still works even if I comment out this line.
Ps: It is toothbrush because you forget brushing your teeth after working late at night maybe?
_________________________________________________________________
Adminship / Moderatorship is not about power, it is about Responsibility.
|About me|My Blog|

BIT0122-Amit- Founder

- Course(s):
- BIT
Blood Group: O+
Posts: 4187
Points: 6601

Re: ToothBrash: A Java based Reminder for PC
how does the reminder remembers things? I mean, does it store the notes within itself?
It simply goes sleep for a while. Input time minus current time. I don't know, is this what you wanted to know?
I think this image should be good.
Its perfect. I am going to use it

When one reminder is given(I was not able to give multiple reminders), and I close the reminder window, one reminder notification stays in the tray, which is ok. But after it gives alert, it does not prompt whether I want to insert any other reminder or not. Maybe it should ask?
Yeah it should I thing. That requirement is added to the next version
Actually, I have made this one to store only one reminder. To store multiple more than one, you need to run the program more than one times. Of course very bad
And erm, remainder and reminder are different. Maybe you meant to use reminder in the program
Yeah I know, you know my spelling problem. You got that gaze and guess several times. I used the wrong one here also. After I got that, I corrected it as much as possible. Looks like I missed some
It can be avoided if we use a & after the command that is going to be executed from shell. That is, we will be using forking, and the shell will exit after java is executed
I saw some where using $ like you said, but it was not clear to me before. Now it is clear, thanks.
Run.sh still works even if I comment out this line.
It will work if you are in the program's root directory. Otherwise it is not supposed to work.
The line you asked to explain moves you to Run.sh 's directory, which is the root of ToothBrash. I got that command googling just before I made that Run.sh file. I don't know, may be there is a better way to do that.
It is toothbrush because you forget brushing your teeth after working late at night maybe?
Bull's NOSE!!! It isn't me. Its Rokon.

BIT0102-Mohaimin- Programmer

- Course(s):
- BIT
Blood Group: B+
Posts: 415
Points: 713
Re: ToothBrash: A Java based Reminder for PC
মুহা, আমারে টাকা দেওয়া লাগবো........
_________________________________________________________________
Code Explosion Blog | Code Explosion Wiki | The Rokonoid | নির্ঝরিণী

BIT0112-Rokon- Programmer

- Course(s):
- BIT
Blood Group: O+
Posts: 673
Points: 1269

Re: ToothBrash: A Java based Reminder for PC
BIT0112-Rokon wrote:মুহা, আমারে টাকা দেওয়া লাগবো........

BIT0102-Mohaimin- Programmer

- Course(s):
- BIT
Blood Group: B+
Posts: 415
Points: 713
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum
Active Topics!


» Understanding Timestamp Based Protocol
» Hi from Newbie
» Compare an image from a list of images in the sql database....tell which image is matching
» Sending email without email ID
» teach yourself c by herbert schildt pdf
» .NET MVC3: Unable to find the requested .Net Framework Data Provider. It may not be installed.
» SAD Slides: 4.1, 4.2
» QA topic Presentation - Urgent Notice