- http://www.shreveporttimes.com/story/news/2016/10/10/waitr-local-app-ordering-food-comes-shreveport/91868836/
- http://www.nola.com/business/index.ssf/2016/09/waitr_food_delivery_app_comes.html
- http://www.theadvocate.com/baton_rouge/entertainment_life/article_c8cba159-3d80-57a9-aa0d-8f0121af914a.html
- http://theexaminer.com/features/entertainment/waitr-goes-live-beaumont
- http://blog.beaumontenterprise.com/cat5/2016/06/18/dine-out-while-dining-in-with-waitr/
- http://www.sacbee.com/news/business/article111823672.html
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
### Keybase proof | |
I hereby claim: | |
* I am tjboudreaux on github. | |
* I am tjboudreaux (https://keybase.io/tjboudreaux) on keybase. | |
* I have a public key ASAb9vgSl2gj3PU9GyVZc6QtrV_g7ZZBRVE1QZ6d_1BXRgo | |
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
brew list -1 | while read line; do brew unlink $line; brew link $line; done |
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
{ | |
"name": "api-oauth", | |
"version": "0.1.20", | |
"problems": [ | |
"error in /home/ubuntu/api-oauth/node_modules/firebase-auto-ids: Invalid version: \"https://registry.npmjs.org/firebase-auto-ids/-/firebase-auto-ids-1.1.0.tgz\"", | |
"invalid: firebase-auto-ids /home/ubuntu/api-oauth/node_modules/firebase-auto-ids", | |
"extraneous: gkt /home/ubuntu/api-oauth/node_modules/gkt", | |
"error in /home/ubuntu/api-oauth/node_modules/gkt: Invalid version: \"https://tgz.pm2.io/gkt-1.0.0.tgz\"", | |
"error in /home/ubuntu/api-oauth/node_modules/url: Invalid version: \"https://registry.npmjs.org/url/-/url-0.10.3.tgz\"", | |
"invalid: url /home/ubuntu/api-oauth/node_modules/url", |
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
files: | |
"/etc/yum.repos.d/elastic.repo": | |
mode: "000755" | |
owner: root | |
group: root | |
content: | | |
[elastic-5.x] | |
name=Elastic repository for 5.x packages | |
baseurl=https://artifacts.elastic.co/packages/5.x/yum | |
gpgcheck=1 |
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
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": {}, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ |
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
package packages.model; | |
import java.util.Objects; | |
import com.google.gson.annotations.SerializedName; | |
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 wordsWithRepeatedChars(str) { | |
var list = []; | |
//split string into words based on spaces and count repeated characters | |
str.toLowerCase().split(" ").forEach(function(currentWord){ | |
var lastLetter = ""; | |
var alreadyAdded = false; | |
//split word into characters and add to the list only if a letter repeats |
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
#!/bin/sh | |
# | |
# Git hook that prevents commits to master | |
# use --no-verify to bypass this hook | |
# ex: git commit -m "init commit" --no-verify | |
branch=`git symbolic-ref HEAD` | |
if [ "$branch" = "refs/heads/master" ]; then | |
echo "Direct commits to the branch master are not allowed" | |
exit 1 |
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
GET /calendar/today returns JSON object describing the currrent liturgical day | |
GET /calendar/:date|YYYYMMDD returns JSON object describing the liturgical day for :date | |
GET /councils/ return JSON list of church councils | |
GET /councils/:id return JSON object of a church council | |
GET /councils/:id/documents return JSON list of all documents for a council | |
GET /documents/:id return JSON object of a church document. | |
Defaults to english or latin? | |
Parameters: |
NewerOlder