Skip to content

Instantly share code, notes, and snippets.

View ricsdeol's full-sized avatar

Ricardo Siqueira de Oliveira Leite ricsdeol

View GitHub Profile
@ricsdeol
ricsdeol / Gemfile.lock
Last active May 7, 2016 17:07
AMS v9.X with knock
active_model_serializers (0.9.5)
activemodel (>= 3.2)
knock (1.4.2)
bcrypt (~> 3.1)
jwt (~> 1.5)
rails (>= 4.2)
@ricsdeol
ricsdeol / post_install.sh
Last active July 5, 2020 01:27
Post install ubuntu
sudo add-apt-repository ppa:linrunner/tlp
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
@ricsdeol
ricsdeol / fibonacci.rb
Created September 29, 2015 04:00
Ruby Fibonnacci Memoization
2.1.6 :001 > fib = Hash.new{ |h,k| h[k] = k < 2 ? k : h[k-1]+h[k-2] }
=> {}
2.1.6 :002 > fib[1]
=> 1
2.1.6 :003 > fib[10]
=> 55
2.1.6 :004 > fib
=> {1=>1, 0=>0, 2=>1, 3=>2, 4=>3, 5=>5, 6=>8, 7=>13, 8=>21, 9=>34, 10=>55}
Atom Sync