Want the Subject field (for bold iMessages) in macOS Big Sur's Messages app?
- Quit Messages
- Open Terminal
- Run
defaults write com.apple.MobileSMS MMSShowSubject 1
- Start Messages
the | |
of | |
to | |
and | |
a | |
in | |
is | |
it | |
you | |
that |
#!/bin/sh | |
basename=`basename $0` | |
if [ -z "$*" ]; then | |
echo "usage: ${basename} <dot> [ -o | -r | <file> | - ]" | |
echo "" | |
echo "options:" | |
echo " -o open dot in window with keyboard focus" | |
echo " -r read contents of dot" |
use AppleScript version "2.4" -- Yosemite (10.10) or later | |
use scripting additions | |
# Sample Keyboard Maestro macros at | |
# <https://sixcolors.com/wp-content/uploads/2022/01/Podcast-Noter-Macros.kmmacros.zip> | |
on run argv | |
try | |
set theNote to (item 1 of argv) | |
on error |
Want the Subject field (for bold iMessages) in macOS Big Sur's Messages app?
defaults write com.apple.MobileSMS MMSShowSubject 1
//those go UP | |
var zalgo_up = [ | |
'\u030d', /* Ì */ '\u030e', /* ÌŽ */ '\u0304', /* Ì„ */ '\u0305', /* Ì… */ | |
'\u033f', /* Ì¿ */ '\u0311', /* Ì‘ */ '\u0306', /* ̆ */ '\u0310', /* Ì */ | |
'\u0352', /* ͒ */ '\u0357', /* ͗ */ '\u0351', /* ͑ */ '\u0307', /* ̇ */ | |
'\u0308', /* ̈ */ '\u030a', /* ̊ */ '\u0342', /* ͂ */ '\u0343', /* ̓ */ | |
'\u0344', /* ÌˆÌ */ '\u034a', /* ÍŠ */ '\u034b', /* Í‹ */ '\u034c', /* ÍŒ */ | |
'\u0303', /* ̃ */ '\u0302', /* Ì‚ */ '\u030c', /* ÌŒ */ '\u0350', /* Í */ | |
'\u0300', /* Ì€ */ '\u0301', /* Ì */ '\u030b', /* Ì‹ */ '\u030f', /* Ì */ |
<script type="text/javascript"> | |
/* <![CDATA[ */ | |
var _gaq = _gaq || []; | |
_gaq.push(['_setAccount', 'UA-33315451-1']); | |
_gaq.push(['_trackPageview']); | |
(function() { | |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
/* <![CDATA[ */ | |
//============================================================ | |
// ZALGO text script by tchouky | |
//============================================================ | |
// data set of leet unicode chars | |
//--------------------------------------------------- | |
//those go UP | |
var zalgo_up = [ |
$ wget -e robots=off -r -np 'http://example.com/folder/'
------------------------------------------------------------------------------------------- | |
# Auth: Christopher Stone | |
# dCre: 2018/11/30 16:19 | |
# dMod: 2018/11/30 16:52 | |
# Appl: AppleScriptObjC | |
# Task: List a Given Folder as type Furl, type Path, or by Name. | |
# Libs: None | |
# Osax: None | |
# Tags: @Applescript, @Script, @ASObjC, @List, @Folder, @Furl, @Path, @Name | |
------------------------------------------------------------------------------------------- |
""" | |
This script uses Github's API V3 with Basic Authentication to export issues from | |
a repository. The script saves a json file with all of the information from the | |
API for issues, comments, and events (on the issues), downloads all of the | |
images attached to issues, and generates a markdown file that can be rendered | |
into a basic HTML page crudely mimicking Github's issue page. If the gfm module | |
is available, the script will go ahead and render it itself. | |
In the end, you'll be left with a folder containing a raw .json file (which you | |
can use to extract information for your needs, or to import it somewhere else), |