topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Saturday April 4, 2026, 11:33 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kunkel321 [ switch to compact view ]

Pages: [1] 2 3 4 5 6 ... 25next
1
N.A.N.Y. 2021 / Re: N.A.N.Y. 2021: RaptureReplica by KodeZwerg
« on: March 15, 2026, 10:29 AM »
Hello KodeZwerg.   Is Rapture Replica still an active project?  If so, here is a new feature idea...  Add the ability to rotate by 90, 180, 270.  And add ability to flip left/right (like a mirror image) or up/down. 

I've been using RR pretty regularly since you first posted it.   8)

2
Just an update, incase anyone finds this thread.   I did buy the above-mentioned "Account Surfer" tool.  It works fairly well.  You set it as your default "browser" then it directs traffic as needed.

It's also worth noting the free/donationware "Quick Access Popup."  It is a popup menu where you can put links to websites.  It supports "User variables."  I have a couple of my user variables set up like:
{work}="C:\Program Files\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1"
{home}="C:\Program Files\Google\Chrome\Application\chrome.exe" --profile-directory="Default"
Then, when I save a link to a URL, I point it to (for example)
{home} http://donationcoder...?action=recent;dense
that makes it open in the correct profile. 

I'm still using Win 10... Haven't tried either of these in Win 11.

3
My experience with Claude has been similar.  I'm not a professional programmer.  I just make my own tools with AutoHotkey script.  I've tinkered for probably 20 years or so, first with AHK v1, then v2.  Over the years, I've found the learning process very difficult and frustrating.  For the first 10 years I just used hotstrings and very basic guis, I would learn a few new skills and implement them, then try to learn more, get frustrated, and stop for a while.  I'd keep using the hotstrings and tools I'd made, but wouldn't learn anything new until I started again.   

Anyway, the emergence of AI code majorly jumpstarted my coding abilities.  I suspect that there might be a disadvantage in that learning the "hard way" over years of trial and error might give a broader foundation of knowledge at whatever level/depth the (human) coder is at.   So for example, if something fails, I'll have a broad knowledge base of why it failed.   That said, AI can serve as an "external brain" if I choose to use it that way.  I can ask Claude why something failed, and it will happily explain it.  Also, AI is able to introduce me to new coding techniques in a way that is immediately context-relevant, because it is used for projects and tools that I, personally, want to make and use.  My AutoCorrect2 project had sort of "evolved" over time, as I was first learning (the hard way) the different functionalities.  So it was a couple thousand lines of total chaos.  It was like impossible to maintain.  Fortunately, I had written a comprehensive user manual too..  I attached the code and the manual to a claude chat and told it to refactor the code any way it wanted, but to use best-practice code structure, consistent variable naming, and any other improvements that it recommended.   It completely remade the project using classes and setting things up in modules.  Very little debugging was needed.  I suspect that attaching the user manual was an important part of this, because it gave a text description of the different components, what they are for, and what they do.   This essentially acted like a 40-page prompt for the chat. 

4
Thanks for sharing -- It looks impressive! 

I'm a bit embarrassed, but I don't see how to run or install it.  I downloaded the full repo from Github, but there are no exe files...  Do I need to compile something? 

EDIT:  My bad...  In the GitHub repo, on the right, is a 'Releases' link.  It takes you here
https://github.com/p...ol/notetask/releases

From that location you can download installers or a compiled (.exe) portable version.   :Thmbsup:

5
DC Website Help and Extras / Re: DC site often doesn't load at all...
« on: February 11, 2026, 07:20 AM »
It has been working well for the last several days.  I'm near Seattle.

6
N.A.N.Y. 2026 / Re: N.A.N.Y. 2026 submission -- Sticky Notes
« on: January 30, 2026, 10:26 AM »
Hmm.. That's no good.  Did you download the full repo from github?  There needs to be a "Sounds" folder with .wav files in it. 

With the stick-to-window feature, what is happening?  Do you at least see the list of windows in a listview, in the "Select Window" dialog?

FYI about 80% of the time, I can't access the DC forums, so replies might be delayed.

7
DC Website Help and Extras / DC site often doesn't load at all...
« on: January 27, 2026, 07:44 AM »
I'm not sure where to post this.  On some days (like today) the donationcoder.com site works fine.  But often, it will never load, and will time-out instead.  Sometimes I get to the CloudFlair page, sometimes not.  I live west of Seattle, WA.

8
N.A.N.Y. 2026 / Re: N.A.N.Y. 2026 submission -- Sticky Notes
« on: January 27, 2026, 07:40 AM »
I'm glad you got it working.  Thank you for the correct code.  I have added it to the github repo.  I was thinking about what you said about using daynum.  I might revisit this.  By using the daynum to save alarms to the sticky_notes.ini file, I might be able to get rid of the hard-coded day names altogether and just read the 7 day names for the local computer at script start. 

9
N.A.N.Y. 2026 / Re: N.A.N.Y. 2026 submission -- Sticky Notes
« on: January 24, 2026, 09:09 AM »
@DeVamp Please try the version I just committed to the Github repo. 
https://github.com/kunkel321/Stickies

FYI from commit comment:
-The map with weekday names was redundant (existed in three places).  There is only one map now, and it supports several different languages. 
-The script attempts to determine your language at startup and uses the associated weekday names and date formats.  (Dialogs will still be in English.) 
-Several (but not every) languages are supported.
* German (language codes: 0407, 0807, 0c07, etc.)
* Dutch (language codes: 0413, 0813)
* French (language codes: 040c, 080c, 0c0c, 100c, 140c, 180c)
* Spanish (language codes: 0c0a, 080a, 100a, 140a, 180a, etc.)
* Russian (language codes: 0419, 0819, 0c19)
* English (default for all English variants and unsupported languages)

-I can't really test the non-English languages, so please let me know if there are any problems setting alarms. 
-I can probably add a language for someone if they want me to. 

EDIT:  I just now saw the post by @Marco66.  Marco, thanks for the bug report.  Does this new version fix it?

10
N.A.N.Y. 2026 / Re: N.A.N.Y. 2026 submission -- Sticky Notes
« on: January 23, 2026, 07:30 AM »
Why are you using a shortday and not a daynumber?
Hello,
I only did that so that the note editor alarm button, and the alarm column in the note manager would have "human-friendly" letters Mo, Tu, ...  rather than numbers. 

I'll see if I can make the code more useful for non-English computers. 

Also though, You should be able to just change the text in the map, so that it matches the names of the weekdays on your computer, and I think it will work.  I see that the map occurs in three different locations, which is redundant--you'll have to update all three.  I will also try to get rid of the redundancy.   No time right now...  Maybe this weekend.



11
N.A.N.Y. 2026 / Re: NANY 2026 : Fast Filter Text
« on: December 26, 2025, 09:12 AM »
Pretty cool app!!  Thanks for sharing!   :Thmbsup:

12
N.A.N.Y. 2026 / N.A.N.Y. 2026 Submission: AutoCorrect2
« on: December 24, 2025, 12:28 PM »
NANY 2026 Entry Information

Application Name AutoCorrect2
Version Please see version date in code
Short Description An AHK v2 tool for capturing, refining, managing, and improving a library of AutoCorrect hotstrings.
Supported OSes It is an AutoHotkey v2 app, so it should run on a typical Windows machine.
Web Page https://github.com/k...nkel321/AutoCorrect2
Download Link https://github.com/k.../refs/heads/main.zip
Version HistoryUpdate edits are interspersed through out the AutoHotkey forum thread: https://www.autohotk...hp?f=83&t=120220

Description
This is not like the AutoCorrect on your phone. It’s like the one in MS Word, that runs silently in the background.  The project started as a customized version of the 2007 AutoCorrect.ahk file that can be found on the internet.   I made my own version of the Hotstring Helper quick-entry tool and added logging functionality so I could examine which of my hotstrings were getting backspaced.  When the whole thing was converted over to AutoHotkey v2, it became “AutoCorrect2” and “HotstringHelper2”.  At this point, the project has evolved into a suite of tools focused around managing and improving one’s AutoCorrect library.   There is more detail in the (long) user manual found in the Documentation folder.


Updates
I’m not a professional programmer, and the AutoCorrect2 suite of tools definitely have a “homemade” look to them.  There is no Windows Installer tool, and the app is mostly just portable.  Users can optionally delete their existing AutoCorrect2-main folder and just download the new one from GitHub each time.  This misses the point of logging and analyzing your autocorrects (and/or manual corrections) though.   The value of log analysis tools is to analyze your own typing/mistyping patterns and let the AutoCorrect hotstring library (HotstringLib.ahk) be fine-tuned to you.  Because of this, I made the Updater tool.  It checks GitHub for updates, then shows you just what files have newer versions.  That way, you can keep your existing acSettings.ini file and your own log files, and just get the newly-updated files when you run the Updater in the future.  Please note that updated are posted only on GitHub.  I've been adding update notes to the AutoHotkey forums thread, but this Donation Coder post does not get updated. 

Setup
-For the first-time setup, I recommend downloading the entire AutoCorrect2-main GitHub repo.  It has the supporting files and folder structure that the various tools use.
-Then go to AutoCorrect2-main\Core\AutoCorrect2.exe and double-click it. 
-To run at start up, go to the Windows SysTray and find the blue on white Greek Psi icon.  Right-click that and choose “Start with Windows.”  Remember: if you stop using the app later, go back and uncheck that. 
-For subsequent updates, use the Updater tool.

System Changes
-None.  The AutoCorrect2 apps are self-contained and portable.  There is an option to put links in your Windows Startup folder for the AutoCorrect2.exe and the MCLogger.exe, but no other parts of windows changed.  The Windows Registry is not touched.     
-Since no files are added to your system, there is no “Uninstall” either.   Just remove the optional “Start with Windows” if needed, then kill the apps, and delete the folder.

Compilation
-None.  I haven’t compiled any of these.
-As with my other apps, the .exe files are not compiled versions of the .ahk files.  They are just copies of AutoHotkey (v2, 64bit) that have been renamed to match the corresponding .ahk files.  This allows each .ahk script to run as a portable app.  For this to work, the same-named .ahk and .exe files must be kept in the same folder.  Double-clicking an exe runs the same-named ahk.

Logging
By default, AutoCorrect2 will log the autocorrections that happen, and will cache the last 5 words typed.  Those are saved in the ErrContextLog.txt file if/when you backspace an autocorrection.  Digits are never cached/logged.  AutoCorrection and backspace context logging can be disabled in the acSettings.ini file.  Tip: Use the SettingsManager.exe tool as a frontend for editing the acSettings.ini file.   Look for the ACSystem section, and the EnableLogging key.  Set it to 0.  There is an optional tool, the Manual Correction Logger (MCLogger.exe) which can run in the background and attempt to detect when you’ve corrected a typo, then format the typo/correction pair as “::typo::correction” and log it.   You can then analyze that log for promising new AutoCorrect entries to add.  Again, digits are not monitored or logged.   Note:  If a person deletes the entire AutoCorrect2 folder, then just downloads the whole new folder from GitHub, then logging auto-corrections and manual-corrections is pointless—so turn off the EnableLogging each time and don’t bother running the MCLogger tool.  Note:  There are a couple of places where the code “reaches out” to sites, such as GitHub, or ChatGPT, but a user’s log data is never sent. 

Usage and Tips
-Select a misspelled word, or a paragraph you wish to reuse in your text editor, and press the Win+H hotkey.  Experiment with the buttons and functionality.
-With the HotstringHelper2 dialog open, select any dialog element and press F1 for onboard tips.
-The “Exam” pane is for fine-tuning AutoCorrect entries before saving them.  Right-click the Exam button for a list of buttons to related tools and files.
-Check out the user manual, because there are too many things to list on this page.
-See also hh2QuickSheet in Documentation folder.

References
-Many of the excellent folks at the AutoHotkey forums have helped over the years—Too many to list here, though they are listed in the code comments and the user manual. Anthropics's Claude AI has been used extensively to organize this project and write the code.  Most of the icons are freebies from Icons8.com.  Note also the embedded WordNet dictionary and several classes that were written by other people (but are appropriately referenced).

Screenshot
Image of HotstringHelper2, showing Control Pane.
screenshot HH2 control pane 2025-12-24_08-32-39.jpg

Other Notes
-I should mention that, while the User Manual get's updated periodically, it quickly gets out of date, since I've been adding features and new scripts so frequently.  You can read the last several Edits in the AHK forum thread to see the latest updates.
-As indicated in the manual and the forum thread:  I left some of my auto- and manual- correction data for folks for experiment with, but you should delete my data, and collect/analyze your own.

EDIT 12-30-2025
Youtube Screencast section added to Readme on https://github.com/k...nkel321/AutoCorrect2
-(intro) https://www.youtube..../watch?v=cI6NwprfvpE
-Other screencasts posted too.
-One of these days I'll update the User Manual.

13
General Software Discussion / Re: N.A.N.Y. 2026 sub forum?
« on: December 24, 2025, 10:11 AM »
I guess I should have been more patient!  Mouser or Mod, you are welcome to move this entry
https://www.donation....msg456491#msg456491
to the 2026 forum, if you wish. 

14
N.A.N.Y. 2026 / N.A.N.Y. 2026 submission -- Sticky Notes
« on: December 22, 2025, 11:16 AM »
NANY 2026 Entry Information

Application Name Sticky Notes
Version See version date in code
Short Description Yet another digital sticky notes application.  Has alarms, interactive checkboxes, some other stuff.
Supported OSes Only tested on Windows 10
Web Page https://github.com/kunkel321/Stickies
Download Link https://github.com/k.../refs/heads/main.zip
System RequirementsIt is an AutoHotkey v2 app, so it should run on a typical Windows machine.
Version HistoryThe AHK Forum thread serves as an update history:  https://www.autohotk...hp?f=83&t=135340
Author Kunkel321.  Claude AI was used, and a couple of classes from AHK forum member Just me, and one from Hellbent, appear in the code too.  I made the custom icon, but the .wav files are freebies collected from all over.


Description
It's a Desktop Sticky Notes application.  It started in January 2025.  I wanted to make my own alarm clock with AHK v2 code.  It made sense to have a custom message appear with the alarm.  The custom message evolved into a sticky note, and the alarm devolved into a secondary feature.  I've been using it for about a year, and it seems pretty stable and useful.  Of course, stick notes are not for everyone.  As indicated in the GitHup repo:  The zip contains a "sticky notes.exe" file, but that is NOT a compiled version of "sticky notes.ahk".   It is a copy of AutoHotkey.exe from the AHK website, that as been renamed to match the .ahk file.  This allows the app to run as a portable app.  The caveat is that both same-named files must be kept in the same folder.  Double-clicking the exe, runs the same-named ahk.  Most of the information below is from the code comments and/or the GitHub repository.

Features and Tips
- Create sticky notes that persist between script restarts
- Notes cascade from top-left of screen for better visibility
- Cascading Positions: New note doesn't fully cover previous note
- Notes cycle through different pastel background colors automatically
- Note font color can optionally cycle too, or just use black.
- Several formatting options including fonts, colors, sizing, and borders
- Visual customization: Border thickness changes with bold text
- Border color always matches font color.
- Several languages supported for weekday names and date formats.  English is default.
- Stick notes to windows: Notes can be attached to specific application windows
- Window persistence: Notes "stuck to" specific windows reappear when window reopens
- Notes can be unstuck by clicking the window button again
- Alarm System: Set one-time or recurring alarms with custom sounds
- Set alarms for individual notes with optional weekly recurrence
- Many editor dialog options support accelerator keys (Alt+A for alarm, etc.)
- Delete key deletes note from desktop.
- Visual alert: Notes can shake when alarms trigger
- Multiple alarm repeats: Choose between once, 3x, or 10x alarm repetitions
- Alarm sounds: Custom alarm sounds can be added to the Sounds folder
- Smart alarm management: System detects and reports missed alarms on startup
- An alarm can have a: date and/or time and/or recurrence
- The logic for alarms is this:
- > Date + time + no weekly recurrence: plays once on given date, then deletes itself
- > Date + no time + no weekly recurrence: note appears in morning on date with no sound/shake, then alarm deletes
- > Date + time + weekly recurrence: plays on given date, doesn't delete itself, plays again on recurring days
- > Date + no time + weekly recurrence: note appears in morning on date, doesn't delete, reappears on recurring days
- > No date + no time + weekly recurrence: note appears in morning on recurring weekdays
- > No date + time + no weekly recurrence: plays at specified time
- > No date + time + weekly recurrence: plays at specified time on recurring days
- Main window with note management, preview, and search functionality
- Color-coded notes: Notes maintain their color scheme in preview list
- Rich preview: Right-click notes in manager for formatted preview with original fonts/colors
- Search functionality: Filter notes by content in main window
- Selective display: Filter note list to show only hidden or visible notes
- Double-click a note in Note Manager to show/hide
- Include recently deleted note in hidden/visible listview filter
- Deleted notes are identified by deletion time appearing in listview
- Reorder notes, then merge text.  Top note's properties are used. Bottom notes are deleted
- Access main window with Win+Shift+S (hidden by default)
- Resize main window, by dragging edge/corner, to see more of note text in listview
- Notes' show alarm times and window attachments in note manager listview
- Multiple selection: Use Ctrl+Click to select multiple notes in manager
- Bulk operations: Select multiple notes to hide/unhide/delete/undelete simultaneously
- Notes are created using Win+Shift+N or from clipboard with Win+Shift+C
- Hotkeys and more can be changed near top of code
- Tips button in note manager shows current hotkeys and other tips
- [ ] Pin checkbox indicates if window is "Always on Top"
- Double-click top bar or right-click for editing options
- Drag notes by their top bar to reposition
- Configurable drag area: Option to maximize note space by minimizing drag area
- Notes auto-save position of note when moved
- Turn off note deletion warning
- Undelete notes
- Deleted notes are purged from ini file after 3 days (Configurable)
- Checkbox Creation: Any text line starting with [] or
  • becomes an interactive checkbox

- Checkbox Safety: Alt+Click required by default to prevent accidental toggles
- Header Creation: Any text line starting with # becomes bold
- Hidden or deleted notes can be restored through main window or via note context menu
- Access hidden note menu directly via hotkey
- All note data saved to sticky_notes.ini in script directory
- Check error_debug_log.txt for troubleshooting (if enabled; warning: system hog)
- Use manual "Save Status" after significant changes
- "Load/Reload Notes" refreshes all notes from storage
- System tray icon provides quick access to common functions
- Start with Windows: Option available in tray menu

Screenshots
Screenshot 2025-12-09_657.jpg
Screenshot explanation:
1. Sticky Note. The top/center of each note is a "drag area." Drag the drag area to move the note. Double-click the drag area to open the editor. Right-click the note for the context menu. Size of drag area can be customized. The top area of the note can be reserved. (It is not reserved in the image.) The notes have optional borders to visually differentiate them. Border color matches font color.
2. Alt+Click interactive checkbox items to toggle. Checkboxes are typed into the note text by starting a new line with [ ] or [ x ]. Checkbox text doesn’t wrap. Long items will override the note width setting. Headers are made bold by starting the line with #.
3. Note Editor. Most of the formatting options are found here. Make checkbox items or headers as seen in image. The top group of dialog controls are for formatting. Default colors of new notes cycle with each new note, but you can manually select colors or click “random” for random colors. The bottom group of controls are note options. The “Add Alarm” button opens the Set Alarm dialog seen in the image. The “Stick to Window” button opens a dialog with a list of the current visible windows on your computer (not seen in image). Stuck windows auto show/hide with their associated window. The Width box is for the width of the note. The editor will mostly change width too.
4. Alarm Settings Dialog. Single occurrence alarms delete themselves from the note after playing. An alarm can have a date and/or time. Timed alarms can have custom sounds. Choose from a folder of .wav files. There is a sound ‘test’ button and a ‘stop’ button. Timed alarms can also “Shake.” The duration and amount of shake are customizable. Untimed dated or recurring alarms silently unhide themselves the morning of the associated date or weekday.
5. Alarm date picker dialog.
6. Sticky Note context menu. When a note is alarmed, additional items (‘Stop’, ‘Delete Alarm’) are added to the menu. The “Show Hidden” and the “Undelete a note” items popup a submenu of the hidden or deleted items. Deleted items get purged from the ini settings file after X days.
7. Submenu showing hidden items. Choose an item to unhide it. Or double-click item in Manager listview.
8. Submenu showing recently deleted items. Choose one to undelete, or choose multiple from the Note Manager list.
9. Number nine?
10. Sticky Notes Manager gui form. It is hidden by default. Default hotkey to show it is Win+Shift+S. Size of Note Manager is saved in .ini file.
11. Click the Tips button for list of hotkeys and other tips.
12. The buttons on the top are for mostly ‘app-level’ commands.
13. The Filter Settings for the colorized ListView of notes. Deleted notes are hidden by default. Use edit box to filter list by note text. Filter status is saved between sessions.
14. Select a note from the list and right-click for a two-second pop up preview. List row colors match note back and font colors. Left double-click to toggle visibility of note. Note: You might need to unhide a note before editing or deleting it. Drag edge of Note Manager window to resize the list and show more notes. List is sorted by first column which is creation date. Column two shows note text. If any deleted notes are shown, then column two will have Deletion date/time stamp preceding the note text. Column three has the Alarm date and/or time, and lists the stuck-to window.
15. The buttons on the bottom are for mostly ‘note-level’ commands. You can Ctrl+Click to select multiple items. Multi-selected items can be bulk hidden/unhidden or deleted.
16. System tray icon right click menu has a few options such as ‘Start with Windows’ and ‘Open Note ini File.’

Usage
Installation
- None. This app is totally portable. Just kill the app and delete the folder to get rid of it.
- However: There is an option to 'Start with Windows.' This will put a link in your Startup folder. If you later want to get rid of the app, uncheck this option first, so the link is removed.

Using the Application
- Use the Download link above to save the ZIP file.
- Right-click the downloaded ZIP file and choose "Extract".
- Open the folder and double-click the "sticky notes.exe" file to run the app.
- Do one of the Hotkey commands as seen below to make your own notes, or right-click a sample note for options.
- Read the Tips for tips and check out the user configuration section near the top of the code.

Hotkeys
- Win+Shift+N - Create new note
- Win+Shift+C - Create new note from clipboard text
- Win+Shift+S - Toggle main window visibility
1-11-2026 update:
- Win+Shift+M - Show a pop up menu of hidden notes.  Choose an item to unhide it.

Uninstallation
-The only change made to your system is the entry in your Startup folder--And that has to be manually added by the user, via right-clicking the SysTray icon and checkmarking "Start with Windows." 
-If you want to get rid of the app, run it, right-click the SysTray icon, and make sure "Start with Windows" is unchecked.
-Then right-click the icon again, and choose "Exit".
-Once the app has been exited, delete the folder.

Known Issues
- In note listview, if notes are sorted, colors will not sort with them--that is why sorting is disabled.
- Please consider that bold text, and checkbox text, does not wrap -- Increase note width if needed.

15
General Software Discussion / Re: N.A.N.Y. 2026 sub forum?
« on: December 21, 2025, 09:52 AM »
I plan to share a couple of AHK scripts I've been working on.  I guess I'll most them in the NANY 2025 forum.  I seem to recall a template that could be inserted into a forum post, which had the html for the table that gets used to describe your app.  Does anyone know how to access that? EDIT:  I found it.  It is in the droplist near the font format buttons, just above where the forum post is typed.  "Add preset text..."

16
General Software Discussion / N.A.N.Y. 2026 sub forum?
« on: December 20, 2025, 08:02 AM »
If folks have something to share this December, where should they be posted.  Will Mouser or one of the mods make a NANY 2026 area for us?

17
https://www.macros.com/download/

MacroExpressPro is highly capable.  I used it for years before I converted all my scripts over to AutoHotkey.  The only downside is that it doesn't really support regexes.  Otherwise though, it always had the functionality that I needed. 

From the download page:
Insight Software Solutions, Inc. has officially ceased operations.

This website remains online temporarily to allow users to download the installers (both portable and standard versions) and to access permanent, non-expiring license codes.

If you use the software, it’s a good idea to:

Download any versions you need now.
Save the installer and license information locally.
Consider backing up your macros and configuration files, since no future updates or support will be available.

I already have my own code that I purchased a long time ago, put it appears that they are making the app free (see username and code on page).  It's a shame that the project is now abandonware.  It's pretty cool that it's free though.  Get it before they take the page down.

18
DC Gamer Club / Re: Latest Game Giveaway
« on: July 04, 2025, 02:46 PM »
SteamWorld Dig is free on Steam for the next couple of days:

https://store.steamp...2410/SteamWorld_Dig/
Love that game.  I've replayed it many times. 

19
DC Gamer Club / Re: Latest Game Giveaway
« on: December 03, 2024, 07:58 AM »
You have my thanks as well.  I always check this thread when it pops up with a new reply. 

20
Okay, I've had my fill.  LOL. 
Now to install https://www.informat...ers.com/topicscape/# and play with that for a while. :)

Hmm.. The TopicScape downloader doesn't seem to work.  Oh well.

21
.... Unless you really want to flick those icons around all day :D
Yep... Mostly it's just a geek toy for my purposes.  Thanks for the link!

22
.. BumpTop still looks pretty great! ..
Do you know if there is a compiled exe (Windows) of the latest? 

23
Living Room / Re: AI Coding Assistants (Who uses them and which)
« on: August 06, 2024, 09:26 AM »
I'm not a professional coder.  I just do AHK v2 for fun.  Claude.ai has gotten pretty good.  I use if frequently.  I mostly used ChatGPT before that.  GPT was often pretty good at laying out the logic for how the code should work (assuming I articulated my needs well).  It would make code with so many syntax errors, though, that it was easier to just write the code myself.   Claude is pretty good with syntax too though. 

24
General Software Discussion / Any new "List Hotkey" apps?
« on: December 26, 2023, 11:57 AM »
I still have, and occasionally use, the excellent Ethervane ActiveHotkeys
https://www.donation...ex.php?topic=18189.0
by Tranglos.  It looks like Tranglos hasn't been on the DC forums for 4 years, so I didn't reply to the thread. 

Over the years I've seen a couple of similar apps.  Of course they all suffer from Windows OS limitation of not being able to tell you which app the hotkey is associated with.  Has anyone tried to make a "logger" that would always run in the background, and watch for hotkey presses, then attempt to determine which app is being affected by them?  The app could then save the "assumed associations" to an .ini file and use them to populate a List Hotkeys app like ActiveHotkeys...

Of course antiviruses would probably flag this as a virus(?)  I dunno.  Seems like it might be a worthy project. 

Thoughts?


25
N.A.N.Y. 2024 / Re: [Pre-Release] Reddit Image Downloader
« on: August 26, 2023, 08:53 AM »
Does anyone know if this still works with the Reddit changes?

Pages: [1] 2 3 4 5 6 ... 25next