Create a bookmarklet using the line below and click it on an IMDB gallery page to allow saving images from galleries (drag/right click).
javascript:$("img").attr("onmousedown","").attr("oncontextmenu","");
| #!/bin/bash | |
| echo "\n\n--- Killing Stupid Adobe Auto Load Crap ---\n\n" | |
| launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist | |
| launchctl unload -w /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist | |
| echo "\n\n--- Done! ---\n\n" |
Create a bookmarklet using the line below and click it on an IMDB gallery page to allow saving images from galleries (drag/right click).
javascript:$("img").attr("onmousedown","").attr("oncontextmenu","");
| /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -dump | grep -B6 bindings:.*: |
| The regex patterns in this gist are intended only to match web URLs -- http, | |
| https, and naked domains like "example.com". For a pattern that attempts to | |
| match all URLs, regardless of protocol, see: https://gist.github.com/gruber/249502 | |
| License: https://opensource.org/license/bsd-3-clause | |
| # Single-line version: | |
| (?i)\b((?:https?:(?:/{1,3}|[a-z0-9%])|[a-z0-9.\-]+[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps |
| #!/usr/bin/ruby | |
| # Sifttter: An IFTTT-to-Day One Logger by Craig Eley 2014 <http://craigeley.com> | |
| # Based on tp-dailylog.rb by Brett Terpstra 2012 <http://brettterpstra.com> | |
| # | |
| # Notes: | |
| # * Uses `mdfind` to locate a specific folder of IFTTT-generated text files changed in the last day | |
| # * The location of your folder should be hardcoded in line 53 | |
| # * Scans leading timestamps in each line matching today's date | |
| # * Does not alter text files in any way | |
| # * Changes ampersand ('&') to 'and' so the script keeps running |
| #!/usr/bin/ruby | |
| # tp-dailylog.rb - Log TaskPaper tasks completed on the current day to a Day One entry | |
| # Brett Terpstra 2012 <http://brettterpstra.com> | |
| # | |
| # Run it with launchd at 11pm and forget about it | |
| # | |
| # Notes: | |
| # * Uses `mdfind` to locate all .taskpaper files changed in the last day | |
| # * Scans for @done(xxxx-xx-xx) tags in each line matching today's date | |
| # * Does not alter TaskPaper files in any way |
| #!/usr/bin/env ruby | |
| # Usage: tp2md.rb filename.taskpaper > output.md | |
| # Updated 2025-03-19 | |
| # - Fix block quote indentation | |
| # - use GFM-style - [ ] markers | |
| # - convert @tags to #tags | |
| # - <self-link> bare urls | |
| # - Accept input piped on STDIN | |
| if $stdin.stat.size.positive? |