Periodic Table toy in Python
Periodic Table toy in Python, Wat. It's a thing that lets you assemble words using only the symbols on the Periodic Table. It's a console app and it's purty. Python 3 I've never co...
Logging In Django
Logging In Django, Introduction Recently I wrote an article called The Skills to get a job as a Django Developer about the necessary skillsets to learn to get a job as a Django dev...
Implementing View Types in Python
Implementing View Types in Python,In object-oriented languages like Java, C#, or Kotlin, given a type T, an associated view type TView is used to expose a specific view (parts) of ...
Kotlin/Java Annotations: They’re where it’s @
Kotlin/Java Annotations: They're where it's @,I had an interesting conversation with a colleague recently about the use of annotations in Java/Kotlin code. He had worked in organiz...
How to use FactoryBoy to create model instances in Django for testing
How to use FactoryBoy to create model instances in Django for testing,Original post: Using FactoryBoy to create model objects automatically for testing. Testing is one of the basic...
Convert to JSON in Python vs Javascript
Convert to JSON in Python vs Javascript, Python: import json user = { 'name': 'Victor' } json_py = json.dumps(user) Enter fullscreen mode Exit fullscreen mode Javascript: const use...
Check if key exists in Dictionary/Object in Python vs Javascript
Check if key exists in Dictionary/Object in Python vs Javascript, Python dict = { 'platform': 'telegram' } if 'platform' in dict: # do something Enter fullscreen mode Exit fullscre...
URL Parameters in Flask vs Express
URL Parameters in Flask vs Express, Flask @app.route('/api/v1/users/<user_id>') def handler(user_id): # route handler # use user_id Enter fullscreen mode Exit fullscreen mode...
Java Memory Model
Java Memory Model,Hi Everyone, Understanding JVM Memory Model, Java Memory Management are very important if you want to understand the working of Java Garbage Collection. Today we ...
Building GraphQL APIs with Strawberry (Part 1: Queries)
Building GraphQL APIs with Strawberry (Part 1: Queries),Note: This post is part 1 in a series of blog posts I'm writing as I work on the official documentation for Strawberry. It w...
[Pycharm IDE]File size exceeds configured limit(2.5M). Code insight features are not available
[Pycharm IDE]File size exceeds configured limit(2.5M). Code insight features are not available, File size exceeds the configured limit(2.5M) Working a crawler that involves capturi...