Looking for a flat to rent in Paris?

The Living Room

The Living Room

I have a Friend renting a nice flat  in the center of Paris for short and middle term since I have a lot of friends/colleagues asking me about the best and the cheapest place  to stay in Paris I thought to reference her ads here :

CHARMING APARTMENT TO RENT IN LE MARAIS – BEAUBOURG

Located in the Beaubourg – Le Marais area, this apartment is very well-situated in the historical heart of Paris: five minutes away from Pompidou Center and Châtelet-Les Halles underground station.

Into a 18th Century building, this bright and quiet apartment will let you enjoy the great life of Paris whilst providing you with an intimate and soft nest to relax in.

Discover this charming one bedroom apartment and feel at home

Check the website here for more information :

www.parisrentapart.fr

Posted in Misc | Leave a comment

Noah in December

[nggallery id=8]

Posted in Noah | Leave a comment

London under the snow

This morning London have seen one of the worst snow storm since 10 years.

[imagebrowser id=7]

Posted in Life | Leave a comment

Kitesurfing in Fuerteventura

[nggallery id=6]

Posted in Travel | 3 Comments

Noah in London

A month ago Noah came over here to spend some time in London.

[nggallery id=4]

Posted in Noah | Leave a comment

Night in Paris

Rabouin Francois et Denis


Posted in Life | Leave a comment

TFL.GOV.UK and mozilla quick search

If you want to bookmark a  quick mozilla search from your house to another postcode you can use this URI :

http://journeyplanner.tfl.gov.uk/user/XSLT_TRIP_REQUEST2?language=en&sessionID=0&type_destination=locator&name_destination=DESTINATION_POSTCODE&type_origin=locator&name_origin=ORIGIN_POSTCODE&place_origin=London&place_destination=London

just change the DESTINATION and ORIGIN_POSTCODE to %s if you like or make it as static bookmark.

Posted in Travel | Leave a comment

Eurodisney with Noah

Went with noah to see that Euro Disney thing and he seems to really enjoyed it. I am not a big fan of Eurodisney personally but the kid was so enjoying it. Last time i was there was like 11 years ago, things got way more expensive now  as well.

Posted in Noah | 2 Comments

FFAP and Ruby in Emacs

If you want to use FFAP (find-file-at-point) in ruby-mode you can add this to your .emacs

(defvar ruby-program-name "ruby")
(defun ruby-module-path(module)
    (shell-command-to-string
     (concat
      ruby-program-name " -e "
      "\"ret='()';$LOAD_PATH.each{|p| "
      "x=p+'/'+ARGV[0].gsub('.rb', '')+'.rb';"
      "ret=File.expand_path(x)"
      "if(File.exist?(x))};printf ret\" "
      module)))
 
(eval-after-load "ffap"
  '(push '(ruby-mode . ruby-module-path) ffap-alist))

When you do ffap (i bind it to C-x f) near a require ‘PP’ for example it will find it in your ruby path.

Posted in Emacs | 2 Comments

Ruby XMLRPC over a Self Certified SSL with a warning

If you use the XMLRPC client in ruby over a self certified SSL you have this warning :

warning: peer certificate won’t be verified in this SSL session

You can get override that warning cleanly (i have seen some people who just comment the message in the standard library) like that :

require 'xmlrpc/client'
 
require 'net/https'
require 'openssl'
require 'pp'
 
module SELF_SSL
  class Net_HTTP < Net::HTTP
    def initialize(*args)
      super
      @ssl_context = OpenSSL::SSL::SSLContext.new
      @ssl_context.verify_mode = OpenSSL::SSL::VERIFY_NONE
    end
  end
 
  class XMLRPC_Client < XMLRPC::Client
    def initialize(*args)
      super
      @http = SELF_SSL::Net_HTTP.new( @host, @port,
                                      @proxy_host,@proxy_port )
      @http.use_ssl = @use_ssl if @use_ssl
      @http.read_timeout = @timeout
      @http.open_timeout = @timeout
    end
 
  end
 
end
 
if __FILE__ == $0
  f = SELF_SSL::XMLRPC_Client.new2("https://url")
  puts f.call("method", 'arg')
end
Posted in Programming, Ruby | 2 Comments