python


Mro

class Base: def __init__(self): print('Base.__init__') class Child1(Base): def __in...

Three Things From Today - 8/28

8/28 Another day in the life. I want to get into the habit of sharing with the...

Making Safe Api Calls With Python

A tutorial on using returns library to make safe API calls

12 Function Tricks Every Python Developer Should Know

New Python developer should learn these 12 function-related tricks to become good at programming

Leetcode "Letter Combinations Of A Phone Number"

I thought of separating the process of combinations is a good approach. Letter Combinations of a...

Building Saas With Python And Django #1

This was the first episode and it was an experiment in streaming. I know that the audio on this i...

Top 10 Free Books And Courses To Learn Data Structure And Algorithms For Beginners

10 of free courses to learn Data Structure and Algorithms for Java programmers.

List Of Resources For Junior Developers

Originally published here Starting on programming can be very exciting but at the same time scary. A...

I Built An (Almost) Decentralized Facial Recognition System With Raspberry Pi Zeros! - Fras

FRAS allows tens of facial-recognition-camera-clients aka tiny Raspberry Pi-es to be deployed all across a campus, which then record who they see and when they see then to a central database.

Leetcode "3sum Closest"

I could not solve this problem, so I referred to this😢 3Sum Closest class Solution: def...

How To Add Django Models To The Wagtail Admin

Versions Python 3.7 Django 2.2 Wagtail 2.6 When working with Wagtail, you might find...

Going Functional 3 - Filter And Reduce

Welcome to part 3 of the #goingfunctional series. Following up where we left off, we will look into...

post-515-thumbnail
Has Anyone Used Nameko Microservices?

Interesting interview with one of Nameko's co-authors Matt Yule-Bennett on our blog this morning. N...

post-506-thumbnail
Positional-Only Arguments In Python

The ability to specify positional-only arguments using the / marker in function definitions is among...

Booting Your Own Kernel On Raspberry Pi Via Uart

In this post we go through the process of sending a kernel over UART, the challenges that I faced while doing that, and how I overcame them

post-463-thumbnail
Designing Continuous Build Systems: Docker Swarm Orchestration

Building code is sometimes as simple as executing a script. But a full-featured build system requires...

Python Sorting

Python tips on sorting items

post-420-thumbnail
Exploring Open Source Architectures - Redis.Py

Explore popular open source projects with detailed analysis of their architecture. We start with Redis.py

post-411-thumbnail
I Am Going To Automate You With Python | Reverse Python Lab

Hey DEV Network! In this lab, I am going to automate you with Python so you will start to fly end of...

Mocking By Adding Attributes To Functions

Python functions are first-class objects, which means we can stick whatever data we want on them!

Pyprint - Print Like You Would In Python, But In Javascript

Today I decide to make one of the most useful and useless packages out there as a joke. It's a packa...

post-341-thumbnail
Yet Another Way To Learn Recursion

Every semester, I pass around a survey to get some feedback on my teaching. This past semester someon...

Top Python Posts From August 19 Week

Hi! I'm Vicente, your friendly Filipino mod for the python tag. Today, is another episode of the Top...

Transfer Text File Over The Air In Python

https://github.com/Mortiniera/text_transfert_over_audio_channel

Leetcode "Longest Common Prefix"

Solution of LeetCode "Longest Common Prefix"

Python Projects With Poetry And Vscode. Part 2

In the First Part, we learned what the pyproject.toml file is and how to work with it, used Poetry to...

Machine Learning Blog Articles

https://medium.com/@thevie

Data Science Projects

https://github.com/Mortiniera/Data_Science_Portfolio

Django Console Tip: Autoload Your Models

Django console tip: autoload your models Several times per day I would open the Django co...

Python Comparison Tips

1. Don’t compare boolean values to True or False using ==. Yes: if greeting: No: if...

#Solved Data Not Showing On Django Template

I don't know why it isn't showing on the templates when I think I implemented it right. the template...

post-122-thumbnail
Data Ingestion With Azure Event Hubs Using Python

"Hello World" example of Azure Event Hubs using Python

post-116-thumbnail
Memory Views: Handling Strings

Wasmer memory handling for Python strings

How Does Python Handles " In A String When \ Is Not Provided?

I am a beginner in python. I knew that " is a special character and needs \ to print it. But how does...

Leetcode "13. Roman To Integer"

Solution of LeetCode "13. Roman to Integer"

post-67-thumbnail
Quick And Dirty Mock Service With Starlette

I had a challenge at work. The team needed to mock out a third party service in a testing environmen...

post-1-thumbnail
Publishing My First Game

Original: https://humberto.io/blog/publishing-my-first-game/ Games always connected me with technolo...