TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What are you favorite tiny tools?

40 pointsby seanlinehanover 6 years ago
Everybody I know has a set of little software tools that they use that make their work either slightly easier or slightly more pleasant.<p>What are the tiny tools that you use for your work?<p>Some of mine:<p>Skitch -- Little Mac app that makes it easy to take screenshots and draw&#x2F;write on them<p>Be Focused -- A simple Pomodoro timer for Mac<p>&quot;Remove Stickies&quot; -- A URL bookmarklet I wrote that removes all floating elements from a page

27 comments

yesenadamover 6 years ago
bash, AWK, sips. A couple of bash commands I use daily:<p><i>cdf</i> - change directory to the folder open in (Mac) Finder<p><pre><code> cdf () { currFolderPath=$( &#x2F;usr&#x2F;bin&#x2F;osascript &lt;&lt;EOT tell application &quot;Finder&quot; 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 &quot;cd to \&quot;$currFolderPath\&quot;&quot; cd &quot;$currFolderPath&quot; } #dlm - &quot;dlm filename&quot; downloads filename.mp4 from URL in clipboard until its finished, resuming if interrupted fname=$(pbpaste) echo &quot;Download $fname as $1.mp4 : &quot; until curl -C - -kLo $1.mp4 &quot;$fname&quot; do sleep 5 done</code></pre>
评论 #18219158 未加载
评论 #18216853 未加载
schappimover 6 years ago
I&#x27;m surprised no one has mentioned Alfred App <a href="https:&#x2F;&#x2F;www.alfredapp.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.alfredapp.com&#x2F;</a><p>I cannot give it enough upvotes!
评论 #18218748 未加载
LVBover 6 years ago
The ‘z’ directory switching bash script is usually the first thing I miss when away from my own environment: <a href="https:&#x2F;&#x2F;github.com&#x2F;rupa&#x2F;z" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rupa&#x2F;z</a>
ivanmaederover 6 years ago
Colour picker: <a href="https:&#x2F;&#x2F;sipapp.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;sipapp.io&#x2F;</a><p>Download videos from YouTube and other sources: <a href="https:&#x2F;&#x2F;rg3.github.io&#x2F;youtube-dl&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rg3.github.io&#x2F;youtube-dl&#x2F;</a> (was the only way I could get a video from the BBC site recently)<p>Chrome extension for taking a screenshot of a full web page: <a href="https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;full-page-screen-capture&#x2F;fdpohaocaechififmbbbbbknoalclacl?hl=en" rel="nofollow">https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;full-page-screen-c...</a><p>Shameless plugs:<p>Script for renaming multiple files at the same time: <a href="https:&#x2F;&#x2F;github.com&#x2F;ivanmaeder&#x2F;vimv" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ivanmaeder&#x2F;vimv</a><p>Button in macOS Finder for creating a file in the current folder: <a href="https:&#x2F;&#x2F;github.com&#x2F;ivanmaeder&#x2F;finder-touch" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ivanmaeder&#x2F;finder-touch</a><p>That last one written in AppleScript which is craaazy.
enjayzover 6 years ago
Avid fan of <a href="https:&#x2F;&#x2F;htmlcolorcodes.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;htmlcolorcodes.com&#x2F;</a><p>However, since a while ago if you search &quot;HTML color picker&quot; google brings up a built-in color picker as the first result.
maioover 6 years ago
Caffeine - <a href="http:&#x2F;&#x2F;lightheadsw.com&#x2F;caffeine&#x2F;" rel="nofollow">http:&#x2F;&#x2F;lightheadsw.com&#x2F;caffeine&#x2F;</a><p>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.
xelxebarover 6 years ago
Not precisely a tool, but YouTube channels actually have RSS feeds associated with them:<p><pre><code> https:&#x2F;&#x2F;www.youtube.com&#x2F;feeds&#x2F;videos.xml?channel_id=&lt;channel-id&gt; </code></pre> From your subscriptions page, you can even download an OPML with feeds for each channel. Most RSS will let you import this just fine.<p>As I love the cli, my preferred reader is newsboat[0].<p>[0]: <a href="https:&#x2F;&#x2F;newsboat.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;newsboat.org&#x2F;</a>
mbrockover 6 years ago
A little alias that rewrites<p><pre><code> clone foo&#x2F;bar </code></pre> into<p><pre><code> git clone --recursive https:&#x2F;&#x2F;github.com&#x2F;foo&#x2F;bar </code></pre> is one of my favorites.
评论 #18220702 未加载
tnoletover 6 years ago
Httpie - basically a nicer cUrl. Adding json and headers is super simple. <a href="https:&#x2F;&#x2F;httpie.org" rel="nofollow">https:&#x2F;&#x2F;httpie.org</a><p>Puppeteer Recorder - tooting my own horn, but is a Chrome extension that records Puppeteer scripts. <a href="https:&#x2F;&#x2F;github.com&#x2F;checkly&#x2F;puppeteer-recorder" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;checkly&#x2F;puppeteer-recorder</a>
评论 #18240442 未加载
superasnover 6 years ago
Video speed controller chrome extension. It lets you speed up videos on any site. I usually watch videos at 4x to 6x speed now (in addition to saving time I feel that I don&#x27;t get distracted &#x2F; daydream as much).<p>Sadly it&#x27;s like an addiction and now I even watch Netflix at 1.5X speed too (which makes it impossible to watch with family)
评论 #18218432 未加载
becklerover 6 years ago
ngrok: <a href="https:&#x2F;&#x2F;ngrok.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ngrok.com&#x2F;</a> expose local servers to the public internet (super helpful for building webhooks)<p>grpcurl: <a href="https:&#x2F;&#x2F;github.com&#x2F;fullstorydev&#x2F;grpcurl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;fullstorydev&#x2F;grpcurl</a> awesome tools for testing gRPC services<p>objective-see: <a href="https:&#x2F;&#x2F;objective-see.com&#x2F;products.html" rel="nofollow">https:&#x2F;&#x2F;objective-see.com&#x2F;products.html</a> tons of awesome security tools for mac, for free!<p>f.lux: <a href="https:&#x2F;&#x2F;justgetflux.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;justgetflux.com&#x2F;</a> great tool to adjust the color of your screen depending on the time of day
mohitmunover 6 years ago
I extensively use [pngpaste](<a href="https:&#x2F;&#x2F;github.com&#x2F;jcsalterego&#x2F;pngpaste" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jcsalterego&#x2F;pngpaste</a>)<p>Now I can copy any images from browsers&#x2F;screenshot into any location in terminal I want
dasmothover 6 years ago
&quot;paste&quot; -- an unexpectedly useful data-wrangling tool. I used a hand-rolled version for years before discovering it was available &quot;as standard&quot;.
评论 #18216886 未加载
jaclazover 6 years ago
Generic resource (mac&#x2F;OsX):<p><a href="https:&#x2F;&#x2F;tinyapps.org&#x2F;osx.html" rel="nofollow">https:&#x2F;&#x2F;tinyapps.org&#x2F;osx.html</a><p>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:<p><a href="http:&#x2F;&#x2F;www.readpixel.com&#x2F;wakeonlan&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.readpixel.com&#x2F;wakeonlan&#x2F;</a>
msadowskiover 6 years ago
For me it&#x27;s tmuxp (<a href="https:&#x2F;&#x2F;github.com&#x2F;tmux-python&#x2F;tmuxp&#x2F;blob&#x2F;master&#x2F;README.rst" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;tmux-python&#x2F;tmuxp&#x2F;blob&#x2F;master&#x2F;README.rst</a>). It allows to create scripts for tmux sessions. It easily shaves off about 1 to 2 minutes of my time everyday.
amorphousover 6 years ago
Scapple - by far my favourite brainstorming &#x2F; mind mapping &#x2F; thought collecting tool. I use it every day. Features are just perfect, simple and useful.<p>I combine this with monosnap screenshot tool so I can drag images into notes.<p>(It&#x27;s from the maker of Scrivener)
trevordixonover 6 years ago
I run <a href="https:&#x2F;&#x2F;serveo.net" rel="nofollow">https:&#x2F;&#x2F;serveo.net</a>. Lets you expose local services through a proxy server (a la ngrok), but uses SSH as the transport, so there&#x27;s nothing to install.
txmjsover 6 years ago
BitBar (<a href="https:&#x2F;&#x2F;github.com&#x2F;matryer&#x2F;bitbar" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;matryer&#x2F;bitbar</a>)<p>Allows you to create custom MacOS menubar items from the text output of any script.
mikebosover 6 years ago
Drafts 5 combined with workflow and Pythonista on IOS. For everything ranging from diary, personal crm, search adress&#x2F;telephone number&#x2F;e-mail in a given text, meeting notes and well almost anything. Very usefull combo
评论 #18216625 未加载
Artemixover 6 years ago
I use kickstart to manage my templates, including projects (<a href="https:&#x2F;&#x2F;github.com&#x2F;Keats&#x2F;kickstart&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Keats&#x2F;kickstart&#x2F;</a>)
filosofikodeover 6 years ago
- httpie -- command line HTTP client - bat -- A cat(1) clone with wings
mstaoruover 6 years ago
smcFanControl - makes my old &#x27;14 MBP with replaced-almost-everything tolerably warm.<p>menuBUS - for easy switching between built-in audio, Bluetooth, digital output + equalizing each of them in their own ways.<p>Spectacle - for window management and easy fullscreen, half-screen and whatever-part-of-screen shortcuts.<p>Karabiner - for complicated hotkey rebinding and controlling those Logitech presenter sticks where clever designer put a tiny &quot;Close presentation and exit&quot; key right next to &quot;Next slide&quot;.<p>LICEcap - for capturing screen to GIF files for easy sharing.
评论 #18217370 未加载
评论 #18217454 未加载
designnomadover 6 years ago
Vanilla -- ‘hide Mac menu bar icons’ (<a href="https:&#x2F;&#x2F;matthewpalmer.net&#x2F;vanilla&#x2F;" rel="nofollow">https:&#x2F;&#x2F;matthewpalmer.net&#x2F;vanilla&#x2F;</a>)<p>Clocker -- ‘Menubar World Clock’
评论 #18217313 未加载
albertgoeswoofover 6 years ago
<a href="https:&#x2F;&#x2F;tab.bz" rel="nofollow">https:&#x2F;&#x2F;tab.bz</a> to share lists of links to other people as one link, or just across devices that aren’t synced
rusinovover 6 years ago
For Mac automation I use: Keyboard Maestro, Hazel, Automator, AppleScript. Not a tiny ones, though.
jpincheiraover 6 years ago
Jumpcut — macOS menubar clipboard manager with keyboard shortcuts<p>Spectacle - macOS window resizer &#x2F; manager
wingerlangover 6 years ago
Snappy - Let&#x27;s you keep screenshot on-screen, annotate and so on.