- Amendment 1: Increased Homestead Property Tax Exemption
- No - tax cuts for homeowners with nothing equalizing
- Amendment 2: Limitations on Property Tax Assessments
- Yes - Reduces volatility in property tax changes
- Amendment 3: Voter Control of Gambling in Florida
- No - Limits gambling control and makes everyone vote for existing gambling changes
- Note: I'm very torn on this one and may change my mind before voting
- Amendment 4: Voting Restoration
- Yes - People have paid their debts to society with jail time
- Amendment 5: Supermajority Vote Required to Impose, Authorize, or Raise State Taxes or Fees
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
isZero(0) | |
zero! | |
FINALLY | |
isZero() | |
not zero | |
FINALLY | |
error caught |
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
RED_COLOR="\[$(tput setaf 1)\]" | |
YELLOW_COLOR="" | |
END_COLOR="\[$(tput sgr0)\]" | |
function __git_dirty { | |
git diff --quiet HEAD &>/dev/null | |
[ $? == 1 ] && echo " ↺ " | |
} | |
function __git_branch { |
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
#Colorful Terminal | |
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx | |
export CLICOLOR=1 | |
# Aliases | |
alias ll="ls -al"; | |
alias ..="cd ../"; | |
alias ..l="cd ../ && ll"; | |
alias vb="vim ~/.bash_profile"; | |
alias sb="source ~/.bash_profile"; |
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
// eslint-disable-reason legacy API passes all of these params | |
// eslint-disable max-params | |
const processData = (a1, b2, c3, d4, e5) => a1+b2+c3+d4+e5; |
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
function testFailure() { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => { | |
reject(); | |
}, 2000); | |
}); | |
} |
I hereby claim:
- I am adamweeks on github.
- I am adamweeks (https://keybase.io/adamweeks) on keybase.
- I have a public key whose fingerprint is 4711 16EE 3DDE 01D9 36FE 7E11 749D 236F BECA CB30
To claim this, I am signing this object:
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
"scripts": { | |
"eslint": "eslint -c .eslintrc $(git diff --staged --diff-filter=ACMTUXB --name-only -- '*.js'); exit 0" | |
} |
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
{ | |
"ESLint Disable Line": { | |
"prefix": "eslignore", | |
"body": [ | |
"//eslint-disable-line" | |
], | |
"description": "Disable ESLint for the given line" | |
} | |
} |
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
(function() { | |
'use strict'; | |
angular.module('${moduleName}', []) | |
.service('${serviceName}', [${serviceName}]); | |
function ${serviceName}() { | |
var service = this; | |
} | |
})(); |
NewerOlder