排序
The Art of Code Reviews: How I Learned to Grow Beyond My Ego
The Art of Code Reviews: How I Learned to Grow Beyond My Ego,Code reviews can be the most humbling and transformative experiences in a developer's life. When I first joined a team ...
Wednesday Links – Edition 2024-09-18
Wednesday Links - Edition 2024-09-18, Wednesday Links (233 Part Series) 1 Wednesday Links - Edition 2020-05-27 2 Wednesday Links - Edition 2020-06-03 ... 229 more parts... 3 Wednes...
Python: Interesting Code Patterns
Python: Interesting Code Patterns,I work mostly with Python and review code on almost daily basis. In our code base formatting & linting is handled by CI jobs using black &...
Python PDB Code Review Report
Python PDB Code Review Report, Python PDB Code Review Report TIME: 2024/08/07 AUTHOR: QINYUAN MENG EMAIL: njbj1210@sina.com GITHUB: https://github.com/mengqinyuan/ DEV.TO: https:/...
Assignment Expressions (The Walrus Operator) in Python
Assignment Expressions (The Walrus Operator) in Python, Overview PEP 572, also known as the 'Assignment Expressions' or 'The Walrus Operator,' introduces a new syntax to the Python...
Why we still have tech-debt?
Why we still have tech-debt?,When a developer creates a pull request, the reviewer checks it for business logic. However, what often gets overlooked are: Data structure optimizatio...
W1203: logging-fstring-interpolation (Solved)
W1203: logging-fstring-interpolation (Solved),A few days back, I was implementing a feature, and when I was done and happy with my work, I decided to commit the code. We have enabl...
Python Type Hints: Code readability perspective
Python Type Hints: Code readability perspective,This article is a quick introduction to type hints for beginners who’ve started programming in Python. If you’re an experienced pr...
Secure your Python Code with Bandit
Secure your Python Code with Bandit,Python is a popular programming language for building web applications, scientific computing, data analysis, and more. However, like any other p...
DAY 9: Merge k Sorted Lists
DAY 9: Merge k Sorted Lists,Hey! It's day 9 of 10days coding challenge with I4G. Today's task was to write a code that can merge k sorted lists. Thought process: Understanding of p...
DAY 7: UTF-8-VALIDATION
DAY 7: UTF-8-VALIDATION,Hey! It's day 7 of 10 days coding challenge with I4G. Today's task was to write a code that validates a utf-8 code. Thought process: Understanding of proble...
DAY 6: FIZZ-BUZZ-MULTITHREADED
DAY 6: FIZZ-BUZZ-MULTITHREADED,Hey! it's day 6 of 10 days of coding challenge with I4G. Today's task was to write a code that executes fizz buzz multitreaded output. Thought proces...