topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday November 5, 2025, 11:37 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

Recent Posts

Pages: prev1 [2] 3 4 5 6 7 ... 47next
26
Find And Run Robot / appcap and appcapresults not working for .ahk files
« Last post by Nod5 on September 12, 2022, 06:11 AM »
appcap and appcapresults do not work for AutoHotkey .ahk files, but they work if we compile the same script to .exe

To reproduce this issue:
1. Save this script as C:\folder\a.ahk
Code: Text [Select]
  1. FileAppend, C:\Windows\System32\mspaint.exe, * ;StdOut
2. right click .ahk and compile, to get a.exe
2. Create new FARR alias
alias name: appcaptest
alias results:
Code: Text [Select]
  1. .ahk test | appcapresults C:\folder\a.ahk
  2. .exe test | appcapresults C:\folder\a.exe
3. try both alias results

Expected effect: both alias results should transform the result list to a link to Paint
Actual effect: ".ahk test" does nothing

This issue has existed for a long time (maybe since appcap was first introduced?) but would be nice to see it fixed (if possible and easy) or to see if anyone knows a workaround on the AutoHotkey side, without compiling the script that is. Mouser, does appcap try to use any file passed to it (and the issue is rather something in Windows) or is there a whitelist in FARR based on extensions or something else?
27
General Software Discussion / Re: Open selected files from a windows folder
« Last post by Nod5 on September 07, 2022, 03:04 PM »
So basically it appears to have no rhyme or reason.
Feels like Microsoft is nerd sniping us ;D
28
General Software Discussion / Re: duckduckgo for email?
« Last post by Nod5 on August 29, 2022, 07:22 AM »
I've tried the basic version where you get a [email protected] email alias. Works as expected. Useful if you don't want to use your main email to sign up for some site or newsletter. There are many other similar services but DuckDuckGo is well known and has a pretty good privacy track record.
29
General Software Discussion / Re: Split a video in n equal parts.
« Last post by Nod5 on August 28, 2022, 12:10 PM »
I am afraid is only for mpeg videos.
Nope https://www.ffmpeg.o...al.html#Video-Codecs
30
General Software Discussion / Re: Split a video in n equal parts.
« Last post by Nod5 on August 26, 2022, 12:52 AM »
This is easy with the command line tool ffmpeg
See this example https://unix.stackexchange.com/a/212518
Or to find similar variants https://www.google.c...m+ffmpeg+split+parts
31
Handy! I have some similar "lazy version control" habits, for example to clone some single work in progress file with a timestamp suffix (via autohotkey and FARR, of course ;D). For when strict VC is too much but you still want to avoid the "file.ext", "file - copy.ext", "file -copy(2) final.ext" mess.
32
Find And Run Robot / Re: A similar function to Listary's Quick Switch function?
« Last post by Nod5 on April 07, 2022, 02:53 PM »
I noticed that there's a standalone version of QuickSwitch (in AutoHotkey) under active development at https://github.com/gepruts/QuickSwitch It support not only File Explorer but also som third party editors. I haven't tried it but thought it might interest some here.
There's a discussion thread in Everything's forum https://www.voidtool...c.php?f=2&t=9881

33
General Software Discussion / Re: Permanent clipboard / textblock catalogue
« Last post by Nod5 on February 11, 2022, 12:44 PM »
Might be a bit complicated or not as easy as i imagine.
Hm, sounds like it is just like you described what you wanted in this previous post
https://www.donation....msg447950#msg447950
To use the terms from your sketch graphic: the "show in list part" goes on the left side of the | pipe character. The "send text" part goes on the right side after the string "paste ". Repeat that pattern on a new line for as many key/value pairs you have.
Why not try it for a few days (and try Lintalist too!). Then you'll see if it is a good match and if not you likely know more exactly what other features you're after.
34
General Software Discussion / Re: Permanent clipboard / textblock catalogue
« Last post by Nod5 on February 11, 2022, 08:58 AM »
So you enter "abc" and it will be replaced by "paste 123"
You open FARR with the hotkey, select "abc" and press Enter and FARR then pastes "123" at the cursor.

But then you need to remember the keyword that will be replaced, am I right?
Whatever you put before the first pipe | character when you create the alias is visible in FARR so if you want both the keyword and text value visible do something like
abc -> 123 | paste 123
But if you have a large number of such textblocks then Lintalist is more suited for the job.
35
General Software Discussion / Re: Tool to find where a hotkey press goes?
« Last post by Nod5 on February 04, 2022, 10:35 AM »
I could swear there was a tool that was discussed here years ago
This thread perhaps https://www.donation....msg445306#msg445306

@kunkel321 For AutoHotkey scripts that you have the .ahk source for try my suggestion from the above thread: use ripgrep to near instantly search through all .ahk source files for a hotkey string e.g. ^y::
36
General Software Discussion / Re: Permanent clipboard / textblock catalogue
« Last post by Nod5 on January 30, 2022, 06:45 AM »
You could kind of also use mouser's FARR for that.
1. Create an alias with keyword value pairs in this format
keyword | paste value
abc | paste 123
golf | paste don't forget to play golf
2. Set a regex pattern for the alias. For example
^zz$
3. Set up a special hotkey in FARR to open FARR and trigger the alias (which then shows the list of keys). Under "Text for search edit box" add "zz" (the string that will trigger the alias).
37
The block protocol
https://www.joelonso...-better-with-blocks/
https://blockprotocol.org/
I'm curious if it will take off and how it might change note taking software. Could help with interoperability and data migration.
38
General Software Discussion / Re: Permanent clipboard / textblock catalogue
« Last post by Nod5 on January 28, 2022, 09:29 AM »
Mouser's Form Letter Machine might be usable like that
https://www.donation...-form-letter-machine

But the most advanced such tool I know is Lintalist. Very customizable!
https://lintalist.github.io/
39
PublicDomainVic / Re: Prepend Numbers, Serially, To Desktop Items Selected
« Last post by Nod5 on January 22, 2022, 07:34 AM »
That's a super duper niche request ;D Seems like a very small set of people who need to incrementally prefix rename desktop icons in horizontal order often enough that starting a dedicated tool could save them time compared to doing it manually?

A tip if anyone goes for it: There are existing functions in the AutoHotkey forums for getting filepaths from selected Desktop files and also for getting the X Y position of all Desktop icons. Use both to find the horizontal order.
40
N.A.N.Y. 2021 / Re: NANY 2021: MoveFileHere
« Last post by Nod5 on January 09, 2022, 07:08 AM »
I'm (very) embarrassed about the lateness of this response, but this works a treat -- thank you very much  :-[  :up: :up:
No worries, thanks for testing the fix. I updated the main GitHub release with it now.
41
Coding Snacks / Re: 30SecondSilencer - add silence every 30 seconds to an mp3 file
« Last post by Nod5 on January 07, 2022, 11:17 AM »
Hi, I can't make it work on Windows 10. Could you fix it?
It works on Windows 10. The old ffmpeg link has expired but you can get a compatible version of ffmpeg and ffprobe in ffmpeg-master-latest-win64-gpl-shared.zip on this release page
https://github.com/B...peg-Builds/releases/
42
N.A.N.Y. 2022 / Re: Pledge: Search Thing
« Last post by Nod5 on December 18, 2021, 01:08 PM »
I like customizable short search syntaxes for browsers, the more the merrier. The description has some similarity with Yubnub https://yubnub.org/ , which I had almost forgotten exists.
43
Find And Run Robot / Re: Location of .ini and Alias folder in Win 10 and Win 11
« Last post by Nod5 on December 05, 2021, 11:46 AM »
I still run FARR in Windows 10 so can't comment about Win 11 folder changes.

One alternative though is to use FARR in portable mode. The latest release is here https://www.donation...ex.php?topic=10505.0
Better safe than sorry: make a backup of your aliases and settings before migrating to portable mode.
44
Latest insider version of Obsidian brings
Neat features!

I haven't been keeping up with the huge stream of note taking apps (and their updates) for a while. Do you know if Obsidian or any competitor by now has an easy way to treat indentation spaces as... indentation spaces. That is, to override the default Markdown rule that treats four space indentation as a code block. I know about the workaround to use   (stack overflow) but am looking for a built in solution.
45
Post New Requests Here / Re: Delete specific folders in a directory hierarchy tree
« Last post by Nod5 on November 23, 2021, 05:41 AM »
Easy to do with Everything https://www.voidtools.com/
For example if the start folder of the tree is "C:\tree" then you can list all its subfolders with "xyz" in the subfolder name with this search line. (The option "match path" in the menu "Search" must also be enabled.)
"C:\tree\" xyz folder:
You can then select the subfolders in the results list and delete them, just like in File Explorer. Doing so will also delete any files within those subfolders, of course. If the subfolder name fragment you search for has spaces then quote enclose it e.g. "abc def".

3.png

This basic example can be modified for more complex searches, for example with regex pattern matching instead of a plain string.
46
General Software Discussion / Re: Croc: Command-line secure file transfer tool
« Last post by Nod5 on October 12, 2021, 11:01 AM »
A similar tool: magic wormhole
Some discussion of both here https://news.ycombin...com/item?id=27262193
Croc had some vulnerabilities earlier this year but are fixed now.
47
Find And Run Robot / Re: Powershell problems
« Last post by Nod5 on September 09, 2021, 09:56 AM »
If you have the new Windows Terminal you can also do
C:\Users\<username>\AppData\Local\Microsoft\WindowsApps\wt.exe powershell ssh
48
Cheers for Deozaan! :up:
49
The upcoming version 1.5 of Everything will add a lot of features for dealing with file properties. Worth a look. Overview here https://www.voidtool....php?f=12&t=9788
50
N.A.N.Y. 2021 / Re: NANY 2021: MoveFileHere
« Last post by Nod5 on July 21, 2021, 02:55 AM »
I can confirm that I too had the exactly same issue, when accessing hwnd, the program would crash.

I seem to get error messages no matter what I do

I have still not been able to reproduce the crash so cannot yet explain what the root cause is. Here is a test .ahk version (requires AutoHotkey installed) with an attempted workaround. Can you test it and tell me if the error still happens?

https://github.com/n...721/MoveFileHere.ahk
Pages: prev1 [2] 3 4 5 6 7 ... 47next