01.02.2024
Logdy - terminal logs supercharged, an introduction
Logdy is an open-source, self-hosted, single-binary tool that wraps the commands and consumes it's STDOUT streaming it to a web browser, where a slick and clean UI structures it.
Get to know our view of the IT world. We write about technologies, humanly.
01.02.2024
Logdy is an open-source, self-hosted, single-binary tool that wraps the commands and consumes it's STDOUT streaming it to a web browser, where a slick and clean UI structures it.
05.12.2020
Recently I came across a task to create a small service which will query several external APIs and output their statuses. Each of the call to the API takes from half a second to up to couple of seconds. Eventually those statuses are meant to be returned as an API response.
30.11.2020
It is possible to create Vue.js application using only inline JavaScript and HTML wihout bundling. It's easy to setup and blazingly fast to develop, very useful for small projects.
16.11.2020
If you are looking for a way to integrate you Golang application with RabbitMQ queue then you've found it!
11.11.2020
In this post, I’m gonna review the Meilisearch repository which describes itself as a “Lightning Fast, Ultra Relevant and Typo-Tolerant Search Engine”. There were couple of things that caught my eye with this project...
08.11.2020
In this post, I’m gonna review the Meilisearch repository which describes itself as a “Lightning Fast, Ultra Relevant and Typo-Tolerant Search Engine”. There were couple of things that caught my eye with this project...
03.11.2020
SQL Server has been around for over 30 years now. Developed by Microsoft, it has been a primary choice for many enterprises as a database. It's still very popular despite growing open source SQL database popularity: MySQL and PostgreSQL. SQL Server has a very different architecture and usage patterns from its open-source competitors, that's why many common database operations might confuse developers who has been using Mysql or PostgreSQL. In this post I'm gonna share with you a collection of useful SQL Server queries and commands, that makes easy to maintain healthy database.
01.11.2020
PostgreSQL (also known as psql) is an open source database which started its existence in 1996. Since then it has become one of the most popular opensource database engine in the world, used by millions of developers who need more features than standard MySQL database. In this post, I'm gonna share with you a collection of common queries, commands and snippets, useful during maintenance and day-to-day usage of PostgreSQL database, which I've collected over the years and now sharing with you.
18.03.2020
As remote work grows in popularity, the need for remote work tools becomes more apparent. How can your team maintain communication, manage projects effectively, and share work quickly when each staffer is located in a different place?
02.03.2020
Async/await API is a great step towards code readability in Node.js. But it also introduces one significant problem which a lot of developers struggle in day to day job, it's error handling and to be precise - promise rejection (or exception) in async code wrappers in Express.js framework. This post will show a way to handle it properly.