- Create new Field in
Realm Settings>User Profile. - Fill
new-fieldinUsers>User Detail. - In
Clientsset-up this new Field.Clients>Your Client>Client Scopes>your-client-dedicated> configure a new mapper >User attribute> in the form in theUser Attribute fieldselectyour-field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @JsonTypeInfo( | |
| use = JsonTypeInfo.Id.NAME, | |
| include = JsonTypeInfo.As.PROPERTY, | |
| property = "type", | |
| visible = true | |
| ) | |
| @JsonSubTypes( | |
| JsonSubTypes.Type(BuyOperationRequest::class, name = "BUY"), | |
| JsonSubTypes.Type(SellOperationRequest::class, name = "SELL"), | |
| JsonSubTypes.Type(BlockOperationRequest::class, name = "BLOCK") |
- React
frontend - TypeScript
frontend - NextJs
frontend - Material UI (mui)
frontend - React Query or SWR
frontend - Netlify
infra/frontend - Spring 3.2
backend - Kotlin (Backend)
backend
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.distributed.tracing | |
| import jakarta.annotation.PostConstruct | |
| import org.slf4j.LoggerFactory | |
| import org.springframework.amqp.rabbit.annotation.EnableRabbit | |
| import org.springframework.amqp.rabbit.annotation.RabbitListener | |
| import org.springframework.amqp.rabbit.config.ContainerCustomizer | |
| import org.springframework.amqp.rabbit.core.RabbitTemplate | |
| import org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer | |
| import org.springframework.beans.factory.annotation.Autowired |
Quick Start
https://docs.k3s.io/quick-start
curl -sfL https://get.k3s.io | sh -
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package demointerviews.collection; | |
| import java.util.*; | |
| /** | |
| * You must improve the processing time of the "solution" method | |
| */ | |
| public class ChallengeForInsideFor { |
NewerOlder


