Skip to content

Instantly share code, notes, and snippets.

@lanaflon
lanaflon / README.md
Created December 17, 2021 11:36 — forked from russomi/README.md
Java 8 Spring Event Driven Microservices

Event Driven Microservices

  • Java 8
  • Spring Boot 2
  • JUnit
  • Cucumber
  • Kafka
  • Camunda
  • ElasticSearch
  • Cassandra
@lanaflon
lanaflon / it-ebooks.md
Created August 8, 2021 07:48 — forked from baiwfg2/it-ebooks.md
Download ebooks as you want
@lanaflon
lanaflon / Flexbox Froggy answers
Created March 25, 2021 14:07 — forked from lukasrudnik/Flexbox Froggy answers
Solutions Flexbox Froggy
1) justify-content: flex-end;
2) justify-content: center;
3) justify-content: space-around;
4) justify-content: space-between;
5) align-items: flex-end;
6) align-items: center;
justify-content: center;
7) justify-content: space-around;
8) flex-direction: row-reverse;
9) flex-direction: column;
@lanaflon
lanaflon / tokens.md
Created May 19, 2020 15:12 — forked from zmts/tokens.md
Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

Last major update: 20.04.2020

  • Что такое авторизация/аутентификация
  • Где хранить токены
  • Как ставить куки ?
  • Процесс логина
  • Процесс рефреш токенов
  • Кража токенов/Механизм контроля токенов
#!/bin/bash
# Clone all github.com repositories for a specified user.
if [ $# -eq 0 ]
then
echo "Usage: $0 <user_name> "
exit;
fi
#!/bin/bash
# Clone all github.com repositories for a specified user.
if [ $# -eq 0 ]
then
echo "Usage: $0 <user_name> "
exit;
fi
@lanaflon
lanaflon / README.md
Created December 25, 2019 15:42 — forked from jmruc/README.md
Generating pom.xml from gradle

To generate a pom.xml file just run gradle writeNewPom

If you want to generate it as pom.xml in the root of the project, replace writeTo("$buildDir/newpom.xml") with writeTo("pom.xml")