- Who owns the Future - Jaron Lanier
- Capital in the Twenty-First Century - Thomas Piketty
- How we got to now, 6 inventions - S. Johnson
- Danubia - Simon Winder
- Stragic Storytelling - Dane McKinsey
- The Dazzle of the Day - Molly Glass
- The Shepards Life - James Rebanks
- Incognito - David Eagleman
- [A General Theory of Love](http://www.amazon.com/General-Theory-Love-Thomas-Lewis/dp/0375709223
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
This file contains hidden or 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
describe OpenCivicData do | |
context 'with no api key' do | |
it 'raises a warning' do | |
expect { OpenCivicData.new(nil) }.to warn('Warning: Your API key may not be set') | |
end | |
end | |
end |