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.
Poznaj nasze spojrzenie na świat IT. Piszemy o technologiach, po ludzku.
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 istnieje już od ponad 30 lat. Opracowany przez firmę Microsoft był podstawowym wyborem dla wielu przedsiębiorstw jako baza danych. Mimo rosnącej popularności baz danych SQL typu open source: MySQL i PostgreSQL jest on nadal bardzo popularny. inna architektura i wzorce użytkowania od konkurentów z otwartym kodem źródłowym, dlatego wiele typowych operacji na bazach danych może zmylić programistów, którzy używali Mysql lub PostgreSQL. W tym poście podzielę się z wami kolekcją przydatnych zapytań i poleceń SQL Server, które ułatwia utrzymanie zdrowej bazy danych.
01.11.2020
PostgreSQL (znany również jako psql) to baza danych typu open source, która rozpoczęła swoje istnienie w 1996 roku. Od tego czasu stała się jednym z najpopularniejszych silników bazodanowych typu open source na świecie, używanym przez miliony programistów, którzy potrzebują więcej funkcji niż standardowa baza danych MySQL. W tym poście podzielę się z wami zbiorem typowych zapytań, poleceń i fragmentów przydatnych podczas konserwacji i codziennego użytkowania bazy danych PostgreSQL, które zbierałem przez lata i teraz udostępniam.
18.03.2020
Wraz ze wzrostem popularności pracy zdalnej, zapotrzebowanie na narzędzia do pracy zdalnej staje się coraz bardziej widoczne. W jaki sposób Twój zespół może utrzymywać komunikację, skutecznie zarządzać projektami i szybko dzielić pracę, gdy każdy pracownik znajduje się w innym miejscu?
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.