Readable Bookmarklet
Bookmarklet Browser Enhancement Readability
Readable is an application that helps you read more of the web. It reformats text — on any website — according to your exact specifications.
Bookmarklet Browser Enhancement Readability
Readable is an application that helps you read more of the web. It reformats text — on any website — according to your exact specifications.
Windows Enhancement Productivity
Enhance Open... or Save As... dialogs with a quick way to navigate to currently opened folders.
This is an AutoHotkey script that gives common file selection dialogs an extra feature: middle-clicking invokes a menu of currently opened folders. Say you want to save or upload something to/from a folder you've got open in Windows Explorer. The dialog box pops up with the last folder (from another project) or My Documents, and now you have to manually navigate to the folder you want, or copy-paste its path from the open Explorer window. I wanted to get to the active locations quicker. Recent Items wasn't exactly helping, so I made this by forking FavoriteFolders.ahk by Savage. Tested
IFTTT-style application actions using auditing and scheduled tasks under Windows
The script audits a trigger application to make it raise an event when it's executed, then schedules a task to run an action command on that event. For example an automation script, or a batch file, or another app.
Batch file to map your Android phone as network drive in Windows.
Generates .M3U playlist of all YouTube videos in current subreddit listing for use in foobar2000 with the foo_youtube component.
R2YS - a foo_jscript_panel script for foobar2000.
This isn't maintained, look into
Its use of the Reddit API requires an account though.
Piping to gulp.dest
would re-write all input files.
This checks for the pattern first and only passes along files that actually need to be processed,
avoiding unnecessary overwriting with the same content. A benefit is that your files' timestamps stay meaningful.
REM ***** BASIC ***** | |
'Extract data from all charts in document | |
'Will open all charts as new Calc spreadsheets | |
'and you can edit them and save them there. | |
'Based on ExtractDiagramToSheet by sasha.libreoffice@gmail.com | |
Sub ExtractAllDiagramsToSheets |
; Taskbar Quick Close | |
; Quick closing windows from the taskbar with Middle-click. | |
; Ctrl + Middle-click for original action (new window) | |
#If ShouldActivateMButton() | |
; Control + Middle-click does the middle-click action (new window) | |
^MButton::MButton | |
; Middle-click to close, for quicker one-handed use | |
MButton:: | |
MouseClick, Right |