https://github.com/sukitsubaki/sukitsubaki
My GitHub profile with automated statistics tracking for languages, contributions and activity patterns. Features self-updating scripts and custom output handling.
https://github.com/sukitsubaki/sukitsubaki
Last synced: about 1 month ago
JSON representation
My GitHub profile with automated statistics tracking for languages, contributions and activity patterns. Features self-updating scripts and custom output handling.
- Host: GitHub
- URL: https://github.com/sukitsubaki/sukitsubaki
- Owner: sukitsubaki
- Created: 2025-03-12T02:12:23.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-02T02:09:48.000Z (about 1 month ago)
- Last Synced: 2025-04-02T03:20:57.057Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://sukitsubaki.vercel.app
- Size: 1.44 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

----
```python
#!/usr/bin/env python3
# -*- coding: utf-8; project: github.profile -*-
# Copyright (c) 2025 Suki Tsubaki
# Updated 2025-04-02"""
A brief, code-based representation of who I am as a developer.
"""class SukisDevStats:
def __init__(self):
self.language_stats = { # 609 files, 2.86 MB, dynamic weighting
"HTML" : "██████████████░░░░░░░░░░░░░░░░░░░░░░░░░░", # 35.73 %
"PHP" : "██████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░", # 24.66 %
"CSS" : "██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░", # 15.52 %
"Python" : "█████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░", # 12.68 %
"JavaScript" : "███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░", # 6.31 %
"Swift" : "██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░", # 5.10 %
}
self.contribution_stats = { # sum: 2,054
"Commits" : 1,711,
"Issues": {
"Created" : 56,
"Commented" : 247,
},
"PR": { # pull requests
"Created" : 18,
"Reviewed" : 5,
},
"Discussions" : 17,
}
self.activity_stats = {
"longest_commit_streak" : 18, # days
"preferred_coding_hour" : 2,
"total_days_active" : 27,
}
self.profile_views = 3,162 # uniqueclass SukisSkillSet:
def __init__(self):
self.core_skills = {
"advanced" : ["CSS", "HTML", "PHP", "Python", "TYPO3"],
"familiar" : ["JavaScript", "Lua", "SQL", "Swift"],
"interested" : ["TensorFlow"],
}class SukisProjectLog:
def __init__(self):
self.active_projects = {
"primary" : ["CSS Animations", "Task Automation"],
"secondary" : ["Machine Learning", "Self-Hosted Email Server"],
}class SukisDevBackground:
def __init__(self):
self.origin_story = [
"Discovered the magic of coding as a child",
"Loves crafting digital solutions just for fun",
"Enjoys traveling back in time to fix past coding mistakes",
"Believes that code is not just logic, but also art",
]
self.milestones = {
"first_line_of_code" : 2003, # C++
"first_website" : 2004, # about penguins
"first_app" : 2008, # calculator with Java
"first_contribution" : 2006, # in a tech forum
}class SukisSelfReview:
def __init__(self):
self.positive_evaluation = {
"technical_strengths" : ["Analytical Problem Solving", "Creative Solutions"],
"expertise_areas" : ["Architecture Design", "Clean Code"],
}
self.constructive_evaluation = {
"improvement_areas" : ["Complexity Management", "Project Scope Control"],
"skill_refinements" : ["Time Estimation", "Documentation Consistency"],
}class SukisDevEnvironment:
def __init__(self):
self.fonts = {
"coding" : ["Source Code Pro"],
"texting" : ["Karla", "Ubuntu Sans"],
"terminal" : ["Menlo", "SF Mono"],
}
self.editors = {
"primary" : ["Brackets"],
"secondary" : ["TextEdit", "Xcode"],
}
self.dev_setup = {
"os" : ["macOS", "Raspberry Pi OS"],
"terminal" : "Terminal.app",
"browser" : ["Safari", "Firefox"],
}def generate_profile_summary():
# ... hidden for readability ...
passif __name__ == "__main__":
# generate_profile_summary()
print("Code is poetry, thanks for reading mine <3")
``````json
{
"closing_remarks": [
"I don't know if you can tell, but I really enjoy Python. (ノ◕ヮ◕)ノ*:・゚✧",
"The first steps of my voyage with this language were taken not long ago.",
"By the way, I pronounce it Python as in ˈpyːtɔn and not ˈpaɪθən or ˈpaɪθɑn.",
"The word's origin is in Latin pyː.tʰoːn so I think I'm not too wrong with that."
],
"hashtag": "#pühtonn"
}
```