picture of Bina Schmuetsch

bina_schmuetsch.py

       
    
from pprint import pprint
introduction = (
"Hello, my name is Bina Schmuetsch (they/them) and I am working towards a " "career in software development. My goal is to begin retraining as an IT " "Specialist for Application Development in Hamburg in summer 2026. Until " "then, I would love the opportunity to gain practical experience and " "demonstrate my skills through an internship with your team."
) motivation = (
"I discovered my passion for programming through optimizing workflows and " "creating small projects. What excites me most is creating digital tools " "that improve user experiences and organizational efficiency. I enjoy " "logical and abstract thinking and turning complex problems into " "structured solutions."
) soft_skills = (
"From my previous profession as a social worker, I bring strong abilities " "in analyzing client needs, planning processes, and adapting them when " "circumstances change. Supporting clients in complex situations has " "enhanced my creativity, patience, and resilience. Collaboration and " "communication have always been key aspects of my work: I am experienced " "in contributing to intersectional teams, practicing empathetic " "communication, and presenting my work in a professional manner."
) hard_skills = {
"Python": "Basic", "HTML & CSS": "Basic", "THT & SMT soldering": "Basic", "KiCad": "In Progress",
} languages = {
"German": "native language", "English": "proficient",
} showcase = (
"github.com/BinaNoir", # This website is a work sample too.
) contact = { } resume = (
"achromatic.foo/CV", # For access email me.
) hard_skills_dict = {"hard_skills": hard_skills} languages_dict = {"languages": languages} contact_dict = {"contact": contact} bina_schmuetsch = { "Introduction": introduction, "Motivation": motivation, "Soft skills": soft_skills, "Hard skills": hard_skills_dict, "Languages": languages_dict, "Showcase": showcase, "Contact": contact_dict, "Resume link": resume, } pprint(bina_schmuetsch, sort_dicts=False)

Back to top