排序
‘Just Google It’ is not enough – The negative impact of 3 simple words
'Just Google It' is not enough - The negative impact of 3 simple words,When I had just transitioned into a senior role a couple of years ago, a junior developer in my team asked me...
Lando and Flask
Lando and Flask, Requirements You'll need Lando installed, and that's it. Setting up Lando Get into your project directory, and get things started with a Lando file. cd my-project ...
5 Refactoring Tips to Improve Your Code
5 Refactoring Tips to Improve Your Code,Refactoring is the process of improving the quality of code without changing what it does. Taking a little bit of time to refactor your code...
Java Syntax question
Java Syntax question,The last time I used Java was 1.5, could someone let me know what the ::new does ? namedWriteables.add(new NamedWriteableRegistry.Entry(EvaluationMetric.class,...
Managing Session Data with Flask-Session & Redis
Managing Session Data with Flask-Session & Redis, When building we build applications that handle users, a lot of functionality depends on storing session variables for users. Cons...
python server socket
python server socket,In Python you can do network programming. You may be familiar with network programming at high level (the web, ftp). This uses the client-server model, where t...
python pathlib
python pathlib,With the Python programming language, you can deal with files. Some things you can do with Python are read files, write files, create files and much more. If you wor...
python relative import
python relative import,Like any other modern programming language, in Python you can import code from other files or modules. If you used Python before, you know that you can use m...
string substitution python
string substitution python,In Python you can easily substitute a string without having to do character by character replacement (looking at you C programming). In fact, Python has ...
Create a SpringBoot, Flyway project in a couple of minutes on Github
Create a SpringBoot, Flyway project in a couple of minutes on Github, WHY? Starting a new project from scratch is a awesome feeling, and a daunting one when you think of ALL of the...
Eager Loading VS Lazy Loading in SQLAlchemy
Eager Loading VS Lazy Loading in SQLAlchemy,I have heard of eager loading data relationships a lot in the past, but it was only recently that I became more conscious of it in my AP...
Simplifying SQLAlchemy models by creating a BaseModel
Simplifying SQLAlchemy models by creating a BaseModel,SQLAlchemy's approach of making all requests a transaction and requiring you to constantly add things to the session before co...