Loading...

Engineering Manager

  • Change Management

    • Nemawashi

    • RFC

    • A3

    • Improvement Kata board

    • SCQA 

    • STICC 

  • Coaching

    • 1:1's

    • Brag Documents

    • Crystal Ball Exercise

    • Moving Motivators Exercise

      • Intristic Motivators
    • Snapshot Exercise

    • 1-3-1

    • 3Q 2F

    • Circle of Zorro

    • Coaching vs Sponsoring vs Mentoring

    • Corridor Coaching

    • GROW

    • Power of Expectations

    • Reframing

    • WOOP

    • Unrecognition

  • Communication

    • Active Listening

    • 4 Levels of Listening

    • PACE

      • Purpose

      • Ask

      • Connect

      • Encourage

    • SANGE

      • Simplicity

      • Acknowledgment

      • Needs of Situation

      • Gratitude

      • Empowerment

    • Dramatic Triangle

    • Minto Pyramid

    • Non-violent Communication

  • Decision Making

    • Cynefin Model

    • Eisenhower Matrix

    • Genesis Deadlines

    • Gut vs Fear

    • Six Thinking Hats

  • Delegation

    • Delegation Poker from Management 3.0
  • Energy Management

    • Day Energy Zones

    • Mind Shower

  • Feedback

    • Hate the Sin, love the Sinner

    • Opposing views on Praise

    • Radical Candor

    • Situation - Behaviour - Impact

  • Goal setting

    • OKR system
  • Leadership

    • 3R's

    • Character Diamond

    • Empathy

    • Cognitive

    • Emotional

    • Compassionate

    • Event + Response = Outcome

    • Integrity

    • Law of Familiarity

    • Leadership Styles

    • Lead by Example

    • Leverage

    • OK - OK

    • Sources of Authority

  • Onboarding

    • Buddy system

    • Hands-on since day 1

    • Love Bombing

  • People Management

    • Callibration

    • Career Paths

    • Trident Model

    • Vital Functions

    • Performance Reviews

    • 360's

    • Retrospectives

    • Hopes & Fears

    • Team organisation

    • Contracting exercise

    • Team Topologies

  • Problem Solving

    • Crazy 8's

    • Ishikawa Diagram

  • Product Discovery

    • Continous Discovery
  • Programming

    • Backend

    • Languages

      • Ruby
    • Frameworks

      • Ruby on Rails
    • DevOps

    • Frontend

    • Build tools

    • CSS

      • CSS Architecture

      • BEM

      • CSS Modules

      • Styled Components

      • CSS Frameworks

      • Tailwind

      • Preprocessors

      • SASS

    • Frameworks

      • React
    • HTML

    • JavaScript

    • Linters

    • Package Managers

      • npm

      • yarn

    • Web Components

    • General

    • Internet

    • Version Control

      • Git

      • SVN

    • Algorythmics

      • Complexity Analysis

      • Space complexity

      • Time complexity

      • BigO

        • Big Omega, Big Thetha...

        • Avg vs the worst case

        • Amortized Analysis

        • Benefits of log(N)

        • Multiple arguments and simplification

      • Popular algorithms

      • Usage of Modular Arithmetics

      • BFS

      • DFS

      • Floyd-Warshall

      • Djikstra

  • Recruitment

    • Always be Closing

    • One bad apple...

  • Software Architecture

    • Domain Driven Design
  • Software Delivery

    • Agile

    • Kanban

    • Lean

      • Minimize WIP

      • Six Sigma

    • Scrum

    • Continous Delivery

    • DORA Metrics

  • Security

    • Agile Threat Modelling

    • ISO 27001

    • Web Security

    • OWASP

    • CORS

  • Self Management

    • Feedback Analysis tool

    • Mirroring tool

    • Self Discovery questions tool

    • Time management

    • Pomodoro

    • Calendar blocking

      • Jam sessions & Recovery
    • Batching activities

    • Vital functions

    • Lion Syndrome

  • System Thinking

  • Computer Science

    • Digital electronics

    • Bit

    • Byte

      • Fixed width representation
    • Computer memory

    • Cryptography

    • Morse Alphabet & Brail

    • Binary, Octo and Hex codes

      • Mathematical operations on binary code

      • Logical operations

      • Binary code as electronical signal

    • ASCII

    • Data Structures

    • Linear

      • Static

      • Array

        • Insert, init, traverse, copy, unshift as expensives operations

        • get, set, pop of the last element as O(1)

      • Dynamic

      • Linked List

        • Single, Double, Circular links

        • Head and Tail

        • Get and set can be slow, insert can be fast

      • Queue

        • FIFO

        • peek, enqueue, dequeue

        • priorityQueue

      • Stack

        • LIFO

        • peek, push, pop

        • maxStack, minStack

      • Array

        • Duplication of size
    • Non-linear

      • Tree

      • Graph

      • Hash Table

      • Collisions

      • Array + Linked List and Buckets

      • Hashing function