--css tailwind
rails new example --css tailwind -m path_to_template/tailwind.rb
kamal registry setup
getEstimatedCrackTime() {
const password = this.passwordTarget.value
const length = password.length
const hasLowercase = /[a-z]/.test(password)
const hasUppercase = /[A-Z]/.test(password)
const hasNumbers = /[0-9]/.test(password)
const hasSymbols = /[\W_]/.test(password)
let charsets = 0
if (hasLowercase) charsets++
if (hasUppercase) charsets++
if (hasNumbers) charsets++
if (hasSymbols) charsets++
let column = charsets
if (column < 1) column = 1
if (column > 5) column = 5
const row = length > 18 ? 18 : length
return { row, column }
}