Search found 20 matches: birth

Return to advanced search

Re: Fine tune Phi2 from Microsoft with your own data

... can be overcome by knowledge, wisdom, and devotion. - Karma: This is the action, the deed, and the consequence that bind the jiva to the cycle of birth and death, which is also called samsara. Karma is the cause of all bondage, and the obstacle to all liberation. Karma is also the difference between ...
by Antonio Linares
Mon Jan 15, 2024 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fine tune Phi2 from Microsoft with your own data
Replies: 11
Views: 1251

Re: el DTPICKER el MsgYesNo() etc en ingles y otros idiomas

... "Nombres:", NIL, "Nomes:", NIL,  "Nomi:" },  ;                          { "Date of birth:", "Fecha nacimiento:", NIL, "Data de nascimento:", NIL, "Data di nascita:" }, ;                      ...
by goosfancito
Fri Aug 04, 2023 6:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: el DTPICKER el MsgYesNo() etc en ingles y otros idiomas
Replies: 10
Views: 1190

Re: [OT] New post at Harbour Magazine

... that currently become part of most modern languages, knows as closures or anonymous functions. And they did it at the very beggining of the birth of modern programming. I'm currently in a TypeScript/JS course, and can see many concepts introduced as "marvels" ... when we have had ...
by Carlos Mora
Fri Nov 03, 2017 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: [OT] New post at Harbour Magazine
Replies: 7
Views: 1451

Re: Google Cloud Platform

... but it was not encrypted and contained sensitive data pertaining to more than 200,000 patients. Most victims affected had their names, dates of birth, and other basic information compromised, but Premier Healthcare says that 1,769 individuals may have had their Social Security numbers or financial ...
by Rick Lipkin
Tue May 16, 2017 3:08 pm
 
Forum: Off Topic / Otros temas
Topic: Google Cloud Platform
Replies: 8
Views: 4087

Re: Interfacing with Dicom sistems

... Y Patient ID (Internal ID) 4 20 CX O Y Alternate Patient ID – PID 5 48 XPN R Y Patient Name 6 48 XPN O Mother’s Maiden Name 7 26 TS O Date/Time of Birth 8 1 IS O _ 9 48 XPN O Y Patient Alias 10 1 IS O Race 11 106 XAD O Y Patient Address 12 4 IS B Country Code 13 40 XTN O Y Phone Number – Home 14 ...
by xProgrammer
Tue May 02, 2017 9:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interfacing with Dicom sistems
Replies: 41
Views: 11783

Re: Proposal .. 'just not xBase any more'

... but it was not encrypted and contained sensitive data pertaining to more than 200,000 patients. Most victims affected had their names, dates of birth, and other basic information compromised, but Premier Healthcare says that 1,769 individuals may have had their Social Security numbers or financial ...
by Rick Lipkin
Wed Mar 08, 2017 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Proposal .. 'just not xBase any more'
Replies: 9
Views: 5713

Re: Network Issue

... a lot for a user to browse through looking for one record. And without the ID or MRN, how would they determine this? Let's consider DOB (date of birth). Assuming everyone lives to be 100 or less, we have: 1/365 * 100 = 0.0000274 or, 0.00274% chance of having any given DOB So out of 1 million ...
by James Bott
Mon Jan 13, 2014 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network Issue
Replies: 36
Views: 10937

Re: Using Access on a lan

... use it for their own gain. If you do use Ms Access and you have ANY sensitive data like credit card info or User Social Security and Date of Birth .. Please take my advice and encrypt the data on those sensitive tables. Hope this helps .. Rick Lipkin // where .exe started from is default ...
by Rick Lipkin
Tue Apr 09, 2013 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Access on a lan
Replies: 13
Views: 4381

Re: XBrowse Win7 Bar New Sample

... := TXBrowse():New( oWnd ) because TXBrows() resolves to the currently set derived class. Though I am myself an oops user since the birth of C++, in the case of XBrowse, I strongly advise using the command syntax, which enables bug-free and smallest application code ( both code and ...
by nageswaragunupudi
Fri Dec 31, 2010 7:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse Win7 Bar New Sample
Replies: 61
Views: 13495

Re: xMate ENV file

... much better !! Congrats and best regards !! Saludos Thanks for the kind words. Me too has been a happy user of xMate all these years since its birth. And as you can gather from the interface itself, hbIDE is greatly inspired by xMate. So by all means hbIDE is destined to carry more features ...
by Pritpal Bedi
Tue Jun 22, 2010 10:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xMate ENV file ( Solved )
Replies: 15
Views: 5001

DICOM

... and others I finally have access to a DICOM box (several in fact). But my first job will be to extract some basic data (like patient name, date of birth, gender, type of scan, date of scan etc) from DICOM files exported from older cameras ( over 13 years worth of scans). The required information ...
by xProgrammer
Fri May 21, 2010 1:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DICOM
Replies: 5
Views: 1359

Re: Number of days

... nYearDiffENDIFIF Month( dToDate ) < Month( dFromDate )  RETURN nYearDiff - 1ENDIF// if we reach here we are in the month of birth dateIF Day( dToDate ) >= Day( dFromDate )  RETURN nYearDiff ELSE  RETURN nYearDiff - 1ENDIF Not affected by leap year issues ...
by xProgrammer
Mon Apr 19, 2010 6:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Number of days
Replies: 9
Views: 2999

Re: Number of days

... a somewhat analagous situation where you may or may not need to subtract 1. If I take the current year as an integer and subtract the year of my birth as an integer then the result of that calculation is my age in years provided that it is past my birthday in the current year. If not then I have ...
by xProgrammer
Wed Apr 14, 2010 1:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Number of days
Replies: 9
Views: 2999

Re: tDatabase

... add methods to better emulate a real-word object. For instance adding an Age() method which automatically calculates the age based on the date-of-birth and the current date. Or adding an AcceptPayment() method to a customer record which might post data into multiple databases like an invoice database, ...
by nageswaragunupudi
Thu Mar 04, 2010 5:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tDatabase
Replies: 16
Views: 4638

Re: tDatabase

... add methods to better emulate a real-word object. For instance adding an Age() method which automatically calculates the age based on the date-of-birth and the current date. Or adding an AcceptPayment() method to a customer record which might post data into multiple databases like an invoice database, ...
by James Bott
Thu Mar 04, 2010 4:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tDatabase
Replies: 16
Views: 4638
Next

Return to advanced search

cron