- 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
View console.log
isZero(0) | |
zero! | |
FINALLY | |
isZero() | |
not zero | |
FINALLY | |
error caught |
View .bash_prompt
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 { |
View .bash_profile
#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"; |
View fl-amendments.md
View params.js
// 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; |
View promise-failure.js
function testFailure() { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => { | |
reject(); | |
}, 2000); | |
}); | |
} |
View keybase.md
Keybase proof
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:
View package.json
"scripts": { | |
"eslint": "eslint -c .eslintrc $(git diff --staged --diff-filter=ACMTUXB --name-only -- '*.js'); exit 0" | |
} |
View javascript.json
{ | |
"ESLint Disable Line": { | |
"prefix": "eslignore", | |
"body": [ | |
"//eslint-disable-line" | |
], | |
"description": "Disable ESLint for the given line" | |
} | |
} |
View ServiceTemplate.js
(function() { | |
'use strict'; | |
angular.module('${moduleName}', []) | |
.service('${serviceName}', [${serviceName}]); | |
function ${serviceName}() { | |
var service = this; | |
} | |
})(); |
NewerOlder