How to filter emails from GitHub in Gmail and flag them with labels.
The labels in this document are just examples.
Filter | Label |
---|
#!/usr/bin/bash | |
# | |
# Author: BowlineDandy | |
# | |
# Convert DaVinci Resolve Videos Back to Original GoPro sizes | |
# And have them be web friendly as well | |
# Outperforms Compressor in Mac | |
# Requires Nvidia GPU | |
# Requires CUDA Enabled ffmpeg (Custom compiled from Source) | |
# |
// Y Combinator | |
const Y = a => (b => b (b)) (b => a (c => b (b) (c))) | |
// isomorphic Church encoding/decoding | |
const Church = { | |
to: n => f => x => Array.from (Array (n)).reduce (f, x), | |
from: f => f (x => x + 1) (0) | |
} | |
const True = a => b => a |
// by dave whyte :) @beesandbombs | |
int[][] result; | |
float t, c; | |
float ease(float p) { | |
return 3*p*p - 2*p*p*p; | |
} | |
float ease(float p, float g) { |
#!/bin/bash | |
################# | |
### Variables ### | |
################# | |
# Items at the system level to be removed | |
systemItems=( | |
/Applications/Transmission.app | |
/Library/Application\ Support/com.apple.iCloud.sync.daemon/ |
This is a quick tutorial explaining how to get a static website hosted on Heroku.
Why do this?
Heroku hosts apps on the internet, not static websites. To get it to run your static portfolio, personal blog, etc., you need to trick Heroku into thinking your website is a PHP app. This 6-step tutorial will teach you how.
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |