Batch file to map your Android phone as network drive in Windows.
- An Android phone
- WebDAV Server or WebDAV Server Ultimate
- WiFi router (PC and phone on the same network)
Batch file to map your Android phone as network drive in Windows.
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.
// ==UserScript== | |
// @name RedditP Collect | |
// @namespace http://tampermonkey.net/ | |
// @version 0.4 | |
// @description Collect cool stuff while staying in the flow. Download them at the end. | |
// @author Leeroy | |
// @match http://redditp.com/* | |
// @grant GM_addStyle | |
// @grant GM_download | |
// @noframes |
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
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.
#Requires -Version 2.0 | |
function Test-InternetAccess { | |
<# | |
.SYNOPSIS | |
Tests connectivity by pinging Google DNS servers once | |
.DESCRIPTION | |
Uses Test-Connection to ping a host, with -Quiet for returning a boolean. The default is a highly available Google DNS server (8.8.4.4) | |
.EXAMPLE | |
Test-InternetAccess |
; Movable blank | |
; Blank fullscren GUI window that's click-through | |
; It's not power-saving but allows you to peek through when you need it. | |
; For power saving consider just switching (native Windows shortcut Win + P) | |
; Move it from screen to screen (native Windows shortcut Win + Shift + Left/Right) | |
; Make it translucent (Helpers enhancement Win + PgUp/PgDn or Win + WheelUp/WheelDn) | |
; Close it like a regular window (native Windows Alt + F4) | |
; Start multiple instances for multiple monitors |