Skip to content
View milkeclair's full-sized avatar
🗿
🗿

Highlights

  • Pro

Block or report milkeclair

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
milkeclair/README.md
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
end
definitions
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      = [*]
end

stats

Code Time

Lines of code

I'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

Pinned Loading

  1. z z Public

    A zsh utility library for me who can't memorize shell script syntax.

    Shell 2

  2. any_logger any_logger Public

    A DSL for simplifying modification of Rails ActiveSupport Instrumentation API

    Ruby

  3. translation_api translation_api Public

    Ruby

  4. modpack_localizer modpack_localizer Public

    Localizer for Minecraft Modpack

    Ruby

  5. js_playground js_playground Public

    フレームワーク作ったりとか

    TypeScript

  6. push_gem push_gem Public

    gem:push

    Ruby