- Joyce Sims - Come Into My Life
- Mantronix – got to have your love
- Inner City – good life
- Krush – house arrest
- Monie Love - It's a shame
- Inner City - Big Fun
- SOS Band - The Finest
- Patrice Rushen - Forget Me Nots
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
extension=apc.so | |
apc.enabled=1 | |
apc.shm_size=512M | |
apc.rfc1867 = on | |
apc.max_file_size = 512m | |
apc.stat = 0 | |
apc.filters = "-/path/vers/les/trucs/a/exclure/*.*" |
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
repeat | |
tell application "Google Chrome" to tell active tab of window 1 | |
execute javascript "document.getElementById('bigCookie').click()" | |
end tell | |
end repeat |
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
require 'open-uri' | |
require 'json' | |
def get_twitter_counter | |
url = 'http://api.twitter.com/1/users/show.json?screen_name=fdevillamil' | |
cache = File.join(Rails.root, "tmp", "twitter_counter") | |
return File.read(cache) if File.exists?(cache) && (Time.now - File.mtime(cache)).to_i < 7200 | |
begin |
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
We had to deploy ElasticSearch in a particular environment, where our hosts would be connected to Internet and access 2 different subnets, but with some restrictions. This makes our setup somehow tricky as we need the following: | |
eth0: external IP, listening on the Internet. There are iptables rules blocking every connection there on ports 9200 and 9300. | |
eth1: RFC1918 IP address. | |
lo:0: a single RFC1918 address used on every node for IPVS / IPFail for load balancing and fail over purpose. | |
Why is this setup tricky? | |
1. By default, ElasticSearch will listen on eth0 if it exists and is up. Shutting down eth0 and setting it up will just break your setup. Add iptables rules and you'll really be in trouble. Using unicast and a list of IPs won't be enough to solve the issue. | |
NewerOlder