- Adresss: 400 W Davis St Dallas, TX 75208
- Yelp: https://www.yelp.com/biz/lockhart-smokehouse-dallas
- Personal Favorite(s): Brisket
- Type: Lunch or Dinner
- Adresss: 2702 Main St Dallas, TX 75226
server { | |
listen 8080; | |
resolver 8.8.8.8; | |
# Proxy paths that do not contain a dot to /members/$1 | |
location ~* ^/([^.]*)$ { | |
proxy_pass https://generos.app/members/$1; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; |
# http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/create_deploy_Ruby_sinatra.html | |
wget https://s3.amazonaws.com/elasticbeanstalk/cli/AWS-ElasticBeanstalk-CLI-2.2.zip | |
unzip AWS-ElasticBeanstalk-CLI-2.2.zip | |
mkdir eb_ruby | |
cd eb_ruby | |
echo "require './helloworld' | |
run Sinatra::Application" > config.ru |
RUBY_CONFIGURE_OPTS="--with-openssl-dir=`brew --prefix openssl` --with-readline-dir=`brew --prefix readline`" rbenv install 2.1.2 |
{ | |
"color_scheme": "Packages/User/Railscasts.tmTheme", | |
"font_size": 12.0, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
"theme": "Soda Dark.sublime-theme", | |
"translate_tabs_to_spaces": true |
This api allows clients to access the promo redemption process.
Note: this api requires authentication.
#Using Font-Awesome with Rails 3.1 using CSS
Download font-awesome from https://github.com/FortAwesome/Font-Awesome
Put the font folder in the app/assets. I renamed the folder from font to fonts to make it clearer
Add config.assets.paths << "#{Rails.root}/app/assets/fonts"
to config/application.rb
. This is to include the apps/assets/fonts folder in the asset pipeline
Put the font-awesome.css file in the app/assets/stylesheets folder
#!/usr/bin/env bash | |
uninstall() { | |
list=`gem list --no-versions` | |
for gem in $list; do | |
gem uninstall $gem -aIx | |
done | |
gem list | |
gem install bundler | |
} |
animals = ["tiger", | |
"tiger", | |
"lion", | |
"dog", | |
"cat", | |
"mouse", | |
"bear", | |
"frog", | |
"tiger", | |
"lion", |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |