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 / 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}
@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 / snap_clean.sh
Created June 13, 2018 13:25
Clean disabled snap apps
#!/bin/sh
set -eu
snap list --all | awk '/disabled/{print $1, $3}' |
while read snapname revision; do
sudo snap remove "$snapname" --revision="$revision"
done
#observation: I copied this script from another person but i don't remember where.
Atom Sync
@ricsdeol
ricsdeol / fino-time-asdf.zsh-theme
Created August 11, 2019 15:53
oh-my-zsh fino-time theme adapter to use asdf
# fino-time.zsh-theme
# Use with a dark background and 256-color terminal!
# Meant for people with RVM and git. Tested only on OS X 10.7.
# You can set your computer name in the ~/.box-name file if you want.
# Borrowing shamelessly from these oh-my-zsh themes:
# bira
# robbyrussell
@ricsdeol
ricsdeol / SPLUNK_RECIPES.md
Created May 18, 2020 17:37 — forked from chuckg/SPLUNK_RECIPES.md
Splunk Storm recipes for Heroku logs.

Splunk Recipes for Heroku

A collection of Splunk recipes for Heroku logs. Instructions for setting up Splunk Storm with Heroku can be found here. For the vast majority of these recipes you'll need to have enabled the Heroku labs feature, log-runtime-metrics, for your application.

@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 / goal_ucase.rb
Last active November 10, 2020 21:05
Goals Ucase Exemple
require 'pp'
require 'bundler/inline'
gemfile do
source 'https://rubygems.org'
gem 'u-case', '~> 4.2.1'
gem 'pry-byebug'
gem 'awesome_print'
gem 'activesupport', require: 'active_support/all'
@ricsdeol
ricsdeol / resoursable.rb
Created October 1, 2020 01:14
Resoursable
# frozen_string_literal: true
module Resourceable
extend ActiveSupport::Concern
included do
before_action :set_resource, only: %i[show edit update destroy]
before_action :authorize_resource
helper_method :resource
@ricsdeol
ricsdeol / ruby install.md
Last active December 15, 2021 23:29
Clean Ruby and some databases Environment

Install some dependences

// improve battery perform
sudo add-apt-repository ppa:linrunner/tlp


sudo sh -c 'echo "deb [arch=amd64]  https://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 -