View docker-stop-and-remove.ps1
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 stop $(docker ps -aq) | |
docker rm $(docker ps -aq) | |
docker rmi $(docker images -q) | |
docker container prune # Remove all stopped containers | |
docker volume prune # Remove all unused volumes | |
docker image prune # Remove unused images | |
docker system prune # All of the above, in this order: containers, volumes, images | |
docker system df # Show docker disk usage, including space reclaimable by pruning |
View rabbitmq.repo
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
# In /etc/yum.repos.d/rabbitmq.repo | |
## | |
## Zero dependency Erlang | |
## | |
[rabbitmq_erlang] | |
name=rabbitmq_erlang | |
baseurl=https://packagecloud.io/rabbitmq/erlang/el/8/$basearch | |
repo_gpgcheck=1 |
View EmployeeWebSecurityConfig.java
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
package com.baeldung.springreactivebaeldungseries.lesson01; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.http.HttpMethod; | |
import org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity; | |
import org.springframework.security.config.web.server.ServerHttpSecurity; | |
import org.springframework.security.web.server.SecurityWebFilterChain; | |
@EnableWebFluxSecurity | |
public class EmployeeWebSecurityConfig { |
View Dockerfile-kotlin-app
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
FROM openjdk:11.0.15-oracle as build | |
RUN mkdir -p /app/source | |
COPY . /app/source | |
WORKDIR /app/source | |
RUN ./mvnw clean package -DskipTests | |
FROM openjdk:11.0.15-oracle as runtime | |
COPY --from=build /app/source/target/*.jar /app/app.jar | |
ENTRYPOINT ["java", "-jar", "/app/app.jar"] |
View TestSwitchStatement.java
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
package jvm.pablohdz.restapidesignpatterns; | |
public class TestSwitchStatement { | |
public void classicVersion(int number) { | |
switch (number) { | |
case 1: | |
callMethod("one"); | |
break; | |
case 2: |
View BasicEngineering.java
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
package jvm.pablohdz.restapidesignpatterns.example.template; | |
public abstract class BasicEngineering { | |
public final void completeCourse() { | |
// the course must be completed in order to pass | |
// 1. Math | |
// 2. Soft Skills | |
// 3. Special Paper | |
completeMath(); | |
completeSoftSkills(); |
View Student.java
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
package jvm.pablohdz.prototypepatternapi; | |
/** | |
* implementation of the Student class with copy constructor | |
* */ | |
public class Student { | |
int rollNo; | |
String name; | |
public Student(int rollNo, String name) { |
View return-catalogs-apple.json
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
{ | |
"httpStatus": 200, | |
"message": "get all catalogs success", | |
"messageParams": null, | |
"data": [ | |
{ | |
"id": "62322a33b5c8261e807088e5", | |
"providerMessageId": "bce05599-5c47-4ba5-b1c9-3337e19f3819", | |
"type": "form", | |
"conversationId": "622f624d760843000861b52b", |
View MockitoTestVerifyCalling.java
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
package org.example.observer; | |
import org.junit.jupiter.api.Test; | |
import org.mockito.Mockito; | |
class ConcreteSubjectTest { | |
@Test | |
void observersHandleEventsFromSubject() { | |
// given |
View CampaignController.java
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
package com.chatbot.bulkmessages.controller; | |
import java.io.IOException; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.http.HttpStatus; | |
import org.springframework.http.ResponseEntity; | |
import org.springframework.util.LinkedMultiValueMap; | |
import org.springframework.util.MultiValueMap; | |
import org.springframework.web.bind.annotation.CrossOrigin; |
NewerOlder