Bieganie, odżywianie, przepisy

https://lepiejbiegac.pl/category/odzywianie/przepisy/

Set up multiple JDKs with jenv and AdoptOpenJDK

Set up multiple JDKs with jenv and AdoptOpenJDK

Shallow content, usuwać, blokować, a może wykorzystać?

https://dailyweb.pl/shallow-content-usuwac-blokowac-a-moze-wykorzystac-opinia-piotra-michalaka-z-grupy-tense/

MySQL: How to Write a Query That Returns the Top Records in a Group

https://towardsdatascience.com/mysql-how-to-write-a-query-that-returns-the-top-records-in-a-group-12865695f436 SET @group_rank := NULL; SELECT * FROM ( SELECT *, @group_hash := CONCAT(`column1`, '-', `column2`) AS _group_hash, @group_rank := IF(@group_value = @group_hash, @group_rank + 1, 1) AS _group_rank, @group_value := @group_hash AS _group_value FROM `your_table` AS `_your_table` ORDER BY `column1` ASC, `column2` ASC ) AS `_sub_table` WHERE `_sub_table`.`_group_rank` <= 2 ;

SendGrid guides

https://sendgrid.com/resources/guides/ 24 Email Marketing Best Practices Tips for 2020 Email Design Best Practices for 2019 The Expert’s Guide to Social and Display Ads

A Practical Guide to MySQL JSON Data Type

A Practical Guide to MySQL JSON Data Type By Example JSON Labs Release: JSON Functions, Part 1 — Manipulation JSON Data JSON Labs Release: JSON Functions, Part 2 — Querying JSON Data Functions That Search JSON Values

Fingerprint.js is the most advanced open-source fraud detection JS library

Fingerprint.js has a unique approach to prevent fraud on your website. The library generates a unique identifier of a browser without using cookies or any information that can be easily reset by a malicious user. By storing this identifier in your database you will get an accurate idea if someone is trying use the same ...

Why you should totally switch to Kotlin

https://medium.com/@magnus.chatt/why-you-should-totally-switch-to-kotlin-c7bbde9e10d5

Using MySQL 5.7 Generated Columns to Increase Query Performance

https://www.percona.com/blog/2018/01/29/using-generated-columns-in-mysql-5-7-to-increase-query-performance/

How to filter names (in unicode) using regular expressions

fun escapeSpecialCharacters(string: String): String { return string.replace("[^\\p{L}\\p{N}\\p{P}\\p{Z}]".toRegex(), "_") } Unicode Regular Expressions