This file contains 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
public class CollectionUtil { | |
/** | |
* Distinct by multiple fields – distinctByKeys() function | |
* | |
* <PRE> | |
* List<Record> list = recordsList.stream() | |
* .filter(distinctByKeys(Record::getId, Record::getName)) | |
* .collect(Collectors.toList()); | |
* </PRE> |
This file contains 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
docker run --ulimit memlock=-1:-1 -it --rm=true --memory-swappiness=0 \ | |
--name postgres-quarkus-rest-http-crud -e POSTGRES_USER=restcrud \ | |
-e POSTGRES_PASSWORD=restcrud -e POSTGRES_DB=rest-crud \ | |
-p 5432:5432 postgres:10.5 |
This file contains 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
You are designing a compiler for a C++ program and need to check that braces in any given file are balanced. | |
Braces in a string are considered to be balanced if the following criteria are met: | |
All braces must be closed. Braces come in pairs of the form (), {} and []. The left brace opens the pair, and the right one closes it. | |
In any set of nested braces, the braces between any pair must be closed. | |
For example, [{}] is a valid grouping of braces but [{]} is not. | |
Function Description | |
Complete the function braces in the editor below. The function must return an array of strings where the string at each index i denotes whether or not the braces were balanced in values[i]. The array should consist of strings YES or NO aligned with their indices in values. |
This file contains 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
import cloud.localstack.utils.PromiseAsyncHandler; | |
import com.amazon.sqs.javamessaging.SQSConnection; | |
import com.amazon.sqs.javamessaging.SQSConnectionFactory; | |
import com.amazonaws.auth.AWSStaticCredentialsProvider; | |
import com.amazonaws.services.sqs.AmazonSQS; | |
import com.amazonaws.services.sqs.AmazonSQSAsync; | |
import com.amazonaws.services.sqs.model.*; | |
import com.amazonaws.services.sqs.model.Message; | |
import org.junit.Assert; | |
import org.junit.BeforeClass; |
This file contains 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
import java.util.function.Supplier; | |
import cloud.localstack.TestUtils; | |
import cloud.localstack.docker.LocalstackDocker; | |
public class TestAsyncUtils extends TestUtils { | |
public static AmazonDynamoDBAsync getClientDynamoDBAsync() { | |
return AmazonDynamoDBAsyncClientBuilder.standard() | |
.withEndpointConfiguration(createEndpointConfiguration(LocalstackDocker.INSTANCE::getEndpointDynamoDB)) |
This file contains 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
import {Directive, ElementRef, Input} from '@angular/core'; | |
@Directive({ | |
selector: '[background-image]' | |
}) | |
export class BackgroundImage { | |
private el: HTMLElement; | |
constructor(el: ElementRef) { | |
this.el = el.nativeElement; |
This file contains 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
language: node_js | |
sudo: required | |
node_js: | |
- node | |
before_script: | |
- "sudo chown root /opt/google/chrome/chrome-sandbox" | |
- "sudo chmod 4755 /opt/google/chrome/chrome-sandbox" | |
before_install: |
This file contains 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
import {Injectable} from '@angular/core'; | |
import {MessageService} from 'primeng/components/common/messageservice'; | |
/** | |
* A little abstraction to use Grow Message component from PrimeNG | |
* @see https://www.primefaces.org/primeng/#/growl | |
* | |
* Don't forget to use the tag <p-growl [(value)]="growlMessage" life="5000"></p-growl> | |
* | |
*/ |
This file contains 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
// https://github.com/angular/angular-cli/issues/6683 | |
import { NgModule, LOCALE_ID } from '@angular/core'; | |
// force to use locale pt-BR | |
providers: [ {provide: LOCALE_ID, useValue: 'pt-BR' } ] | |
// Or use below line to get locale from browser | |
// providers: [ {provide: LOCALE_ID, useValue: window.navigator.language} ] |
This file contains 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
clone(mapIn: Map<number, Array<Product>>): Map<number, Array<Product>> { | |
let mapCloned: Map<number, Array<Product>> = new Map<number, Array<Product>>(); | |
mapIn.forEach((products: Array<Product>, key: number, mapObj: Map<number, Array<Product>>) => { | |
//products.slice(0) clone array | |
mapCloned.set(key, products.slice(0)); | |
}); | |
return mapCloned; |