This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <mysql/mysql.h> | |
/* | |
The program is a demonstration of using prepared statements to perform operations on the below table in mariadb. | |
The statements include: insert, select, delete, etc. | |
CREATE TABLE person ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# used to play in the typora application | |
import pyperclip as pc | |
import pyautogui as pa | |
# specify input file before running | |
srcFileName=r"C:\tmp\pyautogui-play\grok-determinant.md" | |
# srcFileName=r"C:\tmp\pyautogui-play\test.md" | |
srcFile = open(srcFileName,mode='r', encoding='utf-8') | |
allFileLines = srcFile.readlines() # note, the '\n' is kept in each line | |
allFileLines = [ line.strip() for line in allFileLines] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit uDrawScreen; | |
{$mode objfpc}{$H+} | |
interface | |
uses | |
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls,LCLIntf, LCLType; | |
type |
OlderNewer