by seanlinehan on 10/14/18, 6:53 PM with 45 comments
What are the tiny tools that you use for your work?
Some of mine:
Skitch -- Little Mac app that makes it easy to take screenshots and draw/write on them
Be Focused -- A simple Pomodoro timer for Mac
"Remove Stickies" -- A URL bookmarklet I wrote that removes all floating elements from a page
by yesenadam on 10/15/18, 12:02 AM
cdf - change directory to the folder open in (Mac) Finder
cdf () {
currFolderPath=$( /usr/bin/osascript <<EOT
tell application "Finder"
try
set currFolder to (folder of the front window as alias)
on error
set currFolder to (path to desktop folder as alias)
end try
POSIX path of currFolder
end tell
EOT )
echo "cd to \"$currFolderPath\""
cd "$currFolderPath"
}
#dlm - "dlm filename" downloads filename.mp4 from URL in clipboard until its finished, resuming if interrupted
fname=$(pbpaste)
echo "Download $fname as $1.mp4 : "
until curl -C - -kLo $1.mp4 "$fname"
do
sleep 5
done
by schappim on 10/15/18, 12:57 AM
I cannot give it enough upvotes!
by LVB on 10/15/18, 4:17 AM
by ivanmaeder on 10/15/18, 7:48 AM
Download videos from YouTube and other sources: https://rg3.github.io/youtube-dl/ (was the only way I could get a video from the BBC site recently)
Chrome extension for taking a screenshot of a full web page: https://chrome.google.com/webstore/detail/full-page-screen-c...
Shameless plugs:
Script for renaming multiple files at the same time: https://github.com/ivanmaeder/vimv
Button in macOS Finder for creating a file in the current folder: https://github.com/ivanmaeder/finder-touch
That last one written in AppleScript which is craaazy.
by enjayz on 10/15/18, 1:23 AM
However, since a while ago if you search "HTML color picker" google brings up a built-in color picker as the first result.
by maio on 10/16/18, 5:58 AM
Caffeine is a tiny program that puts an icon in the right side of your menu bar. Click it to prevent your Mac from automatically going to sleep, dimming the screen or starting screen savers. Click it again to go back. Right-click (or ⌘-click) the icon to show the menu.
by xelxebar on 10/15/18, 4:23 AM
https://www.youtube.com/feeds/videos.xml?channel_id=<channel-id>
From your subscriptions page, you can even download an OPML with feeds for each channel. Most RSS will let you import this just fine.As I love the cli, my preferred reader is newsboat[0].
by mbrock on 10/14/18, 7:27 PM
clone foo/bar
into git clone --recursive https://github.com/foo/bar
is one of my favorites.by tnolet on 10/15/18, 4:50 AM
Puppeteer Recorder - tooting my own horn, but is a Chrome extension that records Puppeteer scripts. https://github.com/checkly/puppeteer-recorder
by superasn on 10/14/18, 10:11 PM
Sadly it's like an addiction and now I even watch Netflix at 1.5X speed too (which makes it impossible to watch with family)
by beckler on 10/15/18, 12:50 PM
grpcurl: https://github.com/fullstorydev/grpcurl awesome tools for testing gRPC services
objective-see: https://objective-see.com/products.html tons of awesome security tools for mac, for free!
f.lux: https://justgetflux.com/ great tool to adjust the color of your screen depending on the time of day
by mohitmun on 10/15/18, 6:00 AM
Now I can copy any images from browsers/screenshot into any location in terminal I want
by dasmoth on 10/14/18, 7:40 PM
by jaclaz on 10/15/18, 11:02 AM
Cannot judge for Mac, but the selection of Windows little tools has traditionally been very good, the only Mac one I ever used (and it proved to work well) was WakeOnLan:
by msadowski on 10/15/18, 5:27 AM
by amorphous on 10/17/18, 12:17 PM
I combine this with monosnap screenshot tool so I can drag images into notes.
(It's from the maker of Scrivener)
by trevordixon on 10/15/18, 1:48 PM
by txmjs on 10/15/18, 11:49 AM
Allows you to create custom MacOS menubar items from the text output of any script.
by mikebos on 10/14/18, 7:39 PM
by Artemix on 10/14/18, 8:17 PM
by filosofikode on 10/15/18, 9:08 AM
by mstaoru on 10/15/18, 4:11 AM
menuBUS - for easy switching between built-in audio, Bluetooth, digital output + equalizing each of them in their own ways.
Spectacle - for window management and easy fullscreen, half-screen and whatever-part-of-screen shortcuts.
Karabiner - for complicated hotkey rebinding and controlling those Logitech presenter sticks where clever designer put a tiny "Close presentation and exit" key right next to "Next slide".
LICEcap - for capturing screen to GIF files for easy sharing.
by designnomad on 10/14/18, 8:10 PM
Clocker -- ‘Menubar World Clock’
by albertgoeswoof on 10/15/18, 1:45 PM
by rusinov on 10/15/18, 11:10 AM
by jpincheira on 10/14/18, 10:19 PM
Spectacle - macOS window resizer / manager
by wingerlang on 10/15/18, 7:35 AM