Skip to content

Instantly share code, notes, and snippets.

@kgilles
kgilles / generate_pin.rb
Last active March 15, 2022 09:10
Generate Random Finnish, Norwegian and Swedish Personal Identification Numbers
# NOTE: Gender is something these countries use to calculate the serial/individual number(making them even or odd)
# It is not taken into consideration in this snippet but the generated numbers are still valid
require 'date'
age = 21 # Whatever you want it to be
# Randomize month and day equal to, or lower, than the current month
# to make sure the generated birth month and day has occurred in <current_year>
t = Time.new
year = t.year - age