Milkeclair.profile do |me|
me.description do
intro "ひよっこ"
enjoy "自分が欲しいものを作ります"
good "ほんのちょっとだけRubyができる"
end
me.stack do
languages :ruby, :shell_script
frameworks :ruby_on_rails
end
me.interests :dsl, :vanilla_coding, :domain_modeling
enddefinitions
class Milkeclair
include Singleton
attr_accessor :descriptions, :fav_languages, :fav_frameworks, :interests
def initialize
@descriptions = []
@fav_languages = []
@fav_frameworks = []
@interests = []
end
def self.profile(&block) = block.call(instance)
def description(&block) = instance_eval(&block)
alias_method :stack, :description
def intro(text) = self.descriptions << text
alias_method :enjoy, :intro
alias_method :good, :intro
def languages(*) = self.fav_languages = [*]
def frameworks(*) = self.fav_frameworks = [*]
def interests(*) = self.interests = [*]
endI'm a Night 🦉
🌞 Morning 982 commits █████░░░░░░░░░░░░░░░░░░░░ 20.70 %
🌆 Daytime 1133 commits ██████░░░░░░░░░░░░░░░░░░░ 23.88 %
🌃 Evening 1440 commits ████████░░░░░░░░░░░░░░░░░ 30.35 %
🌙 Night 1190 commits ██████░░░░░░░░░░░░░░░░░░░ 25.08 %
📅 I'm Most Productive on Sunday
Monday 652 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.74 %
Tuesday 685 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.44 %
Wednesday 514 commits ███░░░░░░░░░░░░░░░░░░░░░░ 10.83 %
Thursday 623 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.13 %
Friday 813 commits ████░░░░░░░░░░░░░░░░░░░░░ 17.13 %
Saturday 514 commits ███░░░░░░░░░░░░░░░░░░░░░░ 10.83 %
Sunday 944 commits █████░░░░░░░░░░░░░░░░░░░░ 19.89 %
📊 This Week I Spent My Time On
💬 Programming Languages:
Ruby 10 hrs 51 mins ███████████████░░░░░░░░░░ 61.10 %
Markdown 3 hrs 59 mins ██████░░░░░░░░░░░░░░░░░░░ 22.48 %
TypeScript 1 hr 32 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 08.64 %
YAML 35 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 03.35 %
Bash 24 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.26 %
💻 Operating System:
WSL 17 hrs 30 mins █████████████████████████ 98.46 %
Mac 16 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.54 %
I Mostly Code in Ruby
Ruby 9 repos ████████████░░░░░░░░░░░░░ 47.37 %
Shell 3 repos ████░░░░░░░░░░░░░░░░░░░░░ 15.79 %
JavaScript 3 repos ████░░░░░░░░░░░░░░░░░░░░░ 15.79 %
TypeScript 2 repos ███░░░░░░░░░░░░░░░░░░░░░░ 10.53 %
CSS 1 repo █░░░░░░░░░░░░░░░░░░░░░░░░ 05.26 %
Last Updated on 18/03/2026 18:48:33 UTC



