The usual document structure Taking a look at the OpenAPI specification file, there are several distinct sections: Information – which usually includes the title, version, some description, terms of service, etc. Servers – where we describe the servers that we use, usually split into production, staging, etc. Paths – resources that our API exposes and […]
Error Handling in Flutter
Foreword Due to the rising popularity of Flutter I feel it’s a good time to review some of the aspects of keeping your code clean and maintainable. One of the things that developers might not pay so much attention to while building apps is error handling. While it might not be so glamorous it is […]
SQL Query Performance Optimization
Need of Optimization In most IT systems, the database is an integral part. Data needs to be processed from databases to actually use it — and SQL is the standard interface language used to query the Database for data. Most of the time, SQLs written to communicate with the Database are simple, easy and fast. […]