Skip to content

Instantly share code, notes, and snippets.

View mediafinger's full-sized avatar
🚐
#VanLife

Andreas Finger mediafinger

🚐
#VanLife
View GitHub Profile
@mediafinger
mediafinger / ruby_rails_gem_dependency_management_best_practices.markdown
Last active June 8, 2021 18:44
Best practices for Ruby and Rails app gem dependency management

Ruby / Rails app gem dependencies

Best practices

Whenever possible rely on rubygems

  • source "https://rubygems.org"
  • Always restrict the gem version, but keep the restriction relaxed with the squiggly operator:
    • gem 'gem_name', '~> 3.2' is equivalent to: gem 'gem_name', '>= 3.2', '< 4.0'
  • Prefer '~&gt; 3.2' over '~&gt; 3.2.0' to be able to update the gem up to the next major version

Keybase proof

I hereby claim:

  • I am mediafinger on github.
  • I am mediafinger (https://keybase.io/mediafinger) on keybase.
  • I have a public key ASB1L24f0S2zUaUlx1TYm5wkZSpHZ5CmNV669H5laiYlTwo

To claim this, I am signing this object:

@mediafinger
mediafinger / .gitconfig
Last active May 27, 2021 14:29
.gitconfig file (a bit dirty with all those comments, but might be an inspiration)
[user]
name = Your Name
email = [email protected]
[github]
user = nickname
[alias]
b = branch
co = checkout
st = status
d = diff --staged
@mediafinger
mediafinger / Crystal_vs_Ruby_Benchmark.markdown
Last active March 3, 2020 12:03
(Micro) Benchmarks of different implementations of a Hamming distance calculation in Crystal and Ruby

(Micro) Benchmarking Crystal vs Ruby

ips = iterations per second

Hamming distance, multiple implementations

See code examples below.

Crystal

@mediafinger
mediafinger / split.rb
Created February 20, 2020 22:49
Split a String at a "line-break" character in Ruby
# Task:
# implement different ways to split a string at a line-break character into lines
# for the sake of simplicity these examples use "0" as "line-break" character
# this solves only a part of the task recursivly
def detect_first_line(string, line = "", position = 0)
return line if string[position] == "0"
puts "#{position}, #{string[position]}, #{line}"
@mediafinger
mediafinger / init.lua
Created February 12, 2020 11:45
Metakey setup macOS / use CAPS LOCK to open or switch to apps with Hammerspoon and Karabiner
-- A global variable for the Hyper Mode
hyper = hs.hotkey.modal.new({}, 'F17')
-- Enter Hyper Mode when F18 (Hyper/Capslock) is pressed
function enterHyperMode()
hyper.triggered = false
hyper:enter()
end
@mediafinger
mediafinger / .rubocop.yml
Created May 15, 2019 15:28
My (kinda relaxed) Rubocop configuration of May 2019 for rubocop 0.67.2 for RSpec projects
require: rubocop-rspec
AllCops:
TargetRubyVersion: 2.6
DisplayCopNames: true
Exclude:
- config.ru
- bin/**
- db/schema.rb
- node_modules/**/*
@mediafinger
mediafinger / ruby_rails_new_first_steps.markdown
Last active May 15, 2019 15:45
Install Ruby and create a new Rails app with a few custom configurations

Setup Ruby and configure a new Rails app

This is a step by step guide for everyone new to Ruby and Ruby on Rails - or for people who want to create a new Rails app on a new computer. And it is also a reminder for myself to check which gems and settings I like in Rails apps.

Table of contents

@mediafinger
mediafinger / Rails_new_first_steps.markdown
Last active May 17, 2021 08:40
First steps after creating a new Rails app

Setting up a skeleton for a new Rails app

Example: an admin interface named "dtx_admin"

This guide assumes you've already installed a current ruby (version 2.6.1 by time of writing this) and the gems rails (version 5.2.x) and bundler (version 2.0.1 or newer) on your machine. It was written on macOS on might assume you use homebrew. Nevertheless you should be able to follow it on Linux or the Linux DSL in Win10 or even under Windows itself.

tl;dr

If you don't want to read a guide, but just have a somewhat-setup minimal Rails app, you'll find a more current one (Ruby 3.0, Rails 6.1) here https://github.com/mediafinger/minimal which you can use as a start or template for your own app. The commits are described in its README.

@mediafinger
mediafinger / jwt.markdown
Created March 6, 2019 12:29
JSON Web Token

JSON Web Token (JWT)

We need a way to make authenticated calls from one (self-owned) service to another (self-owned) service.

Secret

We can start with a simple setup, where both services know the used secret.

It is a good practice to implement endpoints to request new secrets which have an expiration time. Another possibility is to set up JWT authentication using an asymmetric algorithm (such as RS256) where the authentication server has a secret key, and the application server has a public key.