Making Java Code Easier to Read (Without Changing it)

https://medium.com/@andrey_cheptsov/making-java-code-easier-to-read-without-changing-it-adeebd5c36de

RESTful API Design. Best Practices in a Nutshell

https://blog.philipphauer.de/restful-api-design-best-practices/

Best Practices for Unit Testing in Kotlin

https://blog.philipphauer.de/best-practices-unit-testing-kotlin/

Kurs Javy dla początkujących | Kobiety do kodu

https://kobietydokodu.pl/kurs-javy/

Vogella Tutorials

Web development Java Tutorials Version control, build system, databases and technical documentation Java Algorithms Design Pattern in Java

Enduhub – sport results. Running, triathlon, cycling

All results in one place. Results for marathon and halfmarathon running – ironman and olimpic triathlon – cycling – swimming – mountain biking

Kotlin – jak zacząć?

https://blog.geekydevs.com/kotlin-jak-zaczac/ https://blog.geekydevs.com/tag/kotlin/

Operator Precedence in Java

https://introcs.cs.princeton.edu/java/11precedence/

Modifying an AWS CloudFormation Stack Policy

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html#protect-stack-resources-modifying To get current stack policy, run the following command: aws cloudformation get-stack-policy --region AWS_REGION --stack-name STACK_NAME | jq '.StackPolicyBody' | sed 's/"{/{/g' | sed 's/}"/}/g' | sed 's/\\n/ /g' | sed 's/\\"/"/g' | jq '.' To allow further modification of a stack policy, run the following command: aws cloudformation set-stack-policy --region AWS_REGION --stack-name STACK_NAME ...

jq is a lightweight and flexible command-line JSON processor

https://stedolan.github.io/jq/