4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
    Type 1 or more characters for results.
    Links per page: 20 50 100
    ◄Older
    page 1 / 3
    45 results tagged ruby x
    • Xiki

      sorcellerie!

      November 23, 2017 at 2:38:12 PM GMT+1 - permalink - archive.org - http://xiki.org/screencasts/
      ruby shell
    • A couple words on Arrays in Ruby - Ruby Blog

      <3

      October 7, 2017 at 7:53:30 AM GMT+2 - permalink - archive.org - http://rubyblog.pro/2017/09/couple-words-on-arrays
      array ruby
    • Is Ruby Too Slow For Web-Scale?
      July 14, 2017 at 8:56:00 AM GMT+2 - permalink - archive.org - https://www.speedshop.co/2017/07/11/is-ruby-too-slow-for-web-scale.html
      perf rails ruby scale
    • Blocks, Proc et Lambda en Ruby
      June 3, 2017 at 3:56:40 PM GMT+2 - permalink - archive.org - https://www.synbioz.com/blog/block_proc_lambda_ruby
      block closures ruby
    • thumbnail
      Everything you should know about Ruby Splats Alex Castaño

      Les splat en Ruby, l'équivalent des kwargs en python

      June 3, 2017 at 3:42:18 PM GMT+2 - permalink - archive.org - https://alexcastano.com/everything-about-ruby-splats/
      kwargs ruby splat
    • library/buildpack-deps - Docker Hub

      TIL what is this offical repository :

      Only debian with some useful package to build dependencies (needed when you install some gem for example)

      For example ruby:2.3 Dockerfile use a buildpack-deps image

      February 10, 2017 at 4:27:52 PM GMT+1 - permalink - archive.org - https://hub.docker.com/_/buildpack-deps/
      debian docker ruby
    • Your first Progressive Web App on Rails - rossta.net

      apparemment ça va faire boom

      February 8, 2017 at 12:04:10 PM GMT+1 - permalink - archive.org - https://rossta.net/blog/make-your-rails-app-a-progressive-web-app.html
      app pwa ruby
    • Is Ruby dead? Hell no! - Analyzing RubyGems stats for 2016 | Infinum

      ouf :D

      January 20, 2017 at 4:51:34 PM GMT+1 - permalink - archive.org - https://infinum.co/the-capsized-eight/analyzing-rubygems-stats-v2016
      rails ruby
    • thumbnail
      Building A Multiplayer 8 Bits Sequencer

      nice..

      December 8, 2016 at 5:54:21 PM GMT+1 - permalink - archive.org - http://marcgg.com/blog/2016/11/21/chiptune-sequencer-multiplayer/
      dev game ruby
    • thumbnail
      A Rubyist's Guide to Big-O Notation

      Big-O illustré en ruby

      November 17, 2016 at 10:51:47 PM GMT+1 - permalink - archive.org - http://blog.honeybadger.io/a-rubyist-s-guide-to-big-o-notation/
      algo bigo dev ruby
    • Bundler: bundle install

      Summary: In general, after making a change to the Gemfile(5) , you should first try to run bundle install, which will guarantee that no other gem in the Gemfile(5) is impacted by the change. If that does not work, run bundle update(1).

      September 9, 2016 at 11:32:27 AM GMT+2 - permalink - archive.org - http://bundler.io/v1.13/man/bundle-install.1.html
      bundle gem ruby
    • Note: Rails encoding

      Enfin trouvé la solution à mon probleme d'encoding :

      incompatible character encodings utf-8 and ascii-8bit

      Tout ça a cause d'un bug de la gem mysql qui pense que certaines chaines récupérées en base sont encodée en ascii-8bit alors que pas du tout.. La solution est simple : utiliser la gem mysql2 à la place qui résout ce probleme. Ce genre de bug rend fou car on a beau chercher une logique, il n'y en a pas, bref merci Google :-)

      April 23, 2016 at 3:39:18 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?Hl5uog
      encoding rails ruby
    • Ruby gem search: show all remote versions
      April 19, 2016 at 9:27:32 AM GMT+2 - permalink - archive.org - https://ma.ttias.be/ruby-gem-search-show-remote-versions/
      gem ruby
    • Bundler: The best way to manage a Ruby application's gems

      Ok intéressant, gestion des gem, freeze, avec bundle

      February 18, 2016 at 4:05:09 PM GMT+1 - permalink - archive.org - http://bundler.io/v1.3/rationale.html
      bundle gem ruby
    • Deploying Rails Applications with Unicorn | Heroku Dev Center
      January 19, 2016 at 10:39:25 AM GMT+1 - permalink - archive.org - https://devcenter.heroku.com/articles/rails-unicorn
      ruby unicorn
    • thumbnail
      How To Optimize Unicorn Workers in a Ruby on Rails App | DigitalOcean
      January 19, 2016 at 10:39:19 AM GMT+1 - permalink - archive.org - https://www.digitalocean.com/community/tutorials/how-to-optimize-unicorn-workers-in-a-ruby-on-rails-app
      ruby unicorn
    • App Server Arena: Part 1, A Comparison of Popular Ruby Application Servers

      Intéressant la méthodo de test :-)

      Part 2 : https://blog.engineyard.com/2014/ruby-app-server-arena-pt2

      January 19, 2016 at 10:38:21 AM GMT+1 - permalink - archive.org - https://blog.engineyard.com/2014/ruby-app-server-arena-pt1
      bench ruby server
    • Thread Safety With Ruby — Luca Guidi

      Thread sage exemple (ruby)

      December 25, 2015 at 4:09:04 PM GMT+1 - permalink - archive.org - http://lucaguidi.com/2014/03/27/thread-safety-with-ruby.html
      mutex ruby thread
    • Getting Started with Ruby and WebSockets
      December 14, 2015 at 10:09:20 AM GMT+1 - permalink - archive.org - https://blog.engineyard.com/2013/getting-started-with-ruby-and-websockets
      ruby websocket
    • Mashing It Up: Parsing Accept-Language in Rails

      Really cool :)

      Good to know about accept language format :
      Example : fr,en-US;q=0.7,en;q=0.3
      q value is between 0 and 1 (default value is 1)
      the bigger it is the the higher is the priority to select a language

      Here client says :
      I prefer fr (q=1)
      Then en-US (q=0.7)
      Then..

      October 9, 2015 at 5:21:20 PM GMT+2 - permalink - archive.org - http://mashing-it-up.blogspot.com/2008/10/parsing-accept-language-in-rails.html
      accept header language parse ruby
    Links per page: 20 50 100
    ◄Older
    page 1 / 3
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation