18 Nov 2024
Tea Glass
In the quiet corners of a restless mind,
I seek the verses, once so well-defined.
A long-lost love, a whisper in the past,
Yet all I grasp, those words: a tea glass.
Fragments of a romance etched in time,
Elusive lines like shadows, hard to find.
The scent of distant evenings fills the air,
But all I hear: the clinking tea glass, rare.
Memories dance like dust in fading light,
Echoes of a poem, soft and bright.
Your laughter mingled with the sound,
Of a tea glass gently set down.
Through the haze of years and fleeting dreams,
The heart recalls what reason deems.
Love lost to time, yet held so dear,
In the fragile clink of a tea glass, near.
I search my soul for stanzas lost,
In words unspoken, dreams it cost.
Yet in my heart, the essence stays,
A tea glass, a love that never decays.
AI Prompt
“Write a poem about trying to remember a poem about a long lost love where all you can remember are the words, tea glass.”
28 Jan 2024
Summary
V SPEEDS - WILGA “HS-SSR”
From :PZL-104 “Wilga” Checklist (abbreviated)
- Vr (21*) - 48 kts
- Vx (21*) - 51 kts
- Vx (44*) - 49 kts
- Vy (0*) - 62 kts
- Va - 93 kts
- Vfe - 80 kts
- Vref (44*) - 67 kts
- Vs (0*) - 57 kts
- Vso (44*) - 51 kts
- Vparachute - 60-80 kts
- Takeoff distance (21* flap) - 200 meters
- Landing distance (44* flap, 3 point landing) - 200 meters
- Gross weight - 2,866 pounds
- Empty weight - 2,156 pounds
- Baggage area - 66 pounds max
- Usable fuel - 22+22 US Gal (170 Liters) (min 91 Octane)
- Fuel flow - 14-22 GPH (50-85 LPH) // average is 60 LPH.
- Oil capacity - 23 liters // average consumption 1 LPH
- Engine type - AI-14RA (251 HP)
- Aircraft serial no - CF21940944
- Length - 27’ // Span - 37’ // Height - 10’
- Dive - speed 110 kts (MP not under 330 mm Hg)
- EMERGENCY - fuel pump on, check fuel PSI, switch tanks
11 Jul 2022
davekurman.com is now built with Jekyll.
Jekyll • Simple, blog-aware, static sites
Transform your plain text into static websites and blogs
The site is hosted on GitHub.com.
When I commit changes to the repo GitHub Actions automatically rebuild the site. It uses the Jekyll Deploy Action by Jeffrey Tse.
Here are some tips for Managing a custom domain for your GitHub Pages site. This is a great resource.
21 Nov 2017
Summary
- Send text from Windows to Drafts app. Drafts is an iOS app.
Drafts. Where Text Starts.
Drafts lets you turn text into action – it’s a quick notebook, handy editor, and writing automation tool, all in one.
– from the website
Features
- Sends Windows clipboard text to Drafts by way of Dropbox.
- Sends PowerShell command line output to Drafts.
Setup
- Download or clone this repo to your ~/Documents/WindowsPowerShell/Modules folder.
- Add import-module Send-ToDrafts in your $PROFILE.
- Create the Drafts folder at ~/Dropbox/Drafts.
- From the Drafts Action Directory install Dropbox to Drafts.
Usage
Send-DosToDrafts cmdlet
- This cmdlet works with PowerShell commands entered as command line arguments or other PowerShell commands piped to Send-DosToDrafts.
- Running as a command line argument:
# Outputs the command results to the current window and creates a text file with the output in ~/Dropbox/Drafts
Send-DosToDrafts Get-ChildItem
- Running as piped commands:
# Outputs the command results to the current window and creates a text file with the output in ~/Dropbox/Drafts
Get-ChildItem | Send-DosToDrafts
Send-ClipboardToDrafts cmdlet
- Copy text to clipboard & run Send-ClipboardToDrafts.
- I made a Windows shortcut that runs Send-ClipboardToDrafts in a minimized PowerShell window. That provides a quick icon to click. In the future I may develop a C# app for the system tray.
Notes