Posts

Showing posts with the label Doctor

Keeping medical records.

Image
Keeping medical records is very important. Of course, your doctor's office will keep records, but you will want to keep your own set. Was looking at this software for doctor's offices so they can keep records. It is so detailed, that you would enriched if you used this program yourself. The program is called openemr and is available from www.openemr.com (perfect for a doctors office). The have version for several operating systems.  The version that interested me the most was the web version, so you could install it on your own private server and everyone on the network can use it. We setup what is known as a virtual site so that it co resides with other websites from the same server (just like the pros do it).  What is interesting os that you can keep a record of office visits. You can even printout records for  just one visit or print the whole month out. Of course you can add any member of the family maybe add or setup up accounts for relatives that you care ...

Superhero wanted.

Image

The Doctor is in.

Image
Here is a web based browser that emulates sort of the old Eliza program that has been around for years. The code: [code] <HTML><HEAD> <META NAME="Description" CONTENT="Talk to Eliza!"> <TITLE>Eliza, Computer Therapist</TITLE> <SCRIPT language="JavaScript"><!-- // Chat Bot by George Dunlop, www.peccavi.com // Note - Eliza is a Classic Model of chat Bots.. but this implementation is mine :) // May be used/modified if credit line is retained (c) 1997 All rights reserved     loaded = false;                // load flag for interlocking the pages // OBJECT TYPE DEFINITIONS // Keys    maxKey = 36;    keyNotFound = maxKey-1;    keyword = new Array(maxKey);     function key(key,idx,end){        this.key = key;            ...