Forem

Aaron Rose profile picture

Aaron Rose

Software engineer and technology writer at tech-reader.blog

Location Dallas, TX Joined Joined on  Personal website https://www.tech-reader.blog
The Secret Life of Go: Maps
Cover image for The Secret Life of Go: Maps

The Secret Life of Go: Maps

Comments
7 min read

Want to connect with Aaron Rose?

Create an account to connect with Aaron Rose. You can also sign in below to proceed if you already have an account.

Already have an account? Sign in
The Secret Life of Go: Arrays and Slices
Cover image for The Secret Life of Go: Arrays and Slices

The Secret Life of Go: Arrays and Slices

1
Comments
8 min read
Python by Structure: How Decorators Transform Classes
Cover image for Python by Structure: How Decorators Transform Classes

Python by Structure: How Decorators Transform Classes

2
Comments
5 min read
The Secret Life of Python: Attribute Lookup Secrets
Cover image for The Secret Life of Python: Attribute Lookup Secrets

The Secret Life of Python: Attribute Lookup Secrets

1
Comments
16 min read
The Secret Life of Go: Functions
Cover image for The Secret Life of Go: Functions

The Secret Life of Go: Functions

4
Comments
8 min read
The Secret Life of Go: Variables & Types
Cover image for The Secret Life of Go: Variables & Types

The Secret Life of Go: Variables & Types

3
Comments
10 min read
The Secret Life of Go
Cover image for The Secret Life of Go

The Secret Life of Go

11
Comments 4
10 min read
Python by Structure - Class-Based Decorators That Remember
Cover image for Python by Structure - Class-Based Decorators That Remember

Python by Structure - Class-Based Decorators That Remember

4
Comments
3 min read
The Secret Life of Python: Bytecode Secrets - What Python Really Runs
Cover image for The Secret Life of Python: Bytecode Secrets - What Python Really Runs

The Secret Life of Python: Bytecode Secrets - What Python Really Runs

3
Comments
26 min read
Python by Structure: Decorator Chains and Execution Order
Cover image for Python by Structure: Decorator Chains and Execution Order

Python by Structure: Decorator Chains and Execution Order

5
Comments 1
5 min read
The Secret Life of Python: MRO Secrets - The Diamond Problem Solved
Cover image for The Secret Life of Python: MRO Secrets - The Diamond Problem Solved

The Secret Life of Python: MRO Secrets - The Diamond Problem Solved

3
Comments
24 min read
Python by Structure: Match Statements and Pattern Guards
Cover image for Python by Structure: Match Statements and Pattern Guards

Python by Structure: Match Statements and Pattern Guards

3
Comments
6 min read
The Secret Life of Python: GIL Secrets - Python's Threading Mystery
Cover image for The Secret Life of Python: GIL Secrets - Python's Threading Mystery

The Secret Life of Python: GIL Secrets - Python's Threading Mystery

5
Comments 2
21 min read
Python by Structure: The Walrus Operator - Assignment Where You Need It
Cover image for Python by Structure: The Walrus Operator - Assignment Where You Need It

Python by Structure: The Walrus Operator - Assignment Where You Need It

10
Comments 1
4 min read
Python by Structure: Context Managers and the With Statement
Cover image for Python by Structure: Context Managers and the With Statement

Python by Structure: Context Managers and the With Statement

4
Comments 1
4 min read
Python by Structure: Generator Delegation with Yield From
Cover image for Python by Structure: Generator Delegation with Yield From

Python by Structure: Generator Delegation with Yield From

Comments 1
4 min read
The Secret Life of Python: Metaclass Secrets - Classes That Create Classes
Cover image for The Secret Life of Python: Metaclass Secrets - Classes That Create Classes

The Secret Life of Python: Metaclass Secrets - Classes That Create Classes

Comments
13 min read
Python by Structure: The For/Else Block You Didn't Know Existed
Cover image for Python by Structure: The For/Else Block You Didn't Know Existed

Python by Structure: The For/Else Block You Didn't Know Existed

5
Comments 5
3 min read
Python by Structure: The Try/Else Block You're Not Using
Cover image for Python by Structure: The Try/Else Block You're Not Using

Python by Structure: The Try/Else Block You're Not Using

6
Comments
3 min read
The Secret Life of Python: Descriptor Secrets - How Properties Really Work
Cover image for The Secret Life of Python: Descriptor Secrets - How Properties Really Work

The Secret Life of Python: Descriptor Secrets - How Properties Really Work

2
Comments
16 min read
The Secret Life of Python: Context Manager Secrets - The Magic of `with`
Cover image for The Secret Life of Python: Context Manager Secrets - The Magic of `with`

The Secret Life of Python: Context Manager Secrets - The Magic of `with`

4
Comments
14 min read
The Secret Life of Python: Decorator Secrets - Functions That Wrap Functions
Cover image for The Secret Life of Python: Decorator Secrets - Functions That Wrap Functions

The Secret Life of Python: Decorator Secrets - Functions That Wrap Functions

3
Comments
14 min read
The Python Structure Viewer: A Clear Window into Your Code
Cover image for The Python Structure Viewer: A Clear Window into Your Code

The Python Structure Viewer: A Clear Window into Your Code

5
Comments 3
2 min read
The Secret Life of Python: Generator Secrets - Functions That Remember
Cover image for The Secret Life of Python: Generator Secrets - Functions That Remember

The Secret Life of Python: Generator Secrets - Functions That Remember

2
Comments
17 min read
The Secret Life of Python: The Iterator Protocol - Why For Loops Are Magic
Cover image for The Secret Life of Python: The Iterator Protocol - Why For Loops Are Magic

The Secret Life of Python: The Iterator Protocol - Why For Loops Are Magic

4
Comments 1
17 min read
The Secret Life of Python: The Descriptor Protocol - How Properties Really Work
Cover image for The Secret Life of Python: The Descriptor Protocol - How Properties Really Work

The Secret Life of Python: The Descriptor Protocol - How Properties Really Work

5
Comments
25 min read
The Secret Life of Python: The Copy Dilemma - Shallow vs Deep Copying Explained
Cover image for The Secret Life of Python: The Copy Dilemma - Shallow vs Deep Copying Explained

The Secret Life of Python: The Copy Dilemma - Shallow vs Deep Copying Explained

3
Comments 1
13 min read
The Secret Life of Python: The String Intern Pool - When Two Strings Are One Object
Cover image for The Secret Life of Python: The String Intern Pool - When Two Strings Are One Object

The Secret Life of Python: The String Intern Pool - When Two Strings Are One Object

6
Comments
13 min read
The Secret Life of Python: The Memory Manager - How Python's Garbage Collector Works
Cover image for The Secret Life of Python: The Memory Manager - How Python's Garbage Collector Works

The Secret Life of Python: The Memory Manager - How Python's Garbage Collector Works

3
Comments 3
16 min read
The Secret Life of Python: The Integer Cache - Why Small Numbers Share Identity
Cover image for The Secret Life of Python: The Integer Cache - Why Small Numbers Share Identity

The Secret Life of Python: The Integer Cache - Why Small Numbers Share Identity

3
Comments 1
14 min read
The Secret Life of Python: The Executor - Running Blocking Code Without Blocking
Cover image for The Secret Life of Python: The Executor - Running Blocking Code Without Blocking

The Secret Life of Python: The Executor - Running Blocking Code Without Blocking

4
Comments 1
13 min read
The Secret Life of Python: The Barrier - Synchronizing Groups at Checkpoints
Cover image for The Secret Life of Python: The Barrier - Synchronizing Groups at Checkpoints

The Secret Life of Python: The Barrier - Synchronizing Groups at Checkpoints

2
Comments
14 min read
The Condition - Advanced Task Coordination
Cover image for The Condition - Advanced Task Coordination

The Condition - Advanced Task Coordination

3
Comments
10 min read
The Lock: Synchronization Primitives for Shared State
Cover image for The Lock: Synchronization Primitives for Shared State

The Lock: Synchronization Primitives for Shared State

2
Comments
12 min read
The Queue: Producer-Consumer Patterns and Async Communication
Cover image for The Queue: Producer-Consumer Patterns and Async Communication

The Queue: Producer-Consumer Patterns and Async Communication

1
Comments
11 min read
The Task Scheduler: Managing Multiple Coroutines with asyncio
Cover image for The Task Scheduler: Managing Multiple Coroutines with asyncio

The Task Scheduler: Managing Multiple Coroutines with asyncio

8
Comments
14 min read
The Async Iterator Part 2: Streaming Data and Real-World Patterns
Cover image for The Async Iterator Part 2: Streaming Data and Real-World Patterns

The Async Iterator Part 2: Streaming Data and Real-World Patterns

4
Comments
13 min read
The Async Iterator: When Regular Loops Block the Event Loop
Cover image for The Async Iterator: When Regular Loops Block the Event Loop

The Async Iterator: When Regular Loops Block the Event Loop

3
Comments 5
12 min read
The Context Variable Vault: Advanced Patterns and Framework Integration
Cover image for The Context Variable Vault: Advanced Patterns and Framework Integration

The Context Variable Vault: Advanced Patterns and Framework Integration

5
Comments
15 min read
The Context Variable Vault: Thread-Safe State Without Globals
Cover image for The Context Variable Vault: Thread-Safe State Without Globals

The Context Variable Vault: Thread-Safe State Without Globals

12
Comments 3
12 min read
Living with the GIL: Strategies for Concurrent Python
Cover image for Living with the GIL: Strategies for Concurrent Python

Living with the GIL: Strategies for Concurrent Python

7
Comments
12 min read
Living with the GIL: Strategies for Concurrent Python
Cover image for Living with the GIL: Strategies for Concurrent Python

Living with the GIL: Strategies for Concurrent Python

7
Comments
12 min read
The GIL Revealed: Why Python Threading Isn't Really Parallel
Cover image for The GIL Revealed: Why Python Threading Isn't Really Parallel

The GIL Revealed: Why Python Threading Isn't Really Parallel

6
Comments
11 min read
The Circular Import Problem: Breaking Dependency Cycles
Cover image for The Circular Import Problem: Breaking Dependency Cycles

The Circular Import Problem: Breaking Dependency Cycles

20
Comments 15
13 min read
The Search Path Mystery: Where Python Finds Modules
Cover image for The Search Path Mystery: Where Python Finds Modules

The Search Path Mystery: Where Python Finds Modules

7
Comments
12 min read
The Package Architecture: Building Importable Code
Cover image for The Package Architecture: Building Importable Code

The Package Architecture: Building Importable Code

4
Comments
12 min read
The Concurrent Corridors: Async/Await and the Event Loop
Cover image for The Concurrent Corridors: Async/Await and the Event Loop

The Concurrent Corridors: Async/Await and the Event Loop

4
Comments
12 min read
The Library Method: Understanding Context Managers
Cover image for The Library Method: Understanding Context Managers

The Library Method: Understanding Context Managers

2
Comments
3 min read
The Descriptor Workshop: Properties Under the Hood
Cover image for The Descriptor Workshop: Properties Under the Hood

The Descriptor Workshop: Properties Under the Hood

2
Comments
13 min read
The Interface Gallery: Abstract Base Classes and Protocols
Cover image for The Interface Gallery: Abstract Base Classes and Protocols

The Interface Gallery: Abstract Base Classes and Protocols

1
Comments
11 min read
The Blueprint Factory: Dataclasses and Automated Design
Cover image for The Blueprint Factory: Dataclasses and Automated Design

The Blueprint Factory: Dataclasses and Automated Design

Comments
11 min read
The Blueprint Factory: Dataclasses and Automated Design
Cover image for The Blueprint Factory: Dataclasses and Automated Design

The Blueprint Factory: Dataclasses and Automated Design

Comments
11 min read
The Composition Workshop: Building with "Has-A" Relationships
Cover image for The Composition Workshop: Building with "Has-A" Relationships

The Composition Workshop: Building with "Has-A" Relationships

3
Comments 1
7 min read
The Method Workshop: Class Methods, Static Methods, and Properties
Cover image for The Method Workshop: Class Methods, Static Methods, and Properties

The Method Workshop: Class Methods, Static Methods, and Properties

2
Comments
11 min read
The Special Protocols Room: Magic Methods and Operator Overloading
Cover image for The Special Protocols Room: Magic Methods and Operator Overloading

The Special Protocols Room: Magic Methods and Operator Overloading

1
Comments
8 min read
The Inheritance Gallery: Parent and Child Classes
Cover image for The Inheritance Gallery: Parent and Child Classes

The Inheritance Gallery: Parent and Child Classes

4
Comments
7 min read
The Blueprint Room: Classes and Instances
Cover image for The Blueprint Room: Classes and Instances

The Blueprint Room: Classes and Instances

1
Comments
7 min read
The Nested Patterns: Advanced Comprehension Techniques
Cover image for The Nested Patterns: Advanced Comprehension Techniques

The Nested Patterns: Advanced Comprehension Techniques

1
Comments
8 min read
The Pattern Looms: List and Dict Comprehensions
Cover image for The Pattern Looms: List and Dict Comprehensions

The Pattern Looms: List and Dict Comprehensions

3
Comments
8 min read
The Functional Toolkit: Map, Filter, and Reduce
Cover image for The Functional Toolkit: Map, Filter, and Reduce

The Functional Toolkit: Map, Filter, and Reduce

2
Comments
8 min read
loading...