flowchart TD
Stuff --> Inbox
Inbox --> What[What it is?]
What --> Actionable[Is it actionable?]
Actionable --> No
Actionable --> Yes
No --> Trash(Trash)
No --> Someday(Someday / Maybe)
No --> Reference(Reference)
This file contains hidden or 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
models: | |
ChatRoom: | |
fields: | |
messagesConnection: | |
resolver: true |
This file contains hidden or 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
provision: | |
- mode: system | |
script: | | |
mkdir -p /Users/davidolrik | |
mount /Users/davidolrik | |
mkdir -p /tmp/colima | |
mount /tmp/colima | |
mkdir -p /Volumes/Projects | |
mount /Volumes/Projects | |
I hereby claim:
- I am davidolrik on github.
- I am davidolrikdk (https://keybase.io/davidolrikdk) on keybase.
- I have a public key whose fingerprint is ECC3 95B7 9872 5570 D869 9DCB 5B3B AADE DDEE 156E
To claim this, I am signing this object:
This file contains hidden or 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
-- A global variable for the Hyper Mode | |
k = hs.hotkey.modal.new({}, "F17") | |
-- Trigger existing hyper key shortcuts | |
k:bind({}, 'm', nil, function() hs.eventtap.keyStroke({"cmd","alt","shift","ctrl"}, 'm') end) | |
-- OR build your own | |
launch = function(appname) |
This file contains hidden or 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 perl | |
use strict; | |
use warnings; | |
my $networksetup = `networksetup -listnetworkserviceorder`; | |
my @network_services = map { $_ =~ s/\(\d+\)\s+//; $_ } # 3. Remove (\d+) from begining of line | |
grep { /^\(\d+\)/ } # 2. Only look at lines starting with (\d+) | |
split(/\n/,$networksetup); # 1. Split into lines |