Click on any package to zoom in or out. See also this static circle packing example.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
if [ "${1:-}" = "--help" ]; then | |
cat << EOF | |
Usage: ijq [filename] | |
A wrapper around jq that uses fzf to interactively build jq filters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Define the main export folder | |
export_folder=~/Desktop/iMessages_Export | |
mkdir -p "$export_folder" | |
# Part 1: Generate the CSV file | |
echo "Generating CSV file..." | |
sqlite3 ~/Library/Messages/chat.db <<EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit | |
scrolling: no | |
border: yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.area { | |
fill: steelblue; | |
clip-path: url(#clip); | |
} | |
.zoom { |
(Credit: Beau Smith http://beausmith.com/blog/omnigraffle-date-time-format/)
<%CreationDate %m/%d/%y – %H:%M %>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Find the newest OmniGraffle document | |
# | |
framework 'Cocoa' | |
def finish(notification) | |
if @query.resultCount > 0 then | |
puts @query.resultAtIndex(0).valueForAttribute('kMDItemPath') | |
end |