最新发布第2093页
Keep your SQL database in sync with Google Sheets
Keep your SQL database in sync with Google Sheets,This is basically a README but oh well it might be useful to someone. I created googlesheets-sql-sync to let users manually insert...
Writing my first VS Code extension
Writing my first VS Code extension,I'm (slightly) celebrating this week because I achieved something, albeit relatively small. I published my first VS Code extension! VS Code is be...
Python tips 101
Python tips 101,I have background with mostly JavaScript and a strong type language such as Java. Because Python's popularity in Machine learning, AI, data science, as well as back...
Py in 5: List Comprehensions
Py in 5: List Comprehensions, originally published on the Coding Duck blog: www.ccstechme.com/coding-duck-blog Today's topic? List Comprehensions! The Pythonic way of doing Pythoni...
RESTPie3 – Python REST API Server Starter Kit
RESTPie3 - Python REST API Server Starter Kit,Hello DEV community! My first post here. I'm a python veteran and have built many web services with various python frameworks for a lo...
Healing songs, healing code. How I’m using my side project to heal (part1)
Healing songs, healing code. How I'm using my side project to heal (part1),Last month was a bad month. I won't get in the details of it, but it was a bad month. I talked about it w...
Java Optional in class fields? Why not.
Java Optional in class fields? Why not.,Optional was introduced in Java 8 and according to documentation it is supposed to limit the use of null in return from the methods. Optiona...
How file descriptors can bring your service down.
How file descriptors can bring your service down.,Over the past year I've completed the Linux Foundation's Essentials of Linux Administration course. Today I'm going to focus on fi...
Py in 5: Lambda Functions
Py in 5: Lambda Functions, originally published on the Coding Duck blog: www.ccstechme.com/coding-duck-blog Today’s topic? Lambda functions! To start, let’s review the official d...
Don’t comment out your unit tests!
Don't comment out your unit tests!,There are few things I dislike more than checking out a project and seeing large swaths of the test module commented out. When this happens, you'...
Idempotently Create/Update AWS RDS Instances in Python
Idempotently Create/Update AWS RDS Instances in Python,There are several ways to manage databases via code, for Amazon Web Service's Relational Database Service(RDS), you can use T...
Extend is sometimes faster than Append
Extend is sometimes faster than Append,I just was comparing the performance difference between [].append(x) and [] + [x]. I just realized [].append(x) was faster. But when i tried ...