Source: Bear - FAQ and support #@References/Bear 2018-03-09
⌥⌘1
, ⌥⌘2
, …, ⌥⌘6
Headings
⌥⌘S
Line separator
#!/bin/bash | |
set -e | |
CONTENTS=$(tesseract -c language_model_penalty_non_dict_word=0.8 --tessdata-dir /usr/local/share/tessdata/ "$1" stdout -l eng | xml esc) | |
hex=$((cat <<EOF | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> |
#!/bin/bash | |
# USAGE: sh isrunning.sh <processname> | |
ps_out=`ps -ef | grep $1 | grep -v 'grep' | grep -v $0` | |
result=$(echo $ps_out | grep "$1") | |
if [[ "$result" != "" ]];then | |
echo "Running" | |
else | |
echo "Not Running" | |
fi |
#!/usr/bin/python | |
## Script: #!/usr/bin/python | |
## Script: get_chrome_extensions_and_permissions.py | |
## Author: Modifications by Owen Pragel. Written for most by part by Christopher Collins ([email protected]). | |
########################################### | |
## Description: This script searches the last logged in user's installed extensions and the permissions of those extensions. | |
import os |
Source: Bear - FAQ and support #@References/Bear 2018-03-09
⌥⌘1
, ⌥⌘2
, …, ⌥⌘6
Headings
⌥⌘S
Line separator
Bear is a beautiful, flexible writing app for crafting notes and prose. Once you get a decent tag collection going, it can get harder to find the right one in your Sidebar.
This is my current list of small icons, refer to the blog post for more information:
(* Import and update your Pinboard bookmarks to DEVONthink | |
Based on work done by Christian Grunenberg on Mon Jan 23 2006, | |
Rafael Bugajewski to support Pinboard instead of Delicious on Sun Dec 19 2010 and | |
Andreas Zeitler on Sun Mar 03 2011 to display user feedback when finished. | |
By Sascha A. Carlin <https://sascha.carlin.de/> on 2018-03-07 to set the creation date of new record, show progress bar, use Pinboard Auth Token, use modification date of folder to fetch only recent items | |
Copyright (c) 2018. All rights reserved. *) | |
use framework "Foundation" |
#!/bin/sh | |
# This will look at the overviewstatus.xml file and | |
# determine if Backblaze is currently transmitting a file. | |
# | |
# Developed against: | |
# macOS 10.13.3 | |
# Backblaze 5.2.0.172 | |
BBSTATUS='/Library/Backblaze.bzpkg/bzdata/overviewstatus.xml' |
#!/usr/bin/env ruby | |
require 'rb-scpt' | |
include Appscript | |
# Needs a list in Reminders called "Things," or adjust this to taste: | |
target_list_name = "Things" | |
things_lists = ["Inbox", "Today"] | |
things = app("Things3") |
OUTPUT=$(/usr/bin/basename "$1" | /usr/bin/sed -e "s/.pkg//g") | |
/usr/sbin/pkgutil --expand "$1" /tmp/"$OUTPUT" | |
open -a "Archive Utility.app" /tmp/"$OUTPUT"/Payload |