These are all chats with GPT just the link is provided
2023-03-17
RE: several programming principles like SOLID, KISS, etc
These are all chats with GPT just the link is provided
2023-03-17
RE: several programming principles like SOLID, KISS, etc
This is a ReadMe template to help save you time and effort.
See the Project Name on Linkify.
=IF(OR(LEFT(patient_name, 1)="A", LEFT(patient_name, 1)="B", LEFT(patient_name, 1)="C"), "ABC", | |
IF(OR(LEFT(patient_name, 1)="D", LEFT(patient_name, 1)="E", LEFT(patient_name, 1)="F"), "DEF", | |
IF(OR(LEFT(patient_name, 1)="G", LEFT(patient_name, 1)="H", LEFT(patient_name, 1)="I"), "GHI", | |
IF(OR(LEFT(patient_name, 1)="J", LEFT(patient_name, 1)="K", LEFT(patient_name, 1)="L"), "JKL", | |
IF(OR(LEFT(patient_name, 1)="M", LEFT(patient_name, 1)="N"), "MN", | |
IF(OR(LEFT(patient_name, 1)="O", LEFT(patient_name, 1)="P", LEFT(patient_name, 1)="Q"), "OPQ", | |
IF(OR(LEFT(patient_name, 1)="R", LEFT(patient_name, 1)="S"), "RS", | |
IF(OR(LEFT(patient_name, 1)="T", LEFT(patient_name, 1)="U", LEFT(patient_name, 1)="V"), "TUV", | |
IF(OR(LEFT(patient_name, 1)="W", LEFT(patient_name, 1)="X", LEFT(patient_name, 1)="Y", LEFT(patient_name, 1)="Z"), "WXYZ" | |
) |
HotKeySet("+!d", "ConvDate") ; Shift-Alt-d | |
While 1 | |
Sleep(100) | |
Wend | |
Func ConvDate() | |
sleep(200) | |
Send("^c") |
I often really like to copy a file or folder path to the clipboard. If you use Classic Shell with the additional Shell Explorer toolbar, then you can do this by following these instructions. Much of this information I found on Winaero [^1] but I also had to adapt it to my own setup.
![Usi
/** | |
* Date Extractor from HTML | |
* | |
* Version: 1.0.0 | |
* | |
* Purpose: | |
* This script is designed to extract dates present in an HTML document. | |
* It uses multiple regular expressions to detect a variety of date formats. | |
* After extracting all the unique dates, it presents them in a new popup window, | |
* sorted in descending order from newest to oldest. If no dates are found, |
/*markdown | |
# MySQL vs. MSSQL | |
Typically in MSSQL we escape keywords by placing them in square brackets, but in MySQL it is not necessary. Sometimes it may cause errors. | |
*/ | |
SELECT * | |
FROM `sakila`.`customer` | |
LIMIT 10 | |
; |