I hereby claim:
- I am mlantz on github.
- I am mlantz (https://keybase.io/mlantz) on keybase.
- I have a public key ASCGlxmH9HHIuELJQVS1mTdm_Jz9zmE33ugktb9MvPAp_wo
To claim this, I am signing this object:
# Working Remotely | |
--- | |
## Matt Lantz | |
- Canadian (doesn't really matter) | |
- Software developer (has meaning) | |
- Has worked for Fortune 50, 500 and small companies (:+1:) | |
- About 10 year experience (sure, whatev) |
I hereby claim:
To claim this, I am signing this object:
SELECT name, COUNT(*) c FROM table GROUP BY name HAVING c > 1; |
$('.typeahead').typeahead({ | |
hint: true, | |
highlight: true, | |
minLength: 3 | |
}, { | |
async: true, | |
displayKey: 'name', | |
source: function (query, processSync, processAsync) { | |
processSync(actorMatcher(query, JSON.parse($('.typeahead').attr('data-suggestions')))); | |
return $.ajax({ |
$canada_provinces = array( | |
'Alberta' => 'AB', | |
'British Columbia' => 'BC', | |
'Manitoba' => 'MB', | |
'New Brunswick' => 'NB', | |
'Newfoundland and Labrador' => 'NL', | |
'Northwest Territories' => 'NT', | |
'Nova Scotia' => 'NS', | |
'Nunavut' => 'NU', | |
'Ontario' => 'ON', |
#!/usr/bin/env bash | |
echo ">>> Starting Install Script" | |
# Update | |
sudo apt-get update | |
# Install MySQL without prompt | |
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password root' | |
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root' |