home.social

#systems-design — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #systems-design, aggregated by home.social.

fetched live
  1. Why queues don't always fix overload: the article argues that a queue is just a buffer, and doesn't solve the underlying problem of too much load. It suggests alternative strategies for managing system capacity.

    A good read for anyone managing self-hosted services under pressure.

    #systemsdesign #performance #reliability

  2. Hi everyone, I am currently open to new opportunities and would appreciate any connections or advice. I am looking for roles as an AI Engineer, Software Engineer, or Backend Engineer, with a focus on LLM orchestration, AI-driven systems, and product engineering. Over the past years, I have worked at Yandex and Sberbank, and more recently built Toqen.app an access-first authentication product focused on secure, real-time authorization. I also have hands-on experience building LLM pipelines with multi-step orchestration, structured outputs, validation, and production-ready workflows. My core strengths include system design, backend development, and building reliable production systems. I am open to full-time roles, contract work, and product collaborations. If you know of any relevant opportunities or would like to connect, please feel free to reach out. Thank you 🙌 #OpenToWork #AIEngineer #LLM #Backend #SoftwareEngineer #AI #SystemsDesign
  3. Hi everyone, I am currently open to new opportunities and would appreciate any connections or advice. I am looking for roles as an AI Engineer, Software Engineer, or Backend Engineer, with a focus on LLM orchestration, AI-driven systems, and product engineering. Over the past years, I have worked at Yandex and Sberbank, and more recently built Toqen.app an access-first authentication product focused on secure, real-time authorization. I also have hands-on experience building LLM pipelines with multi-step orchestration, structured outputs, validation, and production-ready workflows. My core strengths include system design, backend development, and building reliable production systems. I am open to full-time roles, contract work, and product collaborations. If you know of any relevant opportunities or would like to connect, please feel free to reach out. Thank you 🙌 #OpenToWork #AIEngineer #LLM #Backend #SoftwareEngineer #AI #SystemsDesign
  4. Target: $4000 this week!

    The #Vulpibus folks are looking to raise a more significant quantity of currency this next week, to catch up with needs that are piling up fast.

    Things from hardware and tools, to paying off loans and bureaucracy, to fuel to keep the Vulpibus moving!

    It's expensive being poor in a capitalist society.

    Let's put everyone in a better position to survive and thrive! Every donation to the Vulpibus increases the ability for it to be used for:

    Living
    Developing awesome gene editing tech
    Rescuing and helping out fellow homeless, trans, LGBTQ+ and Otherkin and Therian folks in this horrible time
    Sharing skills in hackerspace-style workshops and projects.

    Please gather monies and donate to:
    ko-fi.com/athakitsune
    paypal.me/athamanatha
    Cashapp $Athamanatha
    Wise (please ask)
    Bank transfer in the UK or ACH in the USA or via IBAN (please ask)
    Other payment methods may need some arranging due to our current situation.

    If you wish to stipulate a specific use for the money and see that use play out, let us know.

    #Trans
    #Transrights
    #Transcrowdfund
    #Crowdfund
    #Mutualaid
    #Mutualaidrequest
    #LGBTQ
    #LGBTQIA
    #Transmutualaid
    #fundraiser
    #Solarpunk
    #helpfolkslive2026
    #Helpfolkssurive2026
    #Queer
    #Queermutualaid
    #Moneyhelp
    #Fedihelp
    #help
    #fucktrump
    #Fuckmusk
    #fuckcapitalism
    #fuckproject2025
    #hackerspace
    #Makerspace
    #homeless
    #homelessness
    #volunteering
    #volunteers
    #science
    #guerillascience
    #systemsdesign
    #geneediting
    #currencyhelp
    #repairs
    #learning
    #skills
    #sharing
    #donate
    #donateandshare
    #share
    #boost
    #boostok
    #boost4reach

  5. Target: $4000 this week!

    The #Vulpibus folks are looking to raise a more significant quantity of currency this next week, to catch up with needs that are piling up fast.

    Things from hardware and tools, to paying off loans and bureaucracy, to fuel to keep the Vulpibus moving!

    It's expensive being poor in a capitalist society.

    Let's put everyone in a better position to survive and thrive! Every donation to the Vulpibus increases the ability for it to be used for:

    Living
    Developing awesome gene editing tech
    Rescuing and helping out fellow homeless, trans, LGBTQ+ and Otherkin and Therian folks in this horrible time
    Sharing skills in hackerspace-style workshops and projects.

    Please gather monies and donate to:
    ko-fi.com/athakitsune
    paypal.me/athamanatha
    Cashapp $Athamanatha
    Wise (please ask)
    Bank transfer in the UK or ACH in the USA or via IBAN (please ask)
    Other payment methods may need some arranging due to our current situation.

    If you wish to stipulate a specific use for the money and see that use play out, let us know.

    #Trans
    #Transrights
    #Transcrowdfund
    #Crowdfund
    #Mutualaid
    #Mutualaidrequest
    #LGBTQ
    #LGBTQIA
    #Transmutualaid
    #fundraiser
    #Solarpunk
    #helpfolkslive2026
    #Helpfolkssurive2026
    #Queer
    #Queermutualaid
    #Moneyhelp
    #Fedihelp
    #help
    #fucktrump
    #Fuckmusk
    #fuckcapitalism
    #fuckproject2025
    #hackerspace
    #Makerspace
    #homeless
    #homelessness
    #volunteering
    #volunteers
    #science
    #guerillascience
    #systemsdesign
    #geneediting
    #currencyhelp
    #repairs
    #learning
    #skills
    #sharing
    #donate
    #donateandshare
    #share
    #boost
    #boostok
    #boost4reach

  6. More tuning the of performance path in StyloBot at the moment.

    mostlylucid.net/blog/stylobot-

    (It's the free, open source bot detection engine I'm building)

    This part is about making repeat traffic cheaper to process without turning the cache into a permanent source of wrong answers.

    That means boring but important mechanisms:

    EWMA updates

    hysteresis thresholds

    verdict caching

    variance watchdogs

    bounded memory

    refresh sampling

    I'm not an ML guy, but a lot of this maps neatly onto ML and control theory ideas once you start writing it down.

    The useful pattern is simple enough:

    learn from traffic, make the common path faster, keep enough uncertainty in the system that it can recover when the world changes.

    The next post in the StyloBot release series is a deep dive into that mechanism.

    Very much one for the nerds.

    In .NET so...kinda niche...ML / AI ...

    mostlylucid.net/blog/stylobot-

    #dotnet #opensource #aspnetcore #performance #systemsdesign

  7. More tuning the of performance path in StyloBot at the moment.

    mostlylucid.net/blog/stylobot-

    (It's the free, open source bot detection engine I'm building)

    This part is about making repeat traffic cheaper to process without turning the cache into a permanent source of wrong answers.

    That means boring but important mechanisms:

    EWMA updates

    hysteresis thresholds

    verdict caching

    variance watchdogs

    bounded memory

    refresh sampling

    I'm not an ML guy, but a lot of this maps neatly onto ML and control theory ideas once you start writing it down.

    The useful pattern is simple enough:

    learn from traffic, make the common path faster, keep enough uncertainty in the system that it can recover when the world changes.

    The next post in the StyloBot release series is a deep dive into that mechanism.

    Very much one for the nerds.

    In .NET so...kinda niche...ML / AI ...

    mostlylucid.net/blog/stylobot-

    #dotnet #opensource #aspnetcore #performance #systemsdesign

  8. Teams chase new apps, but isolated tools create friction and cap growth. A system-oriented architecture links AI-driven workflows so data flows automatically between stages, cutting manual hand-offs and marginal cost. Owning the orchestration logic turns the stack into a scalable engine, not a patchwork of pilots. #AI #Automation #Integration #SystemsDesign - Powered by FG

  9. Teams chase new apps, but isolated tools create friction and cap growth. A system-oriented architecture links AI-driven workflows so data flows automatically between stages, cutting manual hand-offs and marginal cost. Owning the orchestration logic turns the stack into a scalable engine, not a patchwork of pilots. #AI #Automation #Integration #SystemsDesign - Powered by FG

  10. AI tools give a flash of speed, but only a system of linked layers delivers lasting motion. When a persona, automated pipeline, and analytics loop converse without manual hand-off, the workflow becomes a self-sustaining gear train that tolerates API changes and scales with market growth. Build the infrastructure, not the hype. 🚀 #AIMarketing #Automation #SystemsDesign #DataOps - Powered by FG

  11. Burnout isn’t the bottleneck; the architecture is. When creators embed an AI persona into automation tools ⚙️ like n8n, Make or Zapier, content generation becomes a continuous, repeatable process independent of any one schedule. The human shifts to strategic oversight while the system supplies constant metrics and scale. #AI #Automation #CreatorEconomy #SystemsDesign - Powered by FG

  12. Burnout isn’t the bottleneck; the architecture is. When creators embed an AI persona into automation tools ⚙️ like n8n, Make or Zapier, content generation becomes a continuous, repeatable process independent of any one schedule. The human shifts to strategic oversight while the system supplies constant metrics and scale. #AI #Automation #CreatorEconomy #SystemsDesign - Powered by FG

  13. We’ve spent decades designing systems - institutions, platforms, cultures - that reward endurance over adaptation.

    Then we are surprised when they crack under pressure.

    Resilience is not about holding everything together by force. It is about building things that can adapt, respond, and repair.

    Maybe the question isn’t how strong we are. It is how well what surrounds us is designed to hold us when we’re not.

    #Resilience #MentalHealth #SystemsDesign #CollectiveCare #Wellbeing #SocialChange

  14. We’ve spent decades designing systems - institutions, platforms, cultures - that reward endurance over adaptation.

    Then we are surprised when they crack under pressure.

    Resilience is not about holding everything together by force. It is about building things that can adapt, respond, and repair.

    Maybe the question isn’t how strong we are. It is how well what surrounds us is designed to hold us when we’re not.

    #Resilience #MentalHealth #SystemsDesign #CollectiveCare #Wellbeing #SocialChange

  15. #SERVICE_UPDATE: [2026-03]-SYS-RECONCILIATION

    ​The Risk Engine has officially eclipsed peripheral services. We are streamlining to an Infrastructure-First architecture to eliminate engagement friction.

    ​Moving to Tokenized Logic. We’ve removed the "skid marks" from the process to focus on pure utility. We provide the optics; you decide the depth.

    ​#RiskEngine #SystemsDesign #TokenizedLogic #Sovereignty

  16. #SERVICE_UPDATE: [2026-03]-SYS-RECONCILIATION

    ​The Risk Engine has officially eclipsed peripheral services. We are streamlining to an Infrastructure-First architecture to eliminate engagement friction.

    ​Moving to Tokenized Logic. We’ve removed the "skid marks" from the process to focus on pure utility. We provide the optics; you decide the depth.

    ​#RiskEngine #SystemsDesign #TokenizedLogic #Sovereignty

  17. My #WIPWednesday is all about building the Global Bridge logic for a new client 🏗️.

    While everyone is talking about the #macbookneo or the #windows12 leaks, I’m focused on the software architecture that actually drives revenue. Hardware is great, but a messy CRM on a fast laptop is still just a messy CRM.

    if your follow-up has friction, your pipeline leaks. Killing Hopium one workflow at a time.

    #Introduction #Automation #SaaS #SalesGravy #SystemsDesign #LeadGen #MeerMittwoch #srilanka 🇱🇰.

  18. My #WIPWednesday is all about building the Global Bridge logic for a new client 🏗️.

    While everyone is talking about the #macbookneo or the #windows12 leaks, I’m focused on the software architecture that actually drives revenue. Hardware is great, but a messy CRM on a fast laptop is still just a messy CRM.

    if your follow-up has friction, your pipeline leaks. Killing Hopium one workflow at a time.

    #Introduction #Automation #SaaS #SalesGravy #SystemsDesign #LeadGen #MeerMittwoch #srilanka 🇱🇰.

  19. Good ideas don’t get weaker when you share them.
    They get better.
    This is how Bright Meadow became an open-source think tank by accident.

    blueribbonteam.com/blog/2026/0 #Collaboration #CircularEconomy #SystemsDesign

  20. Good ideas don’t get weaker when you share them.
    They get better.
    This is how Bright Meadow became an open-source think tank by accident.

    blueribbonteam.com/blog/2026/0 #Collaboration #CircularEconomy #SystemsDesign

  21. “Keep the system boring. Boring systems live long.”

    A reminder that in tech, endurance isn’t about flashy features—it’s about thoughtful, maintainable design.

    For engineers, the real artistry is in building things that last.

    #Engineering #SustainableTech #SystemsDesign #Longevity

  22. “Keep the system boring. Boring systems live long.”

    A reminder that in tech, endurance isn’t about flashy features—it’s about thoughtful, maintainable design.

    For engineers, the real artistry is in building things that last.

    #Engineering #SustainableTech #SystemsDesign #Longevity

  23. I trust systems that can be explained without adjectives.

    If it needs "robust", "scalable", "enterprise-grade", and "AI-powered" to sound plausible, it is probably doing too much. If it can be explained in verbs and nouns, it is probably closer to truth.

    Design is not how convincing the story is.
    It is how predictable the behavior is.

    #SoftwareEngineering #SystemsDesign #SoftwareArchitecture #Clarity #Maintainability #EngineeringBasics #ByernNotes

  24. There is a quiet kind of technical excellence that looks like “nothing happened.”

    No incident. No fire drill. No heroic debugging session.
    Just clear boundaries, boring interfaces, and a refusal to let the system become clever in the wrong places.

    Heroics feel productive.
    Routine is what scales.

    #SoftwareEngineering #Maintainability #Simplicity #SystemsDesign #EngineeringCulture #TechReality #ByernNotes

  25. The most reliable feature in any system is the one you never had to ship.

    Every line of code carries long-term cost.
    Every option added becomes something that must be supported, explained, and debugged.

    Absence is an underrated optimization.

    #SoftwareEngineering #Simplicity #SystemsDesign #LongTermThinking #ByernNotes

  26. Most “technical debt” is not technical.
    It’s organizational memory that never got written down and slowly turned into folklore.

    Decisions made under pressure become invisible assumptions.
    Assumptions turn into constraints.
    Constraints turn into bugs.

    Refactoring code is hard.
    Refactoring shared understanding is harder.

    #SoftwareEngineering #TechDebt #EngineeringCulture #SystemsDesign #ByernNotes

  27. Processing the feedback I got this week about systems design: I went too deep on edge cases and told it too much like a story.

    A mentor of mine had a comment that went something like "that's exactly what I would expect a Principal SRE to do".

    I agree. But what's difficult about keeping my agency in this instance is that I'm supposedly being interviewed by experts at the org (one a Principal SRE), so my brain goes "well, they have jobs, I don't, they must know more than I do."

    So today, I feel a lot better than I did yesterday. The heavy emotions are gone. I realized as I have been thinking about this, that if they didn't want a discussion about design told like a story about the user, then that's not the team for me.

    Humans connect to stories, design connects to users.

    #SRE #SystemsDesign #SystemsThinking

  28. Processing the feedback I got this week about systems design: I went too deep on edge cases and told it too much like a story.

    A mentor of mine had a comment that went something like "that's exactly what I would expect a Principal SRE to do".

    I agree. But what's difficult about keeping my agency in this instance is that I'm supposedly being interviewed by experts at the org (one a Principal SRE), so my brain goes "well, they have jobs, I don't, they must know more than I do."

    So today, I feel a lot better than I did yesterday. The heavy emotions are gone. I realized as I have been thinking about this, that if they didn't want a discussion about design told like a story about the user, then that's not the team for me.

    Humans connect to stories, design connects to users.

    #SRE #SystemsDesign #SystemsThinking

  29. I’m not anti-cloud, anti-AI, or anti-modern tooling.
    I am anti-unexamined defaults.

    Every abstraction optimizes for something.
    Cost, scale, speed, control, ownership, responsibility.
    If you don’t know what a system optimizes for, you are probably paying for it somewhere else.

    Skepticism is not negativity.
    It’s how engineers stay employed.

    #SoftwareArchitecture #TechSkepticism #HypeCycle #SystemsDesign #EngineeringJudgment #TechCulture #CriticalThinking #ByernNotes

  30. ⚡️ [1/3] The wildest experiment in Systems Design I’ve seen lately!

    Sharing this project by Nate Ferrero: Tagme.in. It’s software built to help us solve practical problems, but the moderation system completely flips the script on centralized control.

    We often talk about federated systems protecting against a single actor (which is important!), but Tagme.in tackles the content itself.

    The core, radical concept is simple: Everyone is a moderator.

    Anyone—human or robot—can delete a post on the platform, but you only have 30 minutes to do it.

    It’s an immediate, collective consciousness check on incoming information. You are the sovereign authority to remove something you don’t like.

    #SystemsDesign #Fedi #Coherence #SovereignEquals

  31. ⚡️ [1/3] The wildest experiment in Systems Design I’ve seen lately!

    Sharing this project by Nate Ferrero: Tagme.in. It’s software built to help us solve practical problems, but the moderation system completely flips the script on centralized control.

    We often talk about federated systems protecting against a single actor (which is important!), but Tagme.in tackles the content itself.

    The core, radical concept is simple: Everyone is a moderator.

    Anyone—human or robot—can delete a post on the platform, but you only have 30 minutes to do it.

    It’s an immediate, collective consciousness check on incoming information. You are the sovereign authority to remove something you don’t like.

    #SystemsDesign #Fedi #Coherence #SovereignEquals

  32. 1. "Our problem has unique requirements"
    2. Builds custom solution on "specialized" platforms
    3. Realizes Postgres could have handled it fine

    Everyone's use case is exceptional... until you prove it isn't.

  33. 1. "Our problem has unique requirements"
    2. Builds custom solution on "specialized" platforms
    3. Realizes Postgres could have handled it fine

    Everyone's use case is exceptional... until you prove it isn't.

    #PostgreSQL #Postgres #OpenSource #Database #SystemsDesign #SystemsEngineering

  34. I'm getting ready for a very important systems design interview that I do NOT want to fuck up so I spent the past few days pouring over books and things and came up with this visual to help me study.

    It's a "Complex Systems Design Cheatsheet" and I hope others get the same use I'm getting out of it, the color and spacial coding are really helpful to reinforce mental models and visually tune my brain to remembering concepts under pressure.

    #SRE #ComplexSystems #SoftwareArchitecture #OperationalExcellence #SystemsDesign

  35. I'm getting ready for a very important systems design interview that I do NOT want to fuck up so I spent the past few days pouring over books and things and came up with this visual to help me study.

    It's a "Complex Systems Design Cheatsheet" and I hope others get the same use I'm getting out of it, the color and spacial coding are really helpful to reinforce mental models and visually tune my brain to remembering concepts under pressure.

    #SRE #ComplexSystems #SoftwareArchitecture #OperationalExcellence #SystemsDesign

  36. New "Power of Music Thinking" episode!

    This one is an experiment: I used an AI (NotebookLM) to turn my peer-reviewed paper on "The Analogy of Orchestration" into a 16-minute audio piece.

    A deep dive into what the buzzword "orchestration" really means for business.

    Listen: musicthinking.com/orchestratin

    #MusicThinking #Podcast #AI #Innovation #Leadership #Orchestration #SystemsDesign

  37. A few months ago I discovered a law firm’s financial information (specifically billing and payment information), online. It’s a nationally known law firm, and the records in question were for the Seattle office.

    Broken down by customer.
    Itemized hourly billing.
    Hourly billing rate.
    Other expenses.
    Customer account number.
    Customer payment information, including bank account number.
    Law firm’s bank account number.
    Amounts paid.
    Payment dates.
    Balance due.
    The information did NOT include details of the services provided.

    I found it entirely by accident, with a Google search that wasn’t targeted in nature.

    No, I didn’t report it to the law firm. In Washington, “Good faith acquisition of personal information . . . is not a breach of the security of the system when the personal information is not used or subject to further unauthorized disclosure.” (RCW 19.255.005(1))
    I believe that protects me, but I don’t want to test it in court, and if the law firm knew about it, they might feel compelled to take some sort of action other than securing their information better.

    THE LESSON
    Do not store your company records, and host your website, on the same server. I can’t believe I have to write that sentence.

    #CallMeIfYouNeedMe #FIFONetworks

    #cybersecurity #NetworkArchitecture #SystemsDesign #policy

  38. A few months ago I discovered a law firm’s financial information (specifically billing and payment information), online. It’s a nationally known law firm, and the records in question were for the Seattle office.

    Broken down by customer.
    Itemized hourly billing.
    Hourly billing rate.
    Other expenses.
    Customer account number.
    Customer payment information, including bank account number.
    Law firm’s bank account number.
    Amounts paid.
    Payment dates.
    Balance due.
    The information did NOT include details of the services provided.

    I found it entirely by accident, with a Google search that wasn’t targeted in nature.

    No, I didn’t report it to the law firm. In Washington, “Good faith acquisition of personal information . . . is not a breach of the security of the system when the personal information is not used or subject to further unauthorized disclosure.” (RCW 19.255.005(1))
    I believe that protects me, but I don’t want to test it in court, and if the law firm knew about it, they might feel compelled to take some sort of action other than securing their information better.

    THE LESSON
    Do not store your company records, and host your website, on the same server. I can’t believe I have to write that sentence.

    #CallMeIfYouNeedMe #FIFONetworks

    #cybersecurity #NetworkArchitecture #SystemsDesign #policy

  39. Concerned about AI-generated malware bringing down your company? Then get your critical data off the Internet.

    This isn't rocket science. This is Occam’s Razor.

    The Internet is for social media and retail sales.

    PII, PHI, employee records, customer information - nothing important should ever be Internet accessible.

    Ever heard of private data circuits? Private data circuits are a real thing. People quit using them because the Internet was cheaper.

    "It'll be secure," they said.

    No. The Internet has never been secure. The Internet cannot ever be secure, because authenticated users will always be tricked into doing stuff for cybercriminals.

    If there was ever a time to rethink your business strategy as it relates to information storage and processing, that time is now.

    It's going to get worse quickly. Your best defense is to get sensitive data out of the public cloud.

    #CallMeIfYouNeedMe #FIFONetworks

    #cybersecurity #NetworkArchitecture #SystemsDesign #policy

  40. Concerned about AI-generated malware bringing down your company? Then get your critical data off the Internet.

    This isn't rocket science. This is Occam’s Razor.

    The Internet is for social media and retail sales.

    PII, PHI, employee records, customer information - nothing important should ever be Internet accessible.

    Ever heard of private data circuits? Private data circuits are a real thing. People quit using them because the Internet was cheaper.

    "It'll be secure," they said.

    No. The Internet has never been secure. The Internet cannot ever be secure, because authenticated users will always be tricked into doing stuff for cybercriminals.

    If there was ever a time to rethink your business strategy as it relates to information storage and processing, that time is now.

    It's going to get worse quickly. Your best defense is to get sensitive data out of the public cloud.

    #CallMeIfYouNeedMe #FIFONetworks

    #cybersecurity #NetworkArchitecture #SystemsDesign #policy

  41. Hello, Fediverse. You can call me Yan.
    I'm a systems designer, recently escaped from the algorithm-driven hellscapes of Reddit & the bird site. Looking for actual conversations.
    My obsession is #gamedesign & #AI - where elegant gameplay loops meet emergent AI behavior. I believe in System Shock over The Last of Us.
    Other interests: Black humor, honest engineering, fighting mediocrity.
    Looking for my tribe.
    #introduction #gamedev #ai #systemsdesign

  42. Hello, Fediverse. You can call me Yan.
    I'm a systems designer, recently escaped from the algorithm-driven hellscapes of Reddit & the bird site. Looking for actual conversations.
    My obsession is #gamedesign & #AI - where elegant gameplay loops meet emergent AI behavior. I believe in System Shock over The Last of Us.
    Other interests: Black humor, honest engineering, fighting mediocrity.
    Looking for my tribe.
    #introduction #gamedev #ai #systemsdesign

  43. AI won’t save your business.

    It will mirror your gaps.

    My system was over-engineered, under-defined, and completely uncontainerized.
    AI just made the chaos faster.

    What saved it?
    Structure.
    Rhythm.
    Containers that could actually hold decision-making.

    That’s what we build inside The Readiness Bridge™.

    You don’t need more prompts.
    You need patterns.

    Learn more here: ebonylgreen.ac-page.com/the-re

    #FOSS #EthicalTech #AILeadership #SystemsDesign #ReadinessBridge #DigitalStaffing

  44. Hi I’m Annika! 28F and here’s my #introduction!
    🐱 Cat mom.
    🍜 Epicurean.
    🚿 Showerhead balladeer.
    🐀 The defiant lab rat in God’s pristine research facility.

    🔍 I want to revive my interest in:
    #art#books#typography#poetry#film

    📚 My current interests are:
    #psychology#selfdevelopment#spirituality#highstrangeness#pkm#heutagogy#systemsdesign#revops#frontendwebdev#devops

    📜 I have a background in:
    #graphicdesign#instructionaldesign#businessprocessanalysis#ecommerce#computerscience

    Excited to be sharing this space with you!

  45. Hi I’m Annika! 28F and here’s my #introduction!
    🐱 Cat mom.
    🍜 Epicurean.
    🚿 Showerhead balladeer.
    🐀 The defiant lab rat in God’s pristine research facility.

    🔍 I want to revive my interest in:
    #art#books#typography#poetry#film

    📚 My current interests are:
    #psychology#selfdevelopment#spirituality#highstrangeness#pkm#heutagogy#systemsdesign#revops#frontendwebdev#devops

    📜 I have a background in:
    #graphicdesign#instructionaldesign#businessprocessanalysis#ecommerce#computerscience

    Excited to be sharing this space with you!

  46. Ah, yes, because what every aspiring system architect needs is yet another platform to flex their "leet" skills with a side of binary trivia. 🤖🧩 LeetSys: where designing systems is gamified into a delightful mix of over-engineering and overconfidence, perfect for impressing absolutely no one. 🎉🛠️
    leetsys.dev #LeetSys #Gamification #SystemsDesign #OverEngineering #TechHumor #HackerNews #ngated

  47. Today it struck me that #systemsDesign and #informationArchitecture planning are 95% emotional labor 5% technical understanding. People who write great code may set up healthy structures but they only do so when a shared model has been agreed upon by the stakeholders. This sets consensus building as the first essential skill set needed to get the job done. You want a great systems architect? How are their hostage negotiation skills?