Blog

Poznaj nasze spojrzenie na świat IT. Piszemy o technologiach, po ludzku.

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.

05.12.2020

How to stream results of multiple Promises in Node.js

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

Create Vue.js micro app without NPM, using inline JS and HTML

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

RabbitMQ cluster on Docker with Golang in 5 minutes

If you are looking for a way to integrate you Golang application with RabbitMQ queue then you've found it!

11.11.2020

Golang concurrency 101 - basic channel usage

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

Hands on with: MeiliSearch - A next generation search engine for modern web

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

Przydatne zapytania, komendy i skrypty do SQL Server Microsoft

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

Przydatne zapytania, komendy i skrypty do PostgreSQL (psql)

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

Jak efektywnie pracować z domu? Jak zacząć pracować zdalnie. Przydatne narzędzia

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

Handling Promise rejections in Express.js (Node.js) with ease

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.