- Little Italy has a number of great places (I think Amicci's has the best happy hour) and is accessible by the circulator's Orange Line.
- Best pizza/risotto is Joe Squared on North Ave (purple line accessible).
- Best Mexican is La Guadalupana on 500 South Wolfe Street (Orange/Green route will get you there). You will need to know some basic Spanish to order there, but the food is amazing.
- Best odd assortment of random food is Lexington Market, the longest running market in the world(according to Wikipedia). It's accessible by heading north on the light rail and then walking West and would be good for lunch one day.
- Best fancy food is Woodberry Kitchen, which is light rail accessible.
- Best late night food is Never on Sunday on N Charles across the street from Helmand, which is open until 3:30am.
- Best sushi is an easy pick - Kiku (1017 Light Street). It's a literal Mom and Pop operation with an amazing chirashi.
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'resque' | |
| HOST = ENV['host'] ? ENV['host'] : '127.0.0.1' | |
| PORT = ENV['port'] ? ENV['port'] : '6379' | |
| Resque.redis = "#{HOST}:#{PORT}" |
| module Resque | |
| def self.unregister_workers_for_host(host) | |
| Resque.workers.select{|worker| worker.id.split(':').first==host}.each(&:unregister_worker) | |
| end | |
| end | |
| Resque.unregister_workers_for_host("ip-10-250-192-51") |
| HAI | |
| BTW Cheater's quine | |
| I HAS A quine | |
| GIMMEH LINEZ quine OUTTA "quine.lol" | |
| I HAS A loop_max ITZ ALL quine | |
| I HAS A loop_index ITZ 0 | |
| IM IN YR loop | |
| IZ loop_index LIEK loop_max O RLY? | |
| YA RLY |
| #!/bin/bash | |
| cd /tmp | |
| wget http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem | |
| wget http://rubyforge.org/frs/download.php/74596/ruby_core_source-0.1.5.gem | |
| wget http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem | |
| wget http://rubyforge.org/frs/download.php/63094/ruby-debug19-0.11.6.gem | |
| export RBENV_INCLUDE=$HOME/.rbenv/versions/1.9.3-p0/include/ruby-1.9.1/ruby-1.9.3-p0 | |
| gem install archive-tar-minitar |
Chances are your head's spinning right now. That accusation of bias caught you off guard, you got kind of defensive, and now all hell has broken loose. You're feeling attacked on all sides. You're a good person at heart, and having all these people treat you like the antichrist is pretty upsetting.
You need to say something, but you're probably not in the best headspace to write copy right now. So to help you along, here's my 100% guaranteed-or-you-money-back scandal defusement apology template:
| output = `cat #{ENV["CIRCLE_ARTIFACTS"] || "."}/coverage/index.html | grep Changed -A 2 | grep "[0-9\.]*%"` | |
| percentage_match = output.match(/([0-9\.]+)%/) | |
| raise "Unable to determine test coverage change" unless percentage_match | |
| RED = "\033[0;31m" | |
| BOLD = "\033[1m" | |
| NO_COLOR = "\033[0m" | |
| percentage = percentage_match[0].to_f |
| def output name=((default=true); "caius") | |
| puts "name: #{name.inspect}" | |
| puts "default: #{default.inspect}" | |
| end | |
| output | |
| # >> name: "caius" | |
| # >> default: true | |
| output "avdi" |
I will maybe someday get around to dusting off my C and making these changes myself unless someone else does it first.
Imagine a long-running development branch periodically merges from master. The
git log --graph --all --topo-order is not as simple as it could be, as of git version 1.7.10.4.
It doesn't seem like a big deal in this example, but when you're trying to follow the history trails in ASCII and you've got several different branches displayed at once, it gets difficult quickly.
| # I really don't like getting routing error notifications when scanners try to | |
| # find vulnerabilities in our application. As such, this extends our routing | |
| # to actually give a response, but it's likely not what they were looking for. | |
| # If they're not using a headless browser, the `alert` is going to kill their | |
| # productivity. If they are, they just might enjoy the youtube video anyway. | |
| class AnnoyScannersServer | |
| SCANNER_PATHS = %w[ | |
| /a2billing/admin/Public/index.php | |
| /a2billing/common/javascript/misc.js | |
| /a2billing/customer/templates/default/css/popup.css |