# Install Homebrew (https://brew.sh/#install)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install Desktop Applications
brew cask install \
docker \
firefox \
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
#!/bin/sh | |
touch /var/log/first.log | |
touch /var/log/second.log | |
./first /var/log/first.log 2>&1 | ./second /var/log/second.log 2>&1 | tail -f -n +1 /var/log/first.log /var/log/second.log |
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
import { Model } from "engine/mvc"; | |
import { Signal } from "org/osflash/signals"; | |
import { SoundAS } from "treefortress/sound"; | |
import { TileModel } from "tile"; | |
import { CellModel } from "cell"; | |
import { GDTAssets } from "assets"; | |
class GridModel extends Model { | |
protected _width: number; | |
protected _height: number; |
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
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes |
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
Your transcription for atp217_clips_app.mp3 is now available for download from http://app.speechmatics.com/dashboard | |
Transcriptions can be downloaded as plain text or in a structured JSON format. | |
======================================= | |
SPEAKER: M1 | |
But clips came out today I played with it very very very briefly and it's pretty cool. I like the I don't know what the official term for it is but the transcribe what you're saying as you were saying it feature so you can turn on a like text mode or a little speech bubble. And as you record speech will or your speech will appear on screen. So you know you can hold the record and then as you talk you can make it show the words that you're speaking. I just did that as we were recording as I was saying those words. And it says Honda Accord instead of hold while you record. | |
SPEAKER: M3 | |
So already going well I mean you know automated transcription is still a very very long way away from being good reliably. Like even you know we you know we can criticize Apple for li |
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
doKeyStroke = function(modifiers, character) | |
local event = require("hs.eventtap").event | |
event.newKeyEvent(modifiers, string.lower(character), true):post() | |
event.newKeyEvent(modifiers, string.lower(character), false):post() | |
end | |
hs.eventtap.new({hs.eventtap.event.types.scrollWheel}, function(e) | |
scrollWheelClick = e:getProperty(hs.eventtap.event.properties.scrollWheelEventDeltaAxis2) | |
if scrollWheelClick > 0 then | |
doKeyStroke({'ctrl'}, 'left') |
- [Homebrew Cask][cask] - “To install, drag this icon…” no more!
- [Homebrew][brew] - The missing package manager for macOS
- [Amethyst][amethyst] - A tiling window manager for OS X
- [kwm][kwm] - Tiling window manager with focus follows mouse for OSX
- [Spectacle][spectacle] - Move and resize windows with ease
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
# Docker Shortcuts | |
alias harpoon='(docker stop $(docker ps -a -q); docker rm -f $(docker ps -a -q))' | |
alias flense='docker rmi $(docker images | grep "^<none>" | awk "{print $3}")' | |
function jonah() { docker exec -it $@ /bin/bash ;} |
Stripe
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
<?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"> | |
<dict> | |
<key>ACPI</key> | |
<dict> | |
<key>DSDT</key> | |
<dict> | |
<key>Debug</key> | |
<false/> |