topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday January 15, 2025, 2:29 am
  • 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 - Nod5 [ switch to compact view ]

Pages: prev1 [2] 3 4 5 6 7 ... 47next
26
So basically it appears to have no rhyme or reason.
Feels like Microsoft is nerd sniping us ;D

27
General Software Discussion / Re: duckduckgo for email?
« 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.

28
General Software Discussion / Re: Split a video in n equal parts.
« on: August 28, 2022, 12:10 PM »
I am afraid is only for mpeg videos.
Nope https://www.ffmpeg.o...al.html#Video-Codecs

29
General Software Discussion / Re: Split a video in n equal parts.
« 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

30
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.

31
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


32
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.

33
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.

34
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::

35
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).

36
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.

37
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/

38
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.

39
N.A.N.Y. 2021 / Re: NANY 2021: MoveFileHere
« 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.

40
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/

41
N.A.N.Y. 2022 / Re: Pledge: Search Thing
« 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.

42
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.

43
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.

44
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.

45
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.

46
Find And Run Robot / Re: Powershell problems
« 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
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

49
N.A.N.Y. 2021 / Re: NANY 2021: MoveFileHere
« 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

50
Post New Requests Here / Re: [IDEA] hotkey/shortcut tracker
« on: May 29, 2021, 04:54 AM »
AutoHotKey?
A few tips for AutoHotkey. Pick one organizing system for your hotkeys and stick to it. Some variants:
1. collect all hotkeys in a single .ahk file. You can then simply open the source and look up all hotkeys there. Search for "::" to look up hotkey definitions e.g. "^k::".
2. Separate files, but all hotkeys for one application or window in one .ahk
3. Separate files, but put the hotkey keys in the filename. For example "Firefox copy URL (ctrl+K).ahk". If consistently done then you can search for a hotkey with Everything or similar file search tool.

Also
4. Use a plaintext search tool like ripgrep to instantly search the contents of a whole folder of .ahk source files.
5. Use this script to show a list of all currently running AutoHotkey files.

Pages: prev1 [2] 3 4 5 6 7 ... 47next