Notepad



Contents:

20260914 122753 https://www.facebook.com/reel/1667999850904459/?fs=e&fs=e
20260912 110238 Corey robert
20260912 093215 Sharon Marsha ann
20260911 140253 Mary Bob Darlene Donna melanie
20260911 115346 Inspiron-3477-AIO: dell
20260911 103612 = -1.1999999999999575
b = 2.523809523809462
c = -0.3928571428571192
d = 0.0833333333333307
20260911 103459 1	1	1
2.52380952380946	-0.392857142857119	0.0833333333333307
20260911 084149 #!/usr/bin/env python3
import argparse

MAX_POINTS = 100

def gaussian_elimination(A, b):
    n = len(A)
    for i in range(n):
        pivot = A[i][i]
        if pivot == 0:
            raise ValueError("Singular matrix")

        for j in range(i, n):
            A[i][j] /= pivot
        b[i] /= pivot

        for k in range(i + 1, n):
            factor = A[k][i]
            for j in range(i, n):
                A[k][j] -= factor * A[i][j]
            b[k] -= factor * b[i]

    x = [0.0] * n
    for i in reversed(range(n)):
        x[i] = b[i] - sum(A[i][j] * x[j] for j in range(i + 1, n))
    return x


def load_points_from_file(path):
    xs, ys = [], []
    with open(path, "r") as f:
        for line in f:
            line = line.strip()
            if not line:
                continue
            parts = line.split()
            if len(parts) != 2:
                raise ValueError(f"Invalid line: {line}")
            x, y = map(float, parts)
            xs.append(x)
            ys.append(y)
            if len(xs) > MAX_POINTS:
                raise ValueError("More than 100 points")
    return xs, ys


def poly_regression(xs, ys, order):
    m = order + 1
    XT_X = [[0.0 for _ in range(m)] for _ in range(m)]
    XT_y = [0.0 for _ in range(m)]

    for x, y in zip(xs, ys):
        p = [1.0, x, x*x, x*x*x]
        for i in range(m):
            XT_y[i] += p[i] * y
            for j in range(m):
                XT_X[i][j] += p[i] * p[j]

    coeffs = gaussian_elimination(XT_X, XT_y)

    full = [0.0, 0.0, 0.0, 0.0]
    for i in range(m):
        full[i] = coeffs[i]
    return full


def main():
    parser = argparse.ArgumentParser()
    parser.add_argument("--file", type=str, help="File containing x y pairs")
    parser.add_argument("--order", type=int, default=3, choices=[0,1,2,3])
    args = parser.parse_args()

    if args.file is not None:
        print(f"Reading file: {args.file}")
        xs, ys = load_points_from_file(args.file)
    else:
        print("Enter x y pairs (empty line to finish):")
        xs, ys = [], []
        while True:
            line = input("> ").strip()
            if not line:
                break
            parts = line.split()
            if len(parts) != 2:
                print("Invalid input")
                continue
            x, y = map(float, parts)
            xs.append(x)
            ys.append(y)
            if len(xs) >= MAX_POINTS:
                break

    a, b, c, d = poly_regression(xs, ys, args.order)

    print("Coefficients:")
    print(f"a = {a}")
    print(f"b = {b}")
    print(f"c = {c}")
    print(f"d = {d}")


if __name__ == "__main__":
    main()
20260911 081702 python3 cfit2.py --order 3 --file points
20260911 081119 #!/usr/bin/env python3

MAX_POINTS = 100

def gaussian_elimination(A, b):
    """Solve Ax = b using basic Gaussian elimination (no numpy)."""
    n = len(A)

    # Forward elimination
    for i in range(n):
        # Pivot
        pivot = A[i][i]
        if pivot == 0:
            raise ValueError("Singular matrix encountered")

        # Normalize row
        for j in range(i, n):
            A[i][j] /= pivot
        b[i] /= pivot

        # Eliminate below
        for k in range(i + 1, n):
            factor = A[k][i]
            for j in range(i, n):
                A[k][j] -= factor * A[i][j]
            b[k] -= factor * b[i]

    # Back substitution
    x = [0.0] * n
    for i in reversed(range(n)):
        x[i] = b[i] - sum(A[i][j] * x[j] for j in range(i + 1, n))
    return x


def poly_regression(x_vals, y_vals, order=3):
    """Pure Python polynomial regression up to 3rd order."""
    if len(x_vals) != len(y_vals):
        raise ValueError("x and y must have same number of points")
    if len(x_vals) > MAX_POINTS:
        raise ValueError("Maximum of 100 points allowed")

    # Build normal equations: (X^T X) c = X^T y
    # X columns: 1, x, x^2, x^3 (truncated by order)
    m = order + 1
    XT_X = [[0.0 for _ in range(m)] for _ in range(m)]
    XT_y = [0.0 for _ in range(m)]

    for x, y in zip(x_vals, y_vals):
        powers = [1.0, x, x*x, x*x*x]

        for i in range(m):
            XT_y[i] += powers[i] * y
            for j in range(m):
                XT_X[i][j] += powers[i] * powers[j]

    # Solve for coefficients
    coeffs = gaussian_elimination(XT_X, XT_y)

    # Always return 4 coefficients (pad with zeros)
    full = [0.0, 0.0, 0.0, 0.0]
    for i in range(m):
        full[i] = coeffs[i]
    return full


def main():
    print("Enter x y pairs (max 100). Empty line to finish.")
    xs, ys = [], []
    while True:
        line = input("> ").strip()
        if not line:
            break
        parts = line.split()
        if len(parts) != 2:
            print("Invalid input, enter: x y")
            continue
        x, y = map(float, parts)
        xs.append(x)
        ys.append(y)
        if len(xs) >= MAX_POINTS:
            print("Reached 100 points.")
            break

    order = int(input("Polynomial order (0–3): ").strip())
    a, b, c, d = poly_regression(xs, ys, order)

    print("\nCoefficients:")
    print(f"a = {a}")
    print(f"b = {b}")
    print(f"c = {c}")
    print(f"d = {d}")


if __name__ == "__main__":
    main()
20260911 080753 print("\nPolynomial coefficients:")
    print(f"a (constant) = {a}")
    print(f"b (linear)   = {b}")
    print(f"c (quadratic)= {c}")
    print(f"d (cubic)    = {d}")

    # Residuals
    y_pred = np.polyval(coeffs[::-1], x_vals)
    residuals = y_vals - y_pred

    print("\nResiduals:")
    for i, r in enumerate(residuals):
        print(f"Point {i}: {r}")

    # R²
    r2 = compute_r2(x_vals, y_vals, coeffs)
    print(f"\nR² = {r2}")

    # Plot
    plot_fit(x_vals, y_vals, coeffs, args.order)


if __name__ == "__main__":
    main()
20260911 075736 #!/usr/bin/env python3
import argparse
import numpy as np
import matplotlib.pyplot as plt
import sys

MAX_POINTS = 100

def load_points_from_file(path):
    """
    Load x,y pairs from a text file.
    Format: each line contains: x y
    """
    xs, ys = [], []
    with open(path, "r") as f:
        for line in f:
            if not line.strip():
                continue
            parts = line.split()
            if len(parts) != 2:
                raise ValueError(f"Invalid line: {line.strip()}")
            x, y = map(float, parts)
            xs.append(x)
            ys.append(y)

    if len(xs) > MAX_POINTS:
        raise ValueError(f"File contains more than {MAX_POINTS} points")

    return np.array(xs), np.array(ys)


def poly_regression(x_vals, y_vals, order=3):
    """
    Perform polynomial regression up to 3rd order.
    Returns coefficients [a, b, c, d].
    """
    if len(x_vals) != len(y_vals):
        raise ValueError("x and y must have the same number of points")

    if len(x_vals) > MAX_POINTS:
        raise ValueError(f"Maximum of {MAX_POINTS} points allowed")

    # Vandermonde matrix
    X = np.vander(x_vals, order + 1, increasing=True)

    # Least squares solution
    coeffs, *_ = np.linalg.lstsq(X, y_vals, rcond=None)

    # Pad to always return 4 coefficients
    full = np.zeros(4)
    full[:order+1] = coeffs
    return full


def compute_r2(x_vals, y_vals, coeffs):
    """
    Compute R² goodness-of-fit.
    """
    y_pred = np.polyval(coeffs[::-1], x_vals)
    ss_res = np.sum((y_vals - y_pred)**2)
    ss_tot = np.sum((y_vals - np.mean(y_vals))**2)
    return 1 - ss_res/ss_tot if ss_tot != 0 else 1.0


def plot_fit(x_vals, y_vals, coeffs, order):
    """
    Plot original points and fitted polynomial curve.
    """
    x_plot = np.linspace(min(x_vals), max(x_vals), 500)
    y_plot = np.polyval(coeffs[::-1], x_plot)

    plt.scatter(x_vals, y_vals, color="blue", label="Data Points")
    plt.plot(x_plot, y_plot, color="red", label=f"{order}rd Order Fit")
    plt.xlabel("x")
    plt.ylabel("y")
    plt.title("Polynomial Regression")
    plt.legend()
    plt.grid(True)
    plt.show()


def main():
    parser = argparse.ArgumentParser(description="Polynomial regression up to 3rd order.")
    parser.add_argument("--order", type=int, default=3, choices=[0,1,2,3],
                        help="Polynomial order (0–3)")
    parser.add_argument("--file", type=str,
                        help="Load x,y points from file (each line: x y)")
    args = parser.parse_args()

    if args.file:
        x_vals, y_vals = load_points_from_file(args.file)
    else:
        print("Enter x,y pairs (max 100). Empty line to finish.")
        xs, ys = [], []
        while True:
            line = input("> ").strip()
            if not line:
                break
            parts = line.split()
            if len(parts) != 2:
                print("Invalid input, enter: x y")
                continue
            x, y = map(float, parts)
            xs.append(x)
            ys.append(y)
            if len(xs) >= MAX_POINTS:
                print("Reached 100 points.")
                break
        x_vals = np.array(xs)
        y_vals = np.array(ys)

    coeffs = poly_regression(x_vals, y_vals, args.order)
    a, b, c, d = coeffs

    print("\nPolynomial coefficients
20260910 061458 sudo grub-install --target=x86_64-efi --efi-directory=/mnt/boot/efi --boot-directory=/mnt/boot --removable
sudo update-grub
20260907 170757 https://maincey.com/products/hcrutches2998?utm_source=FACEBOOK_ADS&utm_term=25223865963889856&utm_medium=120252459818480334&utm_campaign=120252459818590334&utm_content=120252459818540334&pixel_id=78f9c16ecb80ee1c8b251d2c7b8c6e46&utm_id=120252459818480334&fbclid=IwY2xjawUMMPBwZG9mAWV4dG4DYWVtATAAYWRpZAGrOPmfP3zOc3J0YwZhcHBfaWQQMjIyMDM5MTc4ODIwMDg5MgABHgN-fMv-CI9ehb4XmGbRcBJJBwMVZ6u71tAIIhsuono-BjsNWsx8IXAAB0S9_aem_y0wc2QJGacL3XQ_566baaQ
20260907 143839 https://www.linkedin.com/help/linkedin/ask/tsvlo
20260907 142939 accessing your account: https://lnkd.in/eaxzHeSV 

Wishing you all the best! Thanks!  -
20260907 130723 https://www.linkedin.com/in/chris-clement-1676261/
20260907 130648 linkedin     chris675@cc.c 1's -> chris@cc.c 1's-> lirb66
20260907 124347 https://www.linkedin.com/in/chris-clement-1676261/
20260907 110742 Greg
20260907 110549 Casey Kate julie
20260906 122913 Your connection isn't private
Attackers might be trying to steal your information from chrisclement.com (for example, passwords, messages, or credit cards).
net::ERR_CERT_DATE_INVALID
20260906 122705 chrisclement.com
YR2
Root YR
Subject Name
Common Name
chrisclement.com
Issuer Name
Country
US
Organization
Let's Encrypt
Common Name
YR2
Validity
Not Before
Mon, 08 Jun 2026 16:51:56 GMT
Not After
Sun, 06 Sep 2026 16:51:55 GMT
Subject Alt Names
DNS Name
chrisclement.com
DNS Name
www.chrisclement.com
Public Key Info
Algorithm
RSA
Key Size
3072
Exponent
65537
Modulus
F0:75:16:03:A3:83:C2:66:7E:A4:94:EC:AB:0C:D9:C2:7B:F8:3B:D3:C4:A6:52:11:3C:C4:FB:2A:87:10:87:2C:18:27:59:C6:BD:94:22:FF:D6:D0:18:AB:DE:CA:69:C5:EF:DB:B7:A7:21:E6:7C:09:13:09:F9:77:0B:34:01:7B:33:BB:3F:62:B9:DC:70:1D:FF:1C:5D:67:28:F1:12:69:EB:F4:05:E9:F5:83:FF:09:99:ED:09:B0:F1:B7:31:78:D5:AA:C4:A2:47:69:8D:65:E6:E0:82:36:E3:18:BC:86:54:71:60:C5:B7:9A:73:8C:07:FE:82:13:F7:97:28:E0:C7:AA:8E:B3:53:8D:97:FE:CF:29:43:96:2E:CC:5F:1E:72:33:DA:0F:A4:63:24:C8:26:E3:4F:AD:E7:A4:C5:8C:23:94:16:2A:FE:96:8E:78:96:78:54:32:31:E2:58:74:A1:B0:10:24:C5:D0:68:3D:15:5F:C6:86:44:B7:7A:6C:A2:2A:31:9F:6C:89:5F:30:7C:AD:F3:76:AC:53:FB:03:F2:25:AA:3B:52:8B:5A:12:74:DF:A1:FE:E0:68:49:A3:67:16:08:6A:03:A7:0C:48:A7:61:F0:1E:21:BB:3D:EA:67:5E:5E:B5:73:71:2E:D8:C6:37:B3:06:30:E9:CB:6C:78:28:F5:49:38:EE:F6:83:32:D6:02:C6:DD:A7:37:B0:1A:4B:4D:C1:36:7F:A0:0B:71:55:E6:3D:10:B7:D6:D0:D9:26:9A:FF:54:07:D6:1E:1E:7F:2E:DB:FD:3A:DF:C8:D7:3F:66:7C:76:65:7F:74:76:24:22:A4:83:A1:AE:34:84:81:51:C9:E8:A0:AB:92:90:E7:CD:97:9D:62:7F:53:01:DB:33:BF:36:59:AF:59:23:42:17:E7:A0:B8:90:01:BF:74:4D:66:80:18:9E:18:D4:69:EA:F9:75:E3:17:25:DF:66:00:C3:A5:7D:B5:CD:DF:C6:75:3D:30:8E:B8:AD
Miscellaneous
Serial Number
05:E5:B1:3B:8D:31:DB:9D:A8:7C:5D:5A:E6:E3:61:E0:A7:DB
Signature Algorithm
SHA-256 with RSA Encryption
Version
3
Download
PEM (cert)PEM (chain)
Fingerprints
SHA-256
8B:A1:C7:DD:F6:64:6E:0C:73:13:E9:37:46:12:DF:E3:FE:76:F9:97:8E:86:7E:51:75:4F:3D:E5:67:1D:00:03
SHA-1
8C:82:A7:F7:73:FF:D8:F8:EE:7C:37:D9:34:37:E1:A4:B9:AB:3A:D9
[This extension has been marked as critical, meaning that clients must reject the certificate if they do not understand it.]
Basic Constraints
Certificate Authority
No
[This extension has been marked as critical, meaning that clients must reject the certificate if they do not understand it.]
Key Usages
Purposes
20260906 121215 incandescentTrumprage@gop.com
20260906 091903 Mike kj4fed
20260906 082833 Kay Kathy Bob sandy ginger ann. N4udz
20260828 164038 Kay Kathy Bob sandy ginger ann
20260819 120508 akboundangel@gmail.com  Christine Schlerf 727 433 0877 3427 Hyde Park Dr, Clearwater, FL 33761, USA     Christine schlerf 775 468 3643
20260819 120136 akboundangel@gmail.com  Christine Schlerf 727 433 0877 3427 Hyde Park Dr, Clearwater, FL 33761, USA     Christine schlerf
20260819 120020 3427 Hyde Park Dr, Clearwater, FL 33761, USA     Christine schlerf
20260815 144316 Joann an Kathleen gassy has ghassan
20260815 095918 1921 W Bay Dr, Largo, FL 33770
20260813 145628 0451wet paper disconnect blocked
20260813 084453 0451
20260813 081020 0451
20260813 081007 Debin
20260813 081002 Debin
20260810 093130 Debin
20260810 080418 Lynn tbtc
20260810 080403 Ambesonne Dog Lover 2 Pack Fitted Sheet, Paw Print and Bones, Bed Cover All-Round Elastic Deep Pockets 2 Pieces, Package Contains 2 Twin Size Fitted Sheets, Umber Beige Grey 
 https://a.co/d/0bWaN6yt
20260727 115712 Ambesonne Dog Lover 2 Pack Fitted Sheet, Paw Print and Bones, Bed Cover All-Round Elastic Deep Pockets 2 Pieces, Package Contains 2 Twin Size Fitted Sheets, Umber Beige Grey 
 https://a.co/d/0bWaN6yt
20260724 184757 Join me at Half Day Fishing on the Queen Fleet https://meetu.ps/e/Q1n4Z/70gYF/i
20260724 140509 https://www.facebook.com/groups/1058738207837682/user/775712490    singles night
https://www.facebook.com/share/p/1cE64BDT5m/
Ann Ponce de Leon
20260724 051856 COMMUNICATIONS LOG  (Form- 309)

Form Info
Task #   
  

Date/Time Prepared: 
Click to Add Date/Time

For Operational Period #  
Task Name  
Operator Name  
Station ID 
Express Sender 
KA4UPC
      PAGE #   
1
    Track & Increment your page #'s (Default is 1)         Paste Data from a Spreadsheet           CLEAR Data
DATE/TIME 	STATION ID  
FROM            TO    	SUBJECT
Click for Date/Time
Click for Date/Time
20260724 044721 Your lock comes with two default codes: a programming code (0000) and a user code (1234). Once you’ve set up your lock, please delete these codes and replace them with codes that only you know. Until the default user code is deleted, it will remain active even if you have created your own user codes.

To ensure your lock is set up securely, please take the following steps:
Step 1: Change the default programming code (0000).
Step 2: Create your own user codes.
Step3: Delete the default user code (1234).
20260722 172952 chrisclement@chrisclement-OptiPlex-990:~$ wget 10.0.0.10/mmlinux/test/mm.htm
Prepended http:// to '10.0.0.10/mmlinux/test/mm.htm'
--2026-07-22 20:23:54--  http://10.0.0.10/mmlinux/test/mm.htm
Connecting to 10.0.0.10:80... failed: Connection refused.
chrisclement@chrisclement-OptiPlex-990:~$ ^C
chrisclement@chrisclement-OptiPlex-990:~$
20260722 104741 run CHIRP



UHF

🔧 Step‑by‑Step Programming
Let’s say your repeater has:

Output (receive) = 444.450 MHz    443.4 

Input (transmit) = 449.450 MHz    448.4  156.7

CTCSS tone = 146.2 Hz

1️⃣ Enter VFO mode
Press [VFO/MR] until the display shows a frequency (not a channel number).

2️⃣ Set the receive frequency
Use the keypad to enter 444.450 MHz — this is the repeater’s output.

3️⃣ Set the offset direction
Press [MENU] → 25 SHIFT‑D

Choose “+” because your transmit frequency is higher than receive.
Press [MENU] again to confirm.

4️⃣ Set the offset amount
Press [MENU] → 26 OFFSET

Enter 5.000 MHz (standard UHF offset).
Press [MENU] to save.

5️⃣ Set the transmit CTCSS tone
Press [MENU] → 13 T‑CTCS

Scroll or type 146.2 Hz.
Press [MENU] to confirm.

6️⃣ (Optional) Set receive CTCSS tone
Press [MENU] → 11 R‑CTCS

Use the same 146.2 Hz if the repeater requires tone squelch on receive.
Press [MENU] to confirm.

7️⃣ Store to a memory channel
Press [MENU] → 27 MEM‑CH

Choose an empty channel (e.g., 007) using the arrow keys.
Press [MENU] to store.
Then press [EXIT].

8️⃣ Verify
Switch to MR mode (press [VFO/MR]) and select CH 007.
When you key up, the radio should transmit on 449.450 MHz and receive on 444.450 MHz with the tone active.




----------------------------------------------------------------------------------
VHF 

w4acs
Here’s how to manually program your Baofeng UV‑5R for a VHF repeater with
output 145.170 MHz and CTCSS 156.7 Hz — assuming the repeater uses the standard –600 kHz offset (so your transmit/input is 144.570 MHz).

🔧 Step‑by‑Step Programming
1️⃣ Enter VFO mode
Press [VFO/MR] until the display shows a frequency (not a channel number).

2️⃣ Set the receive frequency
Type 145.170 MHz on the keypad — this is the repeater’s output.

3️⃣ Set the offset direction
Press [MENU] → 25 SHIFT‑D, choose “–”, then [MENU] again to confirm.

4️⃣ Set the offset amount
Press [MENU] → 26 OFFSET, enter 0.600, then [MENU] to save.

5️⃣ Set the transmit CTCSS tone
Press [MENU] → 13 T‑CTCS, scroll or type 156.7, then [MENU] to confirm.

6️⃣ (Optional) Set receive CTCSS tone
Press [MENU] → 11 R‑CTCS, select 156.7, then [MENU] to confirm if the repeater requires tone squelch on receive.

7️⃣ Store to a memory channel
Press [MENU] → 27 MEM‑CH, pick an empty channel (e.g., CH 008), press [MENU] to store, then [EXIT].

8️⃣ Verify
Switch to MR mode, select CH 008, and key up — the radio should transmit on 144.570 MHz and receive on 145.170 MHz with the 156.7 Hz tone active.

🧠 Quick Check
If you see “T” or “CT” on the display, your tone encoder is active.
You can confirm this by pressing [MENU] → 13 T‑CTCS again — the tone frequency will appear.
20260722 094541 Message ID: NLF2IV6QVFK6
Date: 2026/05/26 14:03  (UTC)
From: KA4UPC
To: PINCO-TRAINING 
Source: KA4UPC
Location: 28.073020N, 82.775938W (GPS)
Subject: ICS 214A- 20260526 Winlink Training - Chris Clement - May 19th, 2026 / 0745 to

ICS 214A

PAGE #: 1 

1. Incident Name:	20260526 Winlink Training
2. Operational Period:
 From:	May 19th, 2026 / 0745
 To:	 May 20th, 2026 / 1622
3: Individual Name:	Chris Clement
4: ICS Section:	PinCo ACS
5: Assignment/Location:	Lealman Exchange Evacuation Shelter
----------------------------------------------
6. ACTIVITY LOG OF MAJOR EVENTS
TIME	ACTIVITIES
09:56	left home
10:30	arr EOC to get equipment
11:00	left EOC
11:30	arr Lealman Exchange Evacuation Shelter
12:00	took inventory
12:30	ordered supplies
13:00	left Lealman Exchange Evacuation Shelter
13:30	arr EOC to return equipment
14:00	left EOC
14:30	arr home
	
	
	
	
	
	
	
	
	
	
	
	
	
	
---------------------------------------------
7. PREPARED BY:	Chris Clement KA4UPC  
 ---------------------------------------------
Express Sending Station:	KA4UPC
Senders Express Version:	1.7.31.0
Senders Template Version:	ICS 214A  v 15.3
[No changes or editing of this message are allowed]
20260722 093818 Message ID: 97EWVWSZ4R26
Date: 2026/05/06 16:20  (UTC)
From: KA4UPC
To: PINCO-TRAINING
Source: KA4UPC
Location: 28.062500N, 82.791667W (Grid square)
Subject: ICS-213: P/ Test of message precedence - 2026-05-06 12:16
GENERAL MESSAGE (ICS 213)
PinCo ACS
** THIS IS AN EXERCISE **
1. Incident Name: EXERCISE 20260505 PinCo ACS
2. To (Name and Position): Michael H. Drake / PinCo ACS Training
Officer
3. From (Name and Position): Chris Clement / PinCo ACS radio operator
4. Subject: P/ Test of message precedence
5. Date: 2026-05-06
6. Time: 12:16
7. Message:
Unable to attend this week's maintenance / training session.
8. Approved by: Eva Stratt
8a. Position/Title:  PinCo ACS  COML
[Sender: KA4UPC Lat: 28.062500, Lon:-82.791667, MGRS: ; Location
source: Grid square]-----------------------------------
Express Sending Station: KA4UPC
Senders Express Version: 1.7.31.0
Senders Template Version: ICS 213  v.43.8
[No changes or editing of this message are allowed]
20260718 160959 Steve Graves mensa
20260718 135703 Yaz 7274044721 ac
20260718 112029 Lightandthought.com
20260714 095818 https://m.facebook.com/story.php?story_fbid=1479797993725399&id=100095242752973
20260714 095805 https://www.facebook.com/reel/1149882743979229/?fs=e&fs=e
20260712 183158 https://www.facebook.com/reel/1149882743979229/?fs=e&fs=e
20260712 163952 [Sun Jul 12 19:33:48.673622 2026] [mpm_prefork:notice] [pid 2056:tid 2056] AH00170: caught SIGWINCH, shutting down gracefully
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
[Sun Jul 12 19:33:48.823314 2026] [mpm_prefork:notice] [pid 9167:tid 9167] AH00163: Apache/2.4.66 (Ubuntu) configured -- resuming normal operations
[Sun Jul 12 19:33:48.823375 2026] [core:notice] [pid 9167:tid 9167] AH00094: Command line: '/usr/sbin/apache2 -D FOREGROUND'
20260712 162752 GRANT ALL PRIVILEGES ON micromtr.* TO 'mmuser1'@'127.0.0.1';
FLUSH PRIVILEGES;
20260712 162730 [Sun Jul 12 18:21:53.513532 2026] [php:error] [pid 2232:tid 2232] [client 10.0.0.10:59586] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/6Geti.php:33\nStack trace:\n#0 /var/www/html/6Geti.php(33): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/6Geti.php on line 33
[Sun Jul 12 19:24:03.399115 2026] [php:error] [pid 2233:tid 2233] [client 10.0.0.10:57916] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/6Geti.php:33\nStack trace:\n#0 /var/www/html/6Geti.php(33): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/6Geti.php on line 33
20260712 161806 GRANT ALL PRIVILEGES ON micromtr.* TO 'mmuser1'@'127.0.0.1';
FLUSH PRIVILEGES;
20260712 161754 mysql> show grants for mmuser1@127.0.01;
ERROR 1141 (42000): There is no such grant defined for user 'mmuser1' on host '127.0.01'
mysql> show grants for mmuser1@127.0.0.1;
+---------------------------------------------+
| Grants for mmuser1@127.0.0.1                |
+---------------------------------------------+
| GRANT USAGE ON *.* TO `mmuser1`@`127.0.0.1` |
+---------------------------------------------+
1 row in set (0.00 sec)

mysql> GRANT ALL PRIVILEGES ON `micromtr`.* TO `mmuser1`@`127.0.0.1';
    `> ^C
mysql> show grants for mmuser1@127.0.0.1;
+---------------------------------------------+
| Grants for mmuser1@127.0.0.1                |
+---------------------------------------------+
| GRANT USAGE ON *.* TO `mmuser1`@`127.0.0.1` |
+---------------------------------------------+
1 row in set (0.00 sec)

mysql> GRANT ALL PRIVILEGES ON `micromtr`.* TO `mmuser1`@`localhost`;
Query OK, 0 rows affected (0.10 sec)

mysql> GRANT ALL PRIVILEGES ON `micromtr`.* TO `mmuser1`@`127.0.0.1`;
Query OK, 0 rows affected (0.09 sec)

mysql> show grants for mmuser1@127.0.0.1;
+---------------------------------------------------------------+
| Grants for mmuser1@127.0.0.1                                  |
+---------------------------------------------------------------+
| GRANT USAGE ON *.* TO `mmuser1`@`127.0.0.1`                   |
| GRANT ALL PRIVILEGES ON `micromtr`.* TO `mmuser1`@`127.0.0.1` |
+---------------------------------------------------------------+
2 rows in set (0.00 sec)

mysql> exit
Bye
chrisclement@chrisclement-OptiPlex-990:~$ mysql -h 127.0.0.1 -u mmuser1 -p micromtr
Enter password: 
ERROR 1045 (28000): Access denied for user 'mmuser1'@'localhost' (using password: YES)
chrisclement@chrisclement-OptiPlex-990:~$ mysql -h 127.0.0.1 -u mmuser1 -p micromtr
20260712 160833 GRANT ALL PRIVILEGES ON micromtr.* TO 'mmuser1'@'127.0.0.1';
FLUSH PRIVILEGES;
20260712 154627 $link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr");
20260712 154520 chrisclement@chrisclement-OptiPlex-990:~$ sudo ss -tlnp | grep 3306
LISTEN 0      151                                      127.0.0.1:3306       0.0.0.0:*    users:(("mysqld",pid=2203,fd=32))                                                                                                                                                            
LISTEN 0      70                                       127.0.0.1:33060      0.0.0.0:*    users:(("mysqld",pid=2203,fd=30))
20260712 154500 chrisclement@chrisclement-OptiPlex-990:~$ sudo ss -tlnp | grep 3306
LISTEN 0      151                                      127.0.0.1:3306       0.0.0.0:*    users:(("mysqld",pid=2203,fd=32))                                                                                                                                                            
LISTEN 0      70                                       127.0.0.1:33060      0.0.0.0:*    users:(("mysqld",pid=2203,fd=30))
20260712 154443 chrisclement@chrisclement-OptiPlex-990:~$ sudo ss -tlnp | grep 3306
LISTEN 0      151                                      127.0.0.1:3306       0.0.0.0:*    users:(("mysqld",pid=2203,fd=32))                                                                                                                                                            
LISTEN 0      70                                       127.0.0.1:33060      0.0.0.0:*    users:(("mysqld",pid=2203,fd=30))
20260712 154433 $link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr");
20260712 154147 $link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr");
20260712 154136 chrisclement@chrisclement-OptiPlex-990:~$ sudo ss -tlnp | grep 3306
LISTEN 0      151                                      127.0.0.1:3306       0.0.0.0:*    users:(("mysqld",pid=2203,fd=32))                                                                                                                                                            
LISTEN 0      70                                       127.0.0.1:33060      0.0.0.0:*    users:(("mysqld",pid=2203,fd=30))
20260712 154024 chrisclement@chrisclement-OptiPlex-990:~$ sudo netstat -tlnp | grep 3306
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      2203/mysqld         
tcp        0      0 127.0.0.1:33060         0.0.0.0:*               LISTEN      2203/mysqld
20260712 154010 $link = mysqli_connect($host,$username,$password,$database); //for digital ocean
$link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr"); // for Dell


/*$link = mysqli_connect(
    "localhost",
    "youruser",
    "yourpass",
    "yourdb",
    3306,
    "/var/run/mysqld/mysqld.sock"
);
*/
//above for RPi only
if (!$link) {
    echo "Error: Unable to connect to MySQL." . PHP_EOL;
    echo "Debugging errno: " . mysqli_connect_errno() . PHP_EOL;
    echo "Debugging error: " . mysqli_connect_error() . PHP_EOL;
    exit;
}
20260712 152848 $link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr");
20260712 152831 $link = mysqli_connect($host,$username,$password,$database); //for digital ocean
$link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr"); // for Dell


/*$link = mysqli_connect(
    "localhost",
    "youruser",
    "yourpass",
    "yourdb",
    3306,
    "/var/run/mysqld/mysqld.sock"
);
*/
//above for RPi only
if (!$link) {
    echo "Error: Unable to connect to MySQL." . PHP_EOL;
    echo "Debugging errno: " . mysqli_connect_errno() . PHP_EOL;
    echo "Debugging error: " . mysqli_connect_error() . PHP_EOL;
    exit;
}
20260712 152524 [Sun Jul 12 18:21:53.513532 2026] [php:error] [pid 2232:tid 2232] [client 10.0.0.10:59586] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/6Geti.php:33\nStack trace:\n#0 /var/www/html/6Geti.php(33): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/6Geti.php on line 33
20260712 152447 $link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr");
20260712 144635 $link = mysqli_connect("127.0.0.1", "mmuser1", "mmuser1", "micromtr");
20260712 143016 Sun Jul 12 17:22:12.853646 2026] [php:error] [pid 2238:tid 2238] [client 10.0.0.10:38122] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/6Geti.php:33\nStack trace:\n#0 /var/www/html/6Geti.php(33): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/6Geti.php on line 33
chrisclement@chrisclement-OptiPlex-990:~$ mysqladmin variables | grep socket
Command 'mysqladmin' not found, but can be installed with:
s
line 33 follows $link = mysqli_connect($host,$username,$password,$database);


$link = mysqli_connect(
    "localhost",
    "youruser",
    "yourpass",
    "yourdb",
    3306,
    "/var/run/mysqld/mysqld.sock"
);
20260712 131402 Sun Jul 12 15:53:21.618095 2026] [php:error] [pid 2240:tid 2240] [client 10.0.0.10:57634] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/6Geti.php:33\nStack trace:\n#0 /var/www/html/6Geti.php(33): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/6Geti.php on line 33
20260712 131355 $link = mysqli_connect(
    "localhost",
    "youruser",
    "yourpass",
    "yourdb",
    3306,
    "/var/run/mysqld/mysqld.sock"
);
20260712 131022 Sun Jul 12 15:53:21.618095 2026] [php:error] [pid 2240:tid 2240] [client 10.0.0.10:57634] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/6Geti.php:33\nStack trace:\n#0 /var/www/html/6Geti.php(33): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/6Geti.php on line 33
20260712 130931 /run/media/chrisclement/A3C4-8808/6Geti.php
20260712 125502 ********** 9Get v2.31 for Type 1 and Type 2 for RPi **********
 gethostname 10.0.0.19
host2
Sending GET /6Geti.php?userID=chriscle&procID=s612&mmdb1=mmdb3&ctdat=01,000,47467,00073,000,47467,00073,99999,02,000,53327,00072,000,53327,00072,99999,03,000,46919,00059,000,46919,00059,99999,04,000,55178,00060,000,55178,00060,99999,05,000,65275,00058,000,65275,00058,99999,06,000,65278,00059,000,65278,00059,99999,07,000,65500,00059,000,65500,00059,99999,08,000,65535,00059,000,65535,00059,99999,09,000,65535,00058,000,65535,00058,99999,10,000,65534,00059,000,65534,00059,99999,11,000,60925,00060,000,60925,00060,99999,12,000,63337,00061,000,63337,00061,99999,13,000,64947,00060,000,64947,00060,99999,14,000,64860,00060,000,64860,00060,99999,15,000,12826,00060,000,12826,00060,99999,16,000,00566,00060,000,00566,00060,99999, HTTP/1.1
Host: 10.0.0.19

 (747 bytes).

Received HTTP/1.0 500 Internal Server Error
Date: Sun, 12 Jul 2026 19:53:21 GMT
Server: Apache/2.4.66 (Ubuntu)
Content-Length: 0
Connection: close
Content-Type: text/html; charset=UTF-8

 (185 bytes).
___1,0,47467,73
___2,0,53327,72
^C
20260712 121224 ********** 9Get v2.31 for Type 1 and Type 2 for RPi **********
 gethostname 10.0.0.19
host2
Sending GET /6Geti.php?userID=chriscle&procID=s612&mmdb1=mmdb3&ctdat=01,000,47467,00073,000,47467,00073,99999,02,000,53327,00072,000,53327,00072,99999,03,000,46919,00059,000,46919,00059,99999,04,000,55178,00060,000,55178,00060,99999,05,000,65275,00058,000,65275,00058,99999,06,000,65278,00059,000,65278,00059,99999,07,000,65500,00059,000,65500,00059,99999,08,000,65535,00059,000,65535,00059,99999,09,000,65535,00058,000,65535,00058,99999,10,000,65534,00059,000,65534,00059,99999,11,000,60925,00060,000,60925,00060,99999,12,000,63337,00061,000,63337,00061,99999,13,000,64947,00060,000,64947,00060,99999,14,000,64860,00060,000,64860,00060,99999,15,000,12826,00060,000,12826,00060,99999,16,000,00566,00060,000,00566,00060,99999, HTTP/1.1
Host: 10.0.0.19

 (747 bytes).

Received HTTP/1.1 404 Not Found
Date: Sun, 12 Jul 2026 19:10:25 GMT
Server: Apache/2.4.66 (Ubuntu)
Content-Length: 311
Content-Type: text/html; charset=iso-8859-1

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<hr>
<address>Apache/2.4.66 (Ubuntu) Server at 10.0.0.19 Port 80</address>
</body></html>
 (472 bytes).
___14,0,64860,60
___15,0,12826,60
20260712 061328 [Sun Jul 12 08:43:42.634189 2026] [php:error] [pid 962:tid 962] [client 10.0.0.7:49694] PHP Fatal error:  Uncaught mysqli_sql_exception: Access denied for user 'mmuser1'@'localhost' (using password: YES) in /var/www/html/mypie4.php:24\nStack trace:\n#0 /var/www/html/mypie4.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie4.php on line 24, referer: http://10.0.0.15/mypie4.php?after1=20000101000000&befor1=20990601000000&userID1=chriscle&procID1=s612&mmdb1=mmdb3
20260712 061255 ALTER USER 'mmuser1'@'localhost' IDENTIFIED BY 'mmuser1';
FLUSH PRIVILEGES;
20260712 055304 [Sun Jul 12 08:43:42.634189 2026] [php:error] [pid 962:tid 962] [client 10.0.0.7:49694] PHP Fatal error:  Uncaught mysqli_sql_exception: Access denied for user 'mmuser1'@'localhost' (using password: YES) in /var/www/html/mypie4.php:24\nStack trace:\n#0 /var/www/html/mypie4.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie4.php on line 24, referer: http://10.0.0.15/mypie4.php?after1=20000101000000&befor1=20990601000000&userID1=chriscle&procID1=s612&mmdb1=mmdb3
20260711 143636 CREATE TABLE IF NOT EXISTS `microtxt` (
  `index1` bigint(255) NOT NULL AUTO_INCREMENT,
  `userID1` varchar(255) NOT NULL DEFAULT '',
  `procID1` varchar(255) NOT NULL DEFAULT '',
  `tag1` varchar(255) NOT NULL DEFAULT '',
  `entry1` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`index1`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=49 ;

--
-- Dumping data for table `microtxt`
--

INSERT INTO `microtxt` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(33, 'chriscle', 's612', 'L01', '                              612 Ozona '),
(34, 'chriscle', 's612', 'L02', ''),
(35, 'chriscle', 's612', 'L03', '         Energy usage charges due and payable for the period ending.'),
(36, 'chriscle', 's612', 'L04', '         Taxes and customer charges have been added proportionately.'),
(37, 'chriscle', 's612', 'L05', '         Thank you for your prompt payment.'),
(38, 'chriscle', 's612', 'L06', '            Customer      Billing Period             Usage      Amount Due'),
(39, 'chriscle', 's612', 'L07', ' Rate: Non-demand, Non-TOU - Customer chg incl.      @ xxxx     cts/kwh'),
(40, 'chriscle', 's612', 'LGD', '....+....1....+....2....+....3....+....4....+....5....+....6....+....7....+');

CREATE TABLE IF NOT EXISTS `microdat` (
  `index1` bigint(255) NOT NULL AUTO_INCREMENT,
  `userID1` varchar(255) NOT NULL DEFAULT '',
  `procID1` varchar(255) NOT NULL DEFAULT '',
  `tag1` varchar(255) NOT NULL DEFAULT '',
  `entry1` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`index1`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=49 ;

--
-- Dumping data for table `microdat`
--

INSERT INTO `microdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(1, 'chriscle', 's612', 'L21', ' 12.75'),
(2, 'chriscle', 's612', 'L22', ' 2390.625'),
(3, 'chriscle', 's612', 'L23', ' 16.95'),
(4, 'chriscle', 's612', 'L24', ' 1'),
(5, 'chriscle', 's612', 'L25', ' 0             1             2             3'),
(6, 'chriscle', 's612', 'L26', ' 4             5             6             7'),
(7, 'chriscle', 's612', 'L27', ' 7             7             0             0'),
(8, 'chriscle', 's612', 'LGD', '....+....1....+....2....+....3....+....4....+');



CREATE TABLE IF NOT EXISTS `ctdat` (
  `index1` bigint(255) NOT NULL AUTO_INCREMENT,
  `userID1` varchar(255) NOT NULL DEFAULT '',
  `procID1` varchar(255) NOT NULL DEFAULT '',
  `tag1` varchar(255) NOT NULL DEFAULT '',
  `entry1` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`index1`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=203 ;

--
-- Dumping data for table `ctdat`
--

INSERT INTO `ctdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(1, 'chriscle', 's612', 'L31', '  1 - Range'),
(2, 'chriscle', 's612', 'V31', ',0020,1.00,120,000,999,255'),
(3, 'chriscle', 's612', 'L32', '  2 - Kitchen'),
(4, 'chriscle', 's612', 'V32', ',0020,1.00,120,000,999,255'),
(5, 'chriscle', 's612', 'L33', '  3 - Water Heater'),
(6, 'chriscle', 's612', 'V33', ',0020,1.00,240,000,999,255'),
(7, 'chriscle', 's612', 'L34', '  4 - Refrigerator'),
(8, 'chriscle', 's612', 'V34', ',0020,1.00,120,000,999,255'),
(9, 'chriscle', 's612', 'L35', '  5 - Pumphouse'),
(10, 'chriscle', 's612', 'V35', ',0020,1.00,120,000,999,255'),
(11, 'chriscle', 's612', 'L36', '  6 - Pool'),
(12, 'chriscle', 's612', 'V36', ',0020,1.00,240,000,999,255'),
(13, 'chriscle', 's612', 'L37', '  7 - Well Pump'),
(14, 'chriscle', 's612', 'V37', ',0020,0.00,120,000,999,255'),
(15, 'chriscle', 's612', 'L38', '  8 - Air Handler'),
(16, 'chriscle', 's612', 'V38', ',0020,0.99,240,000,999,255'),
(17, 'chriscle', 's612', 'L39', '  9 - Laundry Room'),
(18, 'chriscle', 's612', 'V39', ',0020,1.00,120,000,999,255'),
(19, 'chriscle', 's612', 'L40', ' 10 - Living Room, Attic'),
(20, 'chriscle', 's612', 'V40', ',0020,1.00,120,000,999,255'),
(21, 'chriscle', 's612', 'L41', ' 11 - Small Bedrooms'),
(22, 'chriscle', 's612', 'V41', ',0020,1.00,120,000,999,255'),
(23, 'chriscle', 's612', 'L42', ' 12 - Dryer'),
(24, 'chriscle', 's612', 'V42', ',0020,1.00,240,000,999,255'),
(25, 'chriscle', 's612', 'L43', ' 13 - A/C'),
(26, 'chriscle', 's612', 'V43', ',0020,1.00,240,000,999,255'),
(27, 'chriscle', 's612', 'L44', ' 14 - Garage'),
(28, 'chriscle', 's612', 'V44', ',0020,1.00,120,000,999,255'),
(29, 'chriscle', 's612', 'L45', ' 15 -'),
(30, 'chriscle', 's612', 'V45', ',0020,1.00,120,000,999,000'),
(31, 'chriscle', 's612', 'L46', ' 16 -'),
(32, 'chriscle', 's612', 'V46', ',0020,1.00,120,000,999,000'),
(33, 'chriscle', 's612', 'LGD', '....+....1....+....2....+'),
(34, 'chriscle', 's612', 'VGD', '....3....+....4....+....5....+....6....+....7.');

CREATE TABLE IF NOT EXISTS `mmdb3` (
  `index1` text NOT NULL,
  `userID1` varchar(255) NOT NULL DEFAULT '',
  `procID1` varchar(255) NOT NULL DEFAULT '',
  `entry1` text NOT NULL,
  PRIMARY KEY (`index1`(256))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `mmdb3`
--

INSERT INTO `mmdb3` (`index1`, `userID1`, `procID1`, `entry1`) VALUES
('20161215075913', 'chriscle', 's612', 's61220161215075913,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,012,00011,00000,012,00011,00000,99999,16,011,00010,00000,011,00010,00000,99999,'),
('20161215075634', 'chriscle', 's612', 's61220161215075634,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),
('20161215075635', 'chriscle', 's612', 's61220161215075635,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),

('20161215075636', 'chriscle', 's612', 's61220161215075636,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),

('20161215075637', 'chriscle', 's612', 's61220161215075637,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,');
20260711 061928 sudo apt install apache2 -y
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  apache2-bin apache2-data apache2-utils libapr1 libaprutil1
  libaprutil1-dbd-sqlite3 libaprutil1-ldap
Suggested packages:
  apache2-doc apache2-suexec-pristine | apache2-suexec-custom
The following NEW packages will be installed:
  apache2 apache2-bin apache2-data apache2-utils libapr1 libaprutil1
  libaprutil1-dbd-sqlite3 libaprutil1-ldap
0 upgraded, 8 newly installed, 0 to remove and 39 not upgraded.
Need to get 1,973 kB of archives.
After this operation, 6,172 kB of additional disk space will be used.
Err:1 http://raspbian.raspberrypi.org/raspbian buster/main armhf libapr1 armhf 1.6.5-1
  404  Not Found [IP: 93.93.128.193 80]
Err:2 http://raspbian.raspberrypi.org/raspbian buster/main armhf libaprutil1 armhf 1.6.1-4
  404  Not Found [IP: 93.93.128.193 80]
Err:3 http://raspbian.raspberrypi.org/raspbian buster/main armhf libaprutil1-dbd-sqlite3 armhf 1.6.1-4
  404  Not Found [IP: 93.93.128.193 80]
Err:4 http://raspbian.raspberrypi.org/raspbian buster/main armhf libaprutil1-ldap armhf 1.6.1-4
  404  Not Found [IP: 93.93.128.193 80]
Err:5 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2-bin armhf 2.4.38-3+deb10u8
  404  Not Found [IP: 93.93.128.193 80]
Err:6 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2-data all 2.4.38-3+deb10u8
  404  Not Found [IP: 93.93.128.193 80]
Err:7 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2-utils armhf 2.4.38-3+deb10u8
  404  Not Found [IP: 93.93.128.193 80]
Err:8 http://raspbian.raspberrypi.org/raspbian buster/main armhf apache2 armhf 2.4.38-3+deb10u8
  404  Not Found [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/a/apr/libapr1_1.6.5-1_armhf.deb  404  Not Found [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/a/apr-util/libaprutil1_1.6.1-4_armhf.deb  404  Not Found [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbi
20260710 151953 INSERT INTO `microdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(41, 'chriscle', 's612', 'L21', ' 12.75'),
(42, 'chriscle', 's612', 'L22', ' 2390.625'),
(43, 'chriscle', 's612', 'L23', ' 16.95'),
(44, 'chriscle', 's612', 'L24', ' 1'),
(45, 'chriscle', 's612', 'L25', ' 0             1             2             3'),
(46, 'chriscle', 's612', 'L26', ' 4             5             6             7'),
(47, 'chriscle', 's612', 'L27', ' 7             7             0             0'),
(48, 'chriscle', 's612', 'LGD', '....+....1....+....2....+....3....+....4....+');
20260710 151625 INSERT INTO `microdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(31, 'chriscle', 'mm01', 'L21', ' 12.75'),
(32, 'chriscle', 'mm01', 'L22', ' 2390.625'),
(33, 'chriscle', 'mm01', 'L23', ' 16.95'),
(34, 'chriscle', 'mm01', 'L24', ' 1'),
(35, 'chriscle', 'mm01', 'L25', ' 0             1             2             3'),
(36, 'chriscle', 'mm01', 'L26', ' 4             5             6             7'),
(37, 'chriscle', 'mm01', 'L27', ' 7             7             0             0'),
(38, 'chriscle', 'mm01', 'LGD', '....+....1....+....2....+....3....+....4....+');
20260710 125605 INSERT INTO `mmdb3` (`index1`, `userID1`, `procID1`, `entry1`) VALUES
('20241231101352', 'chriscle', 's612', 



's61220241231101352,01,000,04217,00095,000,37215,00101,10602,02,014,03691,00361,015,43149,00394,10602,03,000,30197,00886,000,56430,00905,10602,04,000,28047,00513,000,40607,00547,10602,05,000,42926,00028,000,50618,00035,10602,06,123,34879,00616,138,06069,00838,10602,07,000,56630,00001,000,62609,00003,10602,08,000,26769,00286,000,52418,00288,10602,09,000,08443,00118,000,04954,00147,10602,10,000,04415,00094,000,07479,00101,10602,11,007,60612,00281,007,55440,00286,10602,12,000,27686,00105,000,00737,00116,10602,13,000,05150,00678,000,43207,00768,10602,14,000,18761,00207,000,50916,00217,10602,15,000,47757,00006,000,65377,00014,10602,16,000,65468,00008,000,65437,00009,10602,');
20260710 124252 INSERT INTO `mmdb3` (`index1`, `userID1`, `procID1`, `entry1`) VALUES
('20250105194938', 'chriscle', 's612', 

's61220250105194938,01,000,10268,00095,000,43680,00101,10602,02,014,37759,00361,015,14637,00395,10602,03,000,24022,00887,000,51587,00906,10602,04,000,28927,00513,000,41588,00547,10602,05,000,42938,00028,000,50630,00035,10602,06,000,27582,00617,000,08235,00839,10602,07,000,56630,00001,000,62609,00003,10602,08,253,03175,00287,255,29790,00289,10602,09,002,08879,00118,002,05711,00147,10602,10,000,07586,00094,000,10649,00101,10602,11,014,14406,00282,014,09259,00287,10602,12,000,30356,00105,000,03422,00116,10602,13,000,05150,00678,000,43231,00768,10602,14,147,54380,00207,150,21500,00218,10602,15,000,47757,00006,000,65377,00014,10602,16,000,65468,00008,000,65437,00009,10602,'),

INSERT INTO `mmdb3` (`index1`, `userID1`, `procID1`, `entry1`) VALUES
('20250105195230', 'chriscle', 's612', 



's61220250105195230,01,000,10268,00095,000,43680,00101,10602,02,014,37773,00361,015,14652,00395,10602,03,000,24022,00887,000,51587,00906,10602,04,000,28927,00513,000,41588,00547,10602,05,000,42938,00028,000,50630,00035,10602,06,000,27582,00617,000,08235,00839,10602,07,000,56630,00001,000,62609,00003,10602,08,000,03175,00287,000,29790,00289,10602,09,002,08881,00118,002,05713,00147,10602,10,000,07586,00094,000,10649,00101,10602,11,015,14421,00282,015,09274,00287,10602,12,000,30356,00105,000,03422,00116,10602,13,000,05150,00678,000,43231,00768,10602,14,147,54527,00207,150,21650,00218,10602,15,000,47757,00006,000,65377,00014,10602,16,000,65468,00008,000,65437,00009,10602,');
20260710 113008 INSERT INTO `mmdb3` (`index1`, `userID1`, `procID1`, `entry1`) VALUES
('20191215075634', 'chriscle', 's612', 's61220191215075634,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),
('20201215075635', 'chriscle', 's612', 's61220201215075635,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,');
20260710 112101 INSERT INTO `mmdb3` (`index1`, `userID1`, `procID1`, `entry1`) VALUES
('20151215075913', 'chriscle', 's612', 's61220151215075913,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,012,00011,00000,012,00011,00000,99999,16,011,00010,00000,011,00010,00000,99999,'),
('20151215075634', 'chriscle', 's612', 's61220151215075634,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),
('20171215075634', 'chriscle', 's612', 's61220171215075634,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),
('20171215075634', 'chriscle', 's612', 's61220171215075634,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),
('20181215075634', 'chriscle', 's612', 's61220181215075634,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,'),
('20181215075634', 'chriscle', 's612', 's61220181215075634,01,000,65535,00000,000,65535,00000,99999,02,000,65535,00000,000,65535,00000,99999,03,000,65535,00000,000,65535,00000,99999,04,000,65535,00000,000,65535,00000,99999,05,000,65535,00001,000,65535,00001,99999,06,000,65535,00001,000,65535,00001,99999,07,000,65535,00001,000,65535,00001,99999,08,000,65535,00001,000,65535,00001,99999,09,017,00016,00000,017,00016,00000,99999,10,000,65535,00000,000,65535,00000,99999,11,000,65535,00000,000,65535,00000,99999,12,000,65535,00001,000,65535,00001,99999,13,000,65535,00000,000,65535,00000,99999,14,000,65535,00000,000,65535,00000,99999,15,015,00014,00000,015,00014,00000,99999,16,014,00013,00000,014,00013,00000,99999,');
20260710 111211 INSERT INTO `microtxt` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(53, 'chriscle', 's612', 'L01', '                                   612 Ozona'),
(54, 'chriscle', 's612', 'L02', ''),
(55, 'chriscle', 's612', 'L03', '         Energy usage charges due and payable for the period ending.'),
(56, 'chriscle', 's612', 'L04', '         Taxes and customer charges have been added proportionately.'),
(57, 'chriscle', 's612', 'L05', '         Thank you for your prompt payment.'),
(58, 'chriscle', 's612', 'L06', '            Customer      Billing Period             Usage      Amount Due'),
(59, 'chriscle', 's612', 'L07', ' Rate: Non-demand, Non-TOU - Customer chg incl.      @ xxxx     cts/kwh'),
(60, 'chriscle', 's612', 'LGD', '....+....1....+....2....+....3....+....4....+....5....+....6....+....7....+');
20260710 105048 mysql> GRANT ALL PRIVILEGES ON micromtr.* TO FLUSH PRIVILEGES;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRIVILEGES' at line 1
mysql>
20260710 105039 INSERT INTO `microdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(21, 'username', 's612', 'L21', ' 12.75'),
(22, 'username', 's612', 'L22', ' 2390.625'),
(23, 'username', 's612', 'L23', ' 16.95'),
(24, 'username', 's612', 'L24', ' 1'),
(25, 'username', 's612', 'L25', ' 0             1             2             3'),
(26, 'username', 's612', 'L26', ' 4             5             6             7'),
(27, 'username', 's612', 'L27', ' 7             7             0             0'),
(28, 'username', 's612', 'LGD', '....+....1....+....2....+....3....+....4....+');
20260710 104848 mysql> GRANT ALL PRIVILEGES ON micromtr.* TO FLUSH PRIVILEGES;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRIVILEGES' at line 1
mysql>
20260710 104839 INSERT INTO `microdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(21, 'username', 's612', 'L21', ' 12.75'),
(22, 'username', 's612', 'L22', ' 2390.625'),
(23, 'username', 's612', 'L23', ' 16.95'),
(24, 'username', 's612', 'L24', ' 1'),
(25, 'username', 's612', 'L25', ' 0             1             2             3'),
(26, 'username', 's612', 'L26', ' 4             5             6             7'),
(27, 'username', 's612', 'L27', ' 7             7             0             0'),
20260710 104620 mysql> GRANT ALL PRIVILEGES ON micromtr.* TO FLUSH PRIVILEGES;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRIVILEGES' at line 1
mysql>
20260710 104527 INSERT INTO `microdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(1, 'username', 's612', 'L21', ' 12.75'),
(2, 'username', 's612', 'L22', ' 2390.625'),
(3, 'username', 's612', 'L23', ' 16.95'),
(4, 'username', 's612', 'L24', ' 1'),
(5, 'username', 's612', 'L25', ' 0             1             2             3'),
(6, 'username', 's612', 'L26', ' 4             5             6             7'),
(7, 'username', 's612', 'L27', ' 7             7             0             0'),
(8, 'username', 's612', 'LGD', '....+....1....+....2....+....3....+....4....+');
20260710 104324 INSERT INTO `microdat` (`index1`, `userID1`, `procID1`, `tag1`, `entry1`) VALUES
(1, 'username', 'mm01', 'L21', ' 12.75'),
(2, 'username', 'mm01', 'L22', ' 2390.625'),
(3, 'username', 'mm01', 'L23', ' 16.95'),
(4, 'username', 'mm01', 'L24', ' 1'),
(5, 'username', 'mm01', 'L25', ' 0             1             2             3'),
(6, 'username', 'mm01', 'L26', ' 4             5             6             7'),
(7, 'username', 'mm01', 'L27', ' 7             7             0             0'),
(8, 'username', 'mm01', 'LGD', '....+....1....+....2....+....3....+....4....+');
20260710 101106 mysql> GRANT ALL PRIVILEGES ON micromtr.* TO FLUSH PRIVILEGES;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRIVILEGES' at line 1
mysql>
20260710 100327 [Fri Jul 10 13:02:13.538538 2026] [php:error] [pid 20011:tid 20011] [client 10.0.0.16:65371] PHP Fatal error:  Uncaught mysqli_sql_exception: SELECT command denied to user 'mmuser1'@'localhost' for table 'microtxt' in /var/www/html/mypie4.php:44\nStack trace:\n#0 /var/www/html/mypie4.php(44): mysqli_query()\n#1 {main}\n  thrown in /var/www/html/mypie4.php on line 44, referer: http://10.0.0.19/mypie4.php?after1=20200101000000&befor1=20990601000000&userID1=chriscle&procID1=test&mmdb1=mmdb3
20260710 095057 <!DOCTYPE html>
<html>
<head>
    <title>Hello World</title>
</head>
<body>
<?php
echo "Hello World";
?>
</body>
</html>
20260710 090133 chrisclement@chrisclement-OptiPlex-990:~$ $conn = mysqli_connect(
    "localhost",
    "mmuser1",
    "mmuser1",
    "micromtr",
    3306,
    "/var/run/mysqld/mysqld.sock");
bash: syntax error near unexpected token `('
localhost,: command not found
mmuser1,: command not found
mmuser1,: command not found
micromtr,: command not found
3306,: command not found
bash: syntax error near unexpected token `)'
20260710 090019 $conn = mysqli_connect(
    "localhost",
    "mmuser1",
    "mmuser1",
    "micromtr",
    3306,
    "/var/run/mysqld/mysqld.sock");
20260710 085918 $conn = mysqli_connect(
    "localhost",
    "mmuser1",
    "mmuser1",
    "micromtr",
    3306,
    "/var/run/mysqld/mysqld.sock");
20260710 085912 $conn = mysqli_connect(
    "localhost",
    "MMUSER1",
    "mmuser1",
    "micromtr",
    3306,
    "/var/run/mysqld/mysqld.sock"
);
20260710 085519 Fri Jul 10 09:10:39.740235 2026] [php:error] [pid 20011:tid 20011] [client 10.0.0.16:57996] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/mypie3.php:24\nStack trace:\n#0 /var/www/html/mypie3.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie3.php on line 24, referer: http://10.0.0.19/mypie3.php?after1=20200101000000&befor1=20990601000000&userID1=chriscle&procID1=test&mmdb1=mmdb3
20260710 062129 20260710 061535 $conn = mysqli_connect(
    "localhost",
    "mmuser1",
    "mmuser1",
    "micromtr",
    3306,
    "/var/run/mysqld/mysqld.sock"
20260710 061542 Fri Jul 10 09:10:39.740235 2026] [php:error] [pid 20011:tid 20011] [client 10.0.0.16:57996] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/mypie3.php:24\nStack trace:\n#0 /var/www/html/mypie3.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie3.php on line 24, referer: http://10.0.0.19/mypie3.php?after1=20200101000000&befor1=20990601000000&userID1=chriscle&procID1=test&mmdb1=mmdb3
20260710 061535 $conn = mysqli_connect(
    "localhost",
    "youruser",
    "yourpass",
    "yourdb",
    3306,
    "/var/run/mysqld/mysqld.sock"
);
20260710 061358 mysqli.default_socket = /var/run/mysqld/mysqld.sock
20260710 061350 Fri Jul 10 09:10:39.740235 2026] [php:error] [pid 20011:tid 20011] [client 10.0.0.16:57996] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/mypie3.php:24\nStack trace:\n#0 /var/www/html/mypie3.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie3.php on line 24, referer: http://10.0.0.19/mypie3.php?after1=20200101000000&befor1=20990601000000&userID1=chriscle&procID1=test&mmdb1=mmdb3
20260710 061220 mysqli.default_socket = /var/run/mysqld/mysqld.sock
20260710 060634 Fri Jul 10 08:56:36.616251 2026] [php:error] [pid 19471:tid 19471] [client 10.0.0.16:51841] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/mypie3.php:24\nStack trace:\n#0 /var/www/html/mypie3.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie3.php on line 24, referer: http://10.0.0.19/mypie3.php?after1=20200101000000&befor1=20990601000000&userID1=chriscle&procID1=test&mmdb1=mmdb3
20260710 060621 mysqli.default_socket = /var/run/mysqld/mysqld.sock
20260710 060502 Fri Jul 10 08:56:36.616251 2026] [php:error] [pid 19471:tid 19471] [client 10.0.0.16:51841] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/mypie3.php:24\nStack trace:\n#0 /var/www/html/mypie3.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie3.php on line 24, referer: http://10.0.0.19/mypie3.php?after1=20200101000000&befor1=20990601000000&userID1=chriscle&procID1=test&mmdb1=mmdb3
20260710 060452 sudo nano /etc/php/*/apache2/conf.d/*mysqli.ini
20260710 060011 Fri Jul 10 08:56:36.616251 2026] [php:error] [pid 19471:tid 19471] [client 10.0.0.16:51841] PHP Fatal error:  Uncaught mysqli_sql_exception: No such file or directory in /var/www/html/mypie3.php:24\nStack trace:\n#0 /var/www/html/mypie3.php(24): mysqli_connect()\n#1 {main}\n  thrown in /var/www/html/mypie3.php on line 24, referer: http://10.0.0.19/mypie3.php?after1=20200101000000&befor1=20990601000000&userID1=chriscle&procID1=test&mmdb1=mmdb3
20260709 155954 Jen
20260706 073806 https://venmo.com/code?user_id=3967473850255377564&created=1783289591.934634
20260702 022553 s61220260701214643,01,000,12623,00000,000,63434,00103,10602,02,012,21648,00256,012,60567,00470,10602,03,000,58818,00768,000,14113,00954,10602,04,000,22472,00512,000,51830,00548,10602,05,008,05031,00000,009,43757,00045,10602,06,000,32829,00512,000,06207,00928,10602,07,000,57205,00000,000,26612,00004,10602,08,000,46977,00256,000,50212,00317,10602,09,003,19037,00000,003,00318,00149,10602,10,008,36476,00000,008,52703,00110,10602,11,006,17329,00256,006,19395,00307,10602,12,000,07519,00000,000,55141,00119,10602,13,000,23313,00512,000,53893,00812,10602,14,000,62915,00000,000,60406,00295,10602,15,000,65127,00000,000,65446,00029,10602,16,000,65405,00000,000,65524,00016,10602
20260627 141235 Udp
20260627 140406 Asus stick windows computer
20260626 051516 Let me teach you how little girls are supposed to be
20260626 051423 The FBI summaries state the alleged victim recalls being introduced to Trump who immediately disliked her because she was a "boy-girl" – meaning a tomboy. She claims when left alone in a room with him, Trump said "Let me teach you how little girls are supposed to be", unzipped his pants and forced her head down to his penis.[260] The report says she then immediately "bit the shit out of it", and that in response he "pulled her hair and punched her on the side of the head". Trump said something to the effect of "get this little bitch the hell out of here" and kicked her out.[259] She told the FBI she bit him because he "disgusted" her.[260][261]
20260626 024509 spicion of federal child sex offenses.

The woman alleged that Epstein took her to a "very tall building with huge rooms." Trump, she said, ordered everyone else out of the room, unzipped his pants, and pushed her head "down to his penis." She then "bit the s--t out of" Trump's penis, she said, after which he punched her in the head.
20260622 152137 https://training.fema.gov/is/courseoverview.aspx?code=IS-800.d&lang=en
20260622 082616 greg
20260622 013648 Maria tom Billie Lois Jeri Colleen garyglen?
20260621 131713 Maria tom Billie Lois Jeri Colleen garyglen?
20260621 101906 Kanopy
20260621 083936 Ghasson
20260619 112501 https://www.bing.com/videos/riverview/relatedvideo?q=watch+obama+opening&mid=6A13290EB47BA51F53796A13290EB47BA51F5379&churl=&FORM=VIRE
20260614 231427 https://www.facebook.com/reel/1575933133645380/?fs=e&fs=e
20260614 130017 https://www.youtube.com/live/BDtzRO6NWAU
20260614 115419 https://www.youtube.com/watch?v=F9JHwdf8tlI
20260614 040517 https://www.facebook.com/reel/990000153634107/?fs=e&fs=e
20260612 094434 microsoft@blackpower96.org    Ch@ngeTheWorld2022     pin 2022 dob 5/25/1972
20260608 172449 direwolf aprsis32 windows
20260607 133919 https://virtualpiano.online/
20260606 171427 https://ice24.securenetsystems.net/WBPU    old player
https://streamdb8web.securenetsystems.net/cirruscontent/WBPU     new player
20260605 175025 146.575
20260605 143732 https://www.bing.com/videos/riverview/relatedvideo?q=southpark+xenu&mid=146FE7999FD2207E3D4E146FE7999FD2207E3D4E&churl=https%3a%2f%2fwww.youtube.com%2fchannel%2fUCJ5t6vTR3H64TVa2b9eBA1w&FORM=VIRE
20260604 092827 test (file://DESKTOP-F8PMHHQ/test)
20260604 092219 20260604 jessie rad onc  L4 compression    all good
20260604 073744 https://www.meetup.com/messages/?convo_id=1280094106441551872
billie
20260604 024639 https://www.facebook.com/reel/1308492904594369/?fs=e&fs=e
20260602 184334 Rose   La vie de rose.   The first is La Vie en Rose
20260602 181435 cjcw (file://CHRIS-W11/cjcw)
20260602 175946 test (file://DESKTOP-F8PMHHQ/test)
20260602 175858 test (file://DESKTOP-F8PMHHQ/test)
20260602 175034 cjcw (file://CHRIS-W11/cjcw)
20260602 122918 Dr stared pptician
20260530 195039 https://teamup.com/ksscsmh8mt2gwjenhihttps://teamup.com/ks5zf4ow3t39xpooyo
20260530 195003 https://teamup.com/ksscsmh8mt2gwjenhi
https://teamup.com/ks5zf4ow3t39xpooyo
20260530 194329 https://teamup.com/ks5zf4ow3t39xpooyo
20260523 163247 4333 Gunn Highway
Tampa, FL 33618
20260523 060700 Grid tracker
20260521 130848 https://streamdb8web.securenetsystems.net/cirruscontent/WBPU
20260521 032507 https://www.gofundme.com/f/help-blue-nile-food-store-shine-again
20260521 032441 https://www.gofundme.com/f/help-blue-nile-food-store-shine-again
20260521 032414 https://www.gofundme.com/manage/help-blue-nile-food-store-shine-again
https://www.gofundme.com/manage/help-blue-nile-food-store-shine-again
20260520 112225 https://www.gofundme.com/manage/help-blue-nile-food-store-shine-again 

I am trying to crowd fund a new sign for a local business that deserves it. So far, I have set up https://www.gofundme.com/manage/help-blue-nile-food-store-shine-again and my own at chrisclement.com/bn
20260518 162930 https://chrisclement.com/bn/
20260517 054323 https://platform.leolabs.space/visualization
20260516 145628 Chords grabbed from http://www.theguitarguy.com/timeafte.htm
 
Words & Music by Sammy Cahn & Jule Styne, 1947
Recorded by Frank Sinatra, 1958
 
  C   Am   Dm7   G7    C      Am       Dm7    G7
Time after time     I tell myself that I'm
 
    C     Am   Bm7-5  E7  Am
So lucky to be lov - ing you,
 
    Am7           F#m7     Em     B+  Em7
So lucky to be the one you run to see
 
A+ A7   Dm     Dm+7     Dm7 Dm6   G
In the evening when the day is through.
 
 
  Dm7  G7   C   Am     Dm7   G7
I on - ly know what I know;
 
     C        Em        Dm7   G7
The passing years will show
 
 C                      C7        F     Fm
You've kept my love so young, so new.
 
     C   Am    Em7   Dm7        C      Am       D7     Dm7
And time after time     you'll hear me say that I'm
 
    C     Am   Dm - G7  C     Am    Fdim (III)   G7
So lucky to be lov-ing you.
 
 
(Instrumental interlude: 1st verse)
 
 
  Dm7- G7   C   Am     Dm7    G7
I on - ly know what I know;
 
     C       Em         Dm7    G7
The passing years will show
 
         C              C7        F    Fm
You've kept my love so young, so new.
 
      C   Am    Em7 Dm7        C       Am       D7     Dm7
And time after time     you'll hear me say that I'm
 
    C     Am   Dm7   G7   C     C/B    A7
So lucky to be lov - ing you,
 
     C   Am    Dm7   G7   C     Dm7    C
So lucky to be lov - ing you.
20260514 145024 https://streamdb8web.securenetsystems.net/cirruscontent/WBPU
20260510 081453 Stan Pam katy
20260510 064206 3376 q code
20260508 102626 Kim at bp96. I fixed latch
20260504 170811 David Elrod                David Elrod
Bruce Kreutzer             
Margaret Planta            
Ben Davis                  
Ben Davis
Christopher J Clement
Christopher J Clement
20260502 085419 https://www.paypal.com/disputes/dashboard/
20260502 084416 GFUS01047581029697
20260502 075517 Po service request 87769863 steve
20260430 024647 ### Order summary

📢📢49% OFF !! ⏰Men's X-Back Suspenders with Hook Clips × 1
Black / Buy 1

$19.99

Subtotal

$19.99

Shipping

$6.99

Taxes

$0.00

Total

$26.98 USD

### Customer information

#### Shipping address

Chris Clement
612 Orange St.
Palm Harbor FL 34683
United States

#### Billing address

Christopher Clement
612 Orange St
Palm Harbor FL 34683-5219
United States

#### Payment

Paypal

#### Shipping method

Standard shipping
20260429 175858 3EFA7EEAA93300B55685B8BBED34B69C
20260429 125347 GFUS01047581029697
20260429 103002 FedEx OnSite
https://local.fedex.com › en-us › fl › palm-harbor › aabwu
Courier & delivery services in Palm Harbor, FL
3420 E Lake Rd, Palm Harbor, FL 34685
Open · Closes 10 PM · More hours
(800) 463-3339
Directions
20260429 071933 https://forums.qrz.com/index.php?account/
20260429 071858 https://forums.qrz.com/index.php?account/
20260429 071221 test
https://forums.qrz.com/index.php?account/
https://www.ratpac.us/zoom
K4CJX USA flag USA
R STEPHEN WATERMAN
5828 BEAUREGARD DR
NASHVILLE, TN 37215
USA

Email: k4cjx@comcast.net

Ham Member Lookups: 16256 
K4CJX is a member of the Winlink Development Team, the current Winlink Administrator and a Board of Directors member of the Amateur Radio Safety Foundation, a 501(c)3 that funds and runs Winlink operations.

Please visit https://www.winlink.org for more information about the Winlink system.
3EFA7EEAA93300B5 5685B8BBED34B69C

505 S Gulfview Blvd, Clearwater Beach, FL 33767, USA



micrometer2001@micrometer2001.com

Andy Our new gate code is 7287
Andy Our new gate code is 7287

sudo dpkg -i wsjtx_3.0.0_amd64.deb 
sudo dpkg -i wsjtx_3.0.0_amd64.deb 
sudo dpkg -i wsjtx_3.0.0_amd64.deb 
https://www.facebook.com/reel/954043513849688/?fs=e&fs=e    
Four presidents

241 Gulf Blvd., Clearwater, FL 33767

Dinner this Friday night is @ 6:15 the Columbia restauranr on Sand Key, 1241 Gulf Blvd., Clearwater, FL 33767

Copilot Search Branding

Like

Dislike
Icom ST‑4003W Time Adjustment Software
The Icom ST‑4003W is a Windows‑based utility that lets you set the internal clock of certain Icom radios directly from your PC by connecting them via USB Icom Inc.+1.

What it does
Sets the radio’s time to match your PC’s time.

Works with multiple Icom models: IC‑705, IC‑7100, IC‑7300, IC‑7600, IC‑7610, IC‑7850/7851, IC‑9700 Icom Inc.+1.

Requires a USB cable matching the radio’s port type (e.g., Micro‑B, Mini‑B, Type‑B) PC5E+1.

System requirements
Windows 10 (32/64‑bit) or Windows 11 (64‑bit) PC5E+1.

Administrator privileges on the PC.

USB driver for the radio’s port type (download from Icom’s support site) PC5E+1.

Installation steps
Download the ST‑4003W software from Icom’s official site: icomjapan.com/support/firmware_driver/ Icom Inc..
Unzip the file.

Run the executable (click Yes to allow User Account Control).

Select language, click Next, choose install location, then Install and Finish.

The program will appear in the Start menu and on your desktop PC5E+1.
How to use
Connect the radio to the PC via the correct USB cable.

Launch ST‑4003W.

The software will sync the radio’s clock to your PC’s time.

Disconnect the radio when done.

Notes
The software sets the radio to your PC’s local time; if you need UTC, you must manually set the UTC offset in the radio’s menu forums.qrz.com.

Some users have created workarounds (e.g., command‑line tools) for setting UTC directly on certain models forums.qrz.com.

Always back up your radio’s settings before updating firmware or using time‑setting software, as improper updates can cause malfunctions Icom Inc..

For full instructions, see the ST‑4003W Instructions PDF on Icom’s support page Icom Inc.+1.




williamsuba47
Event host
Familiar face

Chris

Lou 🎉 🦦
1 shared interest

Terri Greenhut
Familiar face
1 guest

sandy
1 share

Fred
Jason
3900 dunn drive palm harbor
3900 dunn drive palm harbor
Mike drake wa1ryq

Steps to Fix Windows Time Service Not Running
1
2
3
Press Windows Key + R to open the Run dialog box.

Type services.msc and press Enter.

Scroll down to locate Windows Time in the list of services.

Double-click on Windows Time to open its properties.

In the Startup type dropdown menu, select Automatic.

If the Service status is not running, click Start.

Click Apply and then OK to save changes.

Alternate Method: Re-register Windows Time Service

Open Command Prompt as Administrator by searching for cmd, right-clicking it, and selecting Run as administrator.

Execute the following commands one by one: net stop w32time w32tm /unregister w32tm /register net start w32time

Close the Command Prompt and restart your PC.

Change Time Server

Press Windows Key + R, type timedate.cpl, and press Enter.

Go to the Internet Time tab and click Change settings.

Select a different server, such as time.nist.gov, from the dropdown menu.

Click Update now, then OK.

Run System File Checker (SFC) and DISM

Open Command Prompt as Administrator.

Run the command: sfc /scannow and wait for the scan to complete.

If the issue persists, run: DISM /Online /Cleanup-Image /RestoreHealth.

Restart your PC and check if the issue is resolved.

Check Task Scheduler

Open Task Scheduler by searching for it in the Start menu.

Navigate to Task Scheduler Library > Microsoft > Windows > Time Synchronization.

Ensure all tasks are enabled by right-clicking them and selecting Enable.

Verify the triggers are set to run automatically.

These steps should resolve the issue with the Windows Time Service not running. If the problem persists, consider checking your motherboard battery or consulting a professional.


2026-04-21 00:52:39    Connecting to W4ACS-10... 1/3
2026-04-21 00:52:43    Connecting to W4ACS-10... 2/3
2026-04-21 00:52:45    Connected to W4ACS-10
2026-04-21 00:53:01    W4ACS-10 disconnected (Timeout)      TX: 0 Bytes (Max: 0 bps)   RX: 0 Bytes (Max: 0 bps)   Session Time: 00:16

2026-04-21 00:53:40    Connecting to W4ACS-10... 1/3
2026-04-21 00:53:43    Connected to W4ACS-10
2026-04-21 00:54:17    W4ACS-10 disconnected (Timeout)      TX: 90 Bytes (Max: 566 bps)   RX: 117 Bytes (Max: 566 bps)   Session Time: 00:34

2026-04-21 00:58:04    Connecting to W4ACS-10... 1/3
2026-04-21 00:58:06    Connected to W4ACS-10
2026-04-21 00:58:48    W4ACS-10 disconnected (Timeout)      TX: 122 Bytes (Max: 566 bps)   RX: 98 Bytes (Max: 566 bps)   Session Time: 00:42




ADIF Export
<adif_ver:5>3.1.1
<created_timestamp:15>20250409 230503
<programid:6>WSJT-X
<programversion:5>2.7.0
<eoh>
<call:6>KD2VRL <gridsquare:0> <mode:3>FT8 <rst_sent:3>-06 <rst_rcvd:3>-14 <qso_date:8>20250409 <time_on:6>230400 <qso_date_off:8>20250409 <time_off:6>230459 <band:3>20m <freq:9>14.074630 <station_callsign:6>KA4UPC <my_gridsquare:4>EL88 <eor>
<call:4>KK2M <gridsquare:4>FN03 <mode:3>FT8 <rst_sent:3>+11 <rst_rcvd:3>+10 <qso_date:8>20250409 <time_on:6>232311 <qso_date_off:8>20250409 <time_off:6>232311 <band:3>20m <freq:9>14.074630 <station_callsign:6>KA4UPC <my_gridsquare:4>EL88 <eor>
<call:5>V31DL <gridsquare:4>EK57 <mode:3>FT8 <rst_sent:3>+04 <rst_rcvd:3>+07 <qso_date:8>20250409 <time_on:6>232400 <qso_date_off:8>20250409 <time_off:6>232500 <band:3>20m <freq:9>14.074627 <station_callsign:6>KA4UPC <my_gridsquare:4>EL88 <eor>
<call:5>7Z1DW <gridsquare:4>LL45 <mode:3>FT8 <rst_sent:3>-06 <rst_rcvd:3>-17 <qso_date:8>20250409 <time_on:6>232730 <qso_date_off:8>20250409 <time_off:6>232830 <band:3>20m <freq:9>14.075106 <station_callsign:6>KA4UPC <my_gridsquare:4>EL88 <eor>
<call:4>N0QX <gridsquare:4>EL15 <mode:3>FT8 <rst_sent:3>+00 <rst_rcvd:3>-11 <qso_date:8>20250409 <time_on:6>234241 <qso_date_off:8>20250409 <time_off:6>234241 <band:3>20m <freq:9>14.075108 <station_callsign:6>KA4UPC <my_gridsquare:4>EL88 <eor>
<call:6>KG5JKC <gridsquare:4>EM20 <mode:3>FT8 <rst_sent:3>-20 <rst_rcvd:3>-15 <qso_date:8>20260420 <time_on:6>182112 <qso_date_off:8>20260420 <time_off:6>182112 <band:3>20m <freq:9>14.075108 <station_callsign:6>KA4UPC <my_gridsquare:4>EL88 <eor>



https://www.msn.com/en-us/news/politics/blasphemous-religious-leader-on-trump-and-others-using-theology-to-call-for-war/vi-AA21cI4V?ocid=socialshare#comments

https://www.facebook.com/reel/954043513849688/?fs=e&fs=e    
Four presidents
Record on laptop not cloud. Shared doc but small image
Record on laptop not cloud. Shared doc but small image
TV sound what to do
Patty stan
I just remembered you asked for my address.

3427 Hyde Park Dr.     patty
Clearwater. 33761.
Nicholas urol

3624 Causeway Blvd, Tampa, FL 33619



ZOOM Setup Instructions updated by Robin Peacock 20260409 Zoom Instr RPv4.md
Composed in Notepad, .md >>>Saved in folder Documents/ZOOM or SHORTCUT on Windows screen

Now that you have logged onto Windows on this laptop, here is how to proceed:
1. To open Chrome browser: DOUBLE CLICK on the CHROME SHORTCUT in the upper right area of the home screen. It's a Chrome symbol with "CFM for Zoom and Gmail".
2. When it opens, choose the Chrome profile with the PEACE SYMBOL "Clearwater Friends" 
3. When Chrome profile opens, start Zoom by selecting the BLUE ZM CIRCLE labeled "ZOOM Clearwater Friends". (This is a saved shortcut directly to our Zoom account bypassing login.)
~~~~~~~ AFTER ZOOM IS OPEN ~~~~~~
4. Look for the Clearwater Friends DOVE LOGO in the upper right corner to indicate the correct account is opened. If there is no dove logo, log out of Zoom and log back in with zoom@clearwaterfriends.org (PW: GeorgeFox1?)
5. Find TODAY'S MEETING. Zoom has been scheduled from 9:30am to 3:30pm every Sunday.   Meeting ID: 967 2659 9571 (If you don't see today's meeting, select MEETINGS.) 
6. Select the blue START button. If there is no START button, hover the cursor in the open area to the right. The blue START button should appear. 
7. ***Give the Zoom meeting a couple of minutes to open.*** Don't select how it opens, Zoom will use defaults on its own.
~~~~~~~ AFTER ZOOM MEETING IS OPEN ~~~~~~~~~~~~~~~
8. Confirm the correct audio & video settings are selected and volume is ok. Video & mic=j5 Create, speaker=Samsung TV
9. Confirm CC is on and gallery view is selected. NOTE: If this is a Meeting for Business, start RECORD for the secretary to use for meeting minutes. 

TROUBLESHOOTING:
*If TV does not have Zoom audio: check that the Zoom setup uses "Samsung TV" and not another speaker.
*If Camera does not work: check that Video is using the correct camera. 
*If Zoom asks for a one-time security code: it will be forwarded to clearwaterfriends3@gmail. You can reduce the Zoom login screen, open a new Chrome tab, select "Gmail", look for an email from Zoom in the past few minutes, copy & paste the code, return to the Zoom login to paste the code. This code will also be forwarded to several CFM members who are likely in the room and can check their email on their phones. 
*If Gmail access is needed on this laptop: use Clearwaterfriends3@gmail.com,  PW Fox\&Penn1650.
~~~~~~~~~~~~~~~~~~~~~
-Zoom login at zoom.com. UN: zoom@clearwaterfriends.org PW: GeorgeFox1?
-This Zoom account, zoom@clearwaterfriends.org, is administered by Robin Peacock for CFM use, paid thru her credit card and reimbursed.
Acct # 7055200501 (Other than Sunday morning, our Zoom ID is 615 149 3469), up to 100 participants, renews on July 29, 2026, ONE USER, $159.90 billed annually. 

-Clearwaterfriends3@gmail.com is not associated with Zoom in any way. It is a Google profile used for CFM volunteers to access the internet on this laptop. Clearwaterfriends3@gmail.com (PW: Fox\&Penn1650). Send documents for MfB, etc. to this Gmail account and save to the folder on the desktop. Also, the weekly CFM newsletter is sent to this email for reference. 


Nicholas urol
Nick sensenig
Nick sensenig
I just remembered you asked for my address.

3427 Hyde Park Dr.
Clearwater. 33761.
https://www.facebook.com/groups/1020865591429699/
I just remembered you asked for my address.

3427 Hyde Park Dr.
Clearwater. 33761.
Gena susan Maria mike
https://www.youtube.com/watch?v=RZv94BvNxrQ&list=LL&index=91
Dr shah  endo
https://calendar.google.com/calendar/u/0/r/eventedit/NmE4a2dna3E4c2c1MTlwaGN0NHNtbW0wMzEgY2hyaXNjbGVtZW50NjE2MkBt?tab=mc

Felicia Felly
Co-host
Familiar face

Kathleen Bromm
Co-host
Familiar face

Jim
Co-host
Familiar face

Chris
Familiar face

Marge Stern
Familiar face

Susan Malizola
Familiar face
.
The people platform
Nicole Q
https://www.facebook.com/marketplace/item/823730200672341/?rdid=NHFs83Ilm30CWmNF&share_url=https%3A%2F%2Fwww.facebook.com%2Fshare%2F1GNnstNoZA%2F#
Nicole Q
Patricia
Felicia 
 gale
https://www.facebook.com/reel/1540536890345942/?fs=e&fs=e
874 Lantern Way, Clearwater, FL 33765

#0874

https://www.facebook.com/reel/1540536890345942/?fs=e&fs=e
https://www.facebook.com/reel/1892687511284961/?fs=e&fs=e
We’ve received your order.
==========================

Hey chris, we’re working on your order. Thanks for shopping with Publix.
Order number: 1413-9798

Pickup time
-----------

### March 8, 2026 at 10:00 AM

Pickup location
---------------

### Caladesi Shopping Center

902 Curlew Rd, Dunedin, FL 34698-1901
#1997 ron gate code
Andy gate code *077287
Ron hate code 1997
Mar 39 ovis. 21 available yard sale
Spam 888 795 4977

quaker songs
1-5 today, come Saturday morning, morning has broken,  que sera sera, amazing grace, 

6-10 imagine, friendly persuasion, he's got the whole world, all my trials, autumn leaves, 

11-15 day by day, green leaves of summer, guantanamera,	somewhere my love, what the world needs now, 

1=====================


911 0441 feb20

3EFA7EEAA93300B55685B8BBED34B69C    3EFA7EEAA93300B5 5685B8BBED34B69C




Kumar now karen
Pet collective dr Riley cory
https://www.chrisclement.com/virtoff/whiskey.htm
Nick snep pcacs
https://www.facebook.com/reel/1432592528414023/?fs=e&fs=e


https://www.facebook.com/reel/1432592528414023/?fs=e&fs=e



https://www.facebook.com/reel/1432592528414023/?fs=e&fs=e
Deployment Center Contact: Sezen Boylan and Alex Strieder, 

727-641-2475 

and 

727-424-1355

1120 N Betty Ln, Clearwater, FL 33755

tony bmw x5 727 815 5453
kylie i24034355
cns1.godaddy.com
cns2.godaddy.com

the battle of algiers
https://www.bing.com/videos/riverview/relatedvideo?q=the+battle+of+algiers&&mid=E5ED0EAF5DB46BE69D5FE5ED0EAF5DB46BE69D5F&churl=https%3a%2f%2fwww.youtube.com%2fchannel%2fUCVxp-rxCPTUSi84juakgwNg&FORM=VCGVRP
One battle after another




https://www.zeffy.com/en-US/ticketing/clearwater-amateur-radio-societys-annual-raffle--2026
Patt

https://www.zeffy.com/en-US/ticketing/clearwater-amateur-radio-societys-annual-raffle--2026
Patty Philadelphia. Terry mike

https://tools.usps.com/go/TrackConfirmAction_input?origTrackNum=9535214162935357318055&fbclid=IwY2xjawPJvUlleHRuA2FlbQIxMABicmlkETF5VnVaUmFSSndTMjAxR3phc3J0YwZhcHBfaWQQMjIyMDM5MTc4ODIwMDg5MgABHs3S0T1CqcaHpOhe4Ml6TsDpR7Oo85BqEgjrRLV-tUZdg2DkFD1x3gu7QKRs_aem_U-bSUQ_4npb83wqlQuZjpA

https://l.facebook.com/l.php?u=https%3A%2F%2Ftools.usps.com%2Fgo%2FTrackConfirmAction_input%3ForigTrackNum%3D9535214162935357318055%26fbclid%3DIwZXh0bgNhZW0CMTAAYnJpZBExeVZ1WlJhUkp3UzIwMUd6YXNydGMGYXBwX2lkEDIyMjAzOTE3ODgyMDA4OTIAAR7N0tE9QqnGh6ToXuDJek7A6UezqPOQahII60S1frVGXYNg5BQ9cd4Lu0CkbA_aem_U-bSUQ_4npb83wqlQuZjpA&h=AT1twki3ArP3Z_7SDZ_P4gSvTmIYn3vHOtkZi_PmXERH4UFITh5LsRBy8QTfaWaYWK9yxGef6UNaTzj0fjqHYqGBbFJguHLWtodmzAP69N2o2ypOjP4cW2Eebxq1UGIvABqYxNRQIWmVNe05IK0
9535 2141 6293 5357 3180 55

Patty Philadelphia. Terry mike
https://m.youtube.com/watch?v=0n28xfou_8U&pp=ugUEEgJlbg%3D%3D
https://m.youtube.com/watch?v=0n28xfou_8U&pp=ugUEEgJlbg%3D%3D
http://YouTube.com/uhurutv
Tr4w.net

https://revivedmobiledetailing.com/

https://revivedmobiledetailing.com/?fbclid=IwY2xjawPBLAtleHRuA2FlbQIxMABicmlkETFyOGw3NEJzQTBoM0Vnbk5Tc3J0YwZhcHBfaWQQMjIyMDM5MTc4ODIwMDg5MgABHttsS7kJJj2dhV84EYpKpEE5PeBaDqzzSIX16usNoC7Uin4zpLsJftLScjKX_aem_rYqjR08utew7_S5tWifECA
9536114162945358098650

9535 2141 6293 5357 3180 55

netflix american primeval cast

netflix american primeval cast

syncope fainting faint
syncope fainting faint
Vula
https://m.youtube.com/watch?v=Rl02ruGZHqU

Seafoam
c@cc.c micrometer2001@yahoo.com 7274226162 sapphire50D christy
Log4om
Past sighn
ron ambrosio  b2skh@yahoo.com  845 309 3121
3293 covered bridge dr w dunedin 34698
Gate code #2997 
curlew fisher congress 2nd turn U
chrisclement168@hotmail.com  hmrb67 -> 68 -> 69 => 70
Michael, devin
Harley tbtc
Kevin at tbtc
Bay street
EYRODZN2G9UHWPQG63C5R7Y
HCA Florida Clearwater Emergency offers 24/7 emergency medical services for various conditions, including trauma and stroke. 
2
room 7
2339 Gulf To Bay Blvd
Clearwater, FL 33765
https://www.hcafloridahealthcare.com/locations/clearwater-emergency
Tanya
Elissa oltha
Dec 14 Xmas pty Quaker 

Robin wikle 2 story house blue cart Golden retreiver
Jon amber 1876 Oak Forest Dr E, Clearwater
Jon amber 1876 Oak Forest Dr E, Clearwater
https://a.co/d/0TTQat8
Jon amber 1876 Oak Forest Dr E, Clearwater
https://groups.google.com/g/carshamradio
https://groups.google.com/g/carshamradio
Jon amber 1876 Oak Forest Dr E, Clearwater
T-MOBILE-D633 ffa8a27c84

Ada Jonathan susan owl b4 covid

Red drives Amp but not enough for phone mic


Mic to red.  Sp to white 10

Red output drives Amp but not phone mic
White input should math 12 cd voice into handset goes on air
Dr Logan murray
Beatriz
Dr Logan murray
Swoboda, Logan 
Elizabeth
Dr Nichols vet
ovis Those in attendance were: Brian Smith, Jim Wiesner, Julie Longen, Stu Williams, Diane Williams, Todd Guarino, Tom Schofield, Chris Clement, Ron Girard, Steve Krout, Susan White, and Barry Salus.
todd jim sue bria julie stan ron tom barry  4th monday
Dwi labs susan Quaker like sandy
Dwi labs
https://chrisclement.com/will/davidscare.htm
Corey tbtc
About 30 attended for a good sendoff. Let me know if I missed anyone. Live music by andy annie laurie.
chris christina - hosts
greg mary cindy cissie john - ginny's siblings
margy andy louanne laurie - my siblings and spouse
david nicole - son and assistant
annie - friend of my siblings
george peggy - ham radio club
gloria delores maria sue paula jerry - neighbors
don lisa bryce - mensa
todd jeannie linda juan - meetup
sandy janice eddie - wbpu radio station zoom
I woke up the next day with Ginny's sleep mask next to me in bed!! It made me think of the song "Scarlett Ribbons".
If I live to be a hundred
I will never know from where
Came those lovely scarlet ribbons
Scarlet ribbons for her hair
corey harley /stew doc howard paul
Juan Andrew Paul bill dave
Juan Andrew Paul bill dave
Corey tbtc
Lobby read books at library
https://radiofreegulfport.org/
Neil kern piano
Neil kern piano
Neil kern piano
Lobby read books at library


Good afternoon, Volunteers!

This is a friendly reminder about the Pinellas County Emergency Management Volunteer Meet Up event being held Tuesday, September 30. This event is a chance for volunteers to network, meet in person, tour the EOC, and pick-up their volunteer shirts and swag! The event will begin at 5:30PM at the Emergency Operations Center (EOC) and close at 7:00PM.

Public Safety Complex

10750 Ulmerton Rd.

Largo, FL 33778

Please RSVP for the event to assist with planning efforts. https://forms.office.com/g/SpYdjLeXck The survey will close on Friday, September 26, at close of business.

We are looking forward to seeing you all there!

Jess McCracken, FPEM

Whole Community Readiness Coordinator

Emergency Management

Pinellas County Government

10750 Ulmerton Rd | Ste 267

Largo, FL 33778

jmccracken@pinellas.gov

Office (727) 464-3634

Mobile (727) 647-7047

All government correspondence is subjected to public records law.
elaine robin debra peter phil
netflix american primeval cast
Lobby read books at library




vhf nets 
tues 7.30   145.170 pcacs
tues 8.00   147.120 uparc
wed  7.30   444.450 cars

echolink 
ka4upc 741759 user    
nz1q-l 1002437 link     SPARC  
w4afc-r 769050 repeater UPARC
n4clw-r 474277 node      CARS

Franco  neil Mike Higgins, Alex Parkside Cafe 8.15 1st friday
Bios restart
Bios restart
Bios restart
Carol Mercedes bill
Greta Nadine Maria Peter patty
https://www.facebook.com/reel/1079216733627718/?s=single_unit
Greta Nadine Maria Peter patty
Linda clerk Mercedes guitar sing and litnncarol hat panama
Pam Vicky Linda-clerk lynncarol-hats
Cell number is at the bottom of my signature box below. The theater is in a strip shopping center with a produce market at the west end. Holler if you need directions... not sure where you're coming from tomorrow night.

See you there - Bonnie
--
Bonnie Wilpon
PO Box 261057, Tampa, FL 33685
Office-in-Home: 813-884-1880  Cell: 813-599-0488

Hi Chris,
My cell is 813-785-8350, but I won't have it with me after 7:00 when I get into costume.

The theater is in a strip mall at 4333 Gunn Hwy, Tampa, FL 33618. Here's the map (597 is Dale Mabry and 580 is Busch Blvd before it becomes Gunn Hwy past Dale Mabry):

milo viniti peter patty maria


Dan - I cannot find the pdf files for "combination living will and designation of health care surrogate (and hippa release authorization" of Christopher Clement and Virginia Clement. Can you please re-send. Also, a bill for services. Thanks.


Linda clerk Mercedes guitar sing and litnncarol hat panama

https://www.mossfeaster.com/obituaries/virginia-clement

https://www.legacy.com/us/obituaries/tampabaytimes/name/virginia-clement-obituary?id=58831300



Linda clerk Mercedes guitar sing and litnncarol hat panama

https://www.msn.com/en-us/entertainment/entertainment-celebrity/she-s-a-gangster-for-that-queen-of-the-netherlands-boldly-imitates-donald-trump-to-his-face-and-fans-can-t-stop-laughing/ar-AA1JqSs5?ocid=msedgntp&pc=EDGEDB&cvid=e8c1904d694e4cb485172755c8412d40&ei=19

Linda clerk Mercedes guitar sing and litnncarol hat panama
Went to st Alfred's episcopal for grief group today. It helped. Going through her cedar chest I found several Cooper family albums, a fair amount of silver items, and of course the chest itself.
A Celebration of Life for Virginia will be held at her Ozona home on Sunday October 19 from 2 to 5 pm. The address is 612 Orange St. Palm Harbor, FL 34683.
In lieu of flowers or other tributes, please donate to a charity for medical assistance
or cancer research. Please carpool and avoid blocking others.
Get tickets at:
https://app.arts-people.com/index.php?show=241081

https://www.mossfeaster.com/obituaries/virginia-clement/obituary

https://www.mossfeaster.com/obituaries/virginia-clement/obituary?fbclid=IwY2xjawLlNgRleHRuA2FlbQIxMABicmlkETFvT0Y4aU1sYVNiSVpweDF6AR4ME6GpeBlLcn9V4Zr-STS_tvj4crr3D0gmMhN3L_mHDOUYEdFavVqAOXPPcA_aem_shFT2lO-WHJU4qA_fsRAhQ


https://www.mossfeaster.com/obituaries/virginia-clement
Dr Mike dentist
Ann at Canadensis animal
Pam Vicky Linda lynncarol
There I said it again
There I said it again
Shirley harry
Monroe
Monroe
Bryce Dan Kathy kim
https://elsoberano.mx/exclusivas/
https://chrisclement.com/obit5.jpg
Jennifer dogwalk sue
Greg Becky hospice
Greg
Englert lauren
Shaun Nima. Pornima
Sara cardio
Icu 2417
Devi duggarrella
  
Ckfirm.com
 Jenn, holly
https://elsoberano.mx/exclusivas/

Kulpepper Curland  813 228 8600 https://www.ckfirm.com/
Morgan and Morgan  833 666 0607 https://www.forthepeople.com/
Ligori and Ligori  888 254 7119 https://www.callmeonmycell.com/
Winters and Yonker 863 451 9633 https://www.marcyonker.com/


Ckfirm.com
Method 1: Create Shortcut Manually
Right-click on your desktop and choose New → Shortcut.

In the location field, paste this:

Copy
Edit
devmgmt.msc
Click Next.

Name the shortcut:
https://seeclickfix.com/issues/19294338
https://www.facebook.com/share/p/1S1jX8kp4R/?mibextid=wwXIfr
Vula
Brooke starport
 Kristin  Megan 
Blanca
Jordan 
https://mobilize.us/s/A8NiSu
Music switch, phone cord
4 way headphone, deoxit
Kamall
cleared