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
| List Images: docker images | |
| List Dangling Images: docker images -f dangling=true | |
| Remove Image: docker rmi Image <IMAGE> | |
| Remove Dangling Images: docker rmi $(docker images -f dangling=true -q) | |
| List Containers: docker ps -a | |
| Remove Container: docker rm <ID_OR_NAME> | |
| List Dangling Volumes: docker volume ls -f dangling=true | |
| Remove Dangling Volumes: docker volume rm $(docker volume ls -f dangling=true -q) |
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.guilherme.miguel.failsafe; | |
| import lombok.extern.slf4j.Slf4j; | |
| import net.jodah.failsafe.Failsafe; | |
| import net.jodah.failsafe.RetryPolicy; | |
| import org.springframework.boot.CommandLineRunner; | |
| import org.springframework.boot.SpringApplication; | |
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.core.task.AsyncTaskExecutor; |
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.guilherme.miguel.retry; | |
| import lombok.extern.slf4j.Slf4j; | |
| import org.springframework.boot.CommandLineRunner; | |
| import org.springframework.boot.SpringApplication; | |
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.retry.RetryCallback; | |
| import org.springframework.retry.RetryContext; | |
| import org.springframework.retry.RetryListener; |
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.guilherme.miguel.vavr; | |
| import com.guilherme.miguel.vavr.exception.AnotherException; | |
| import com.guilherme.miguel.vavr.exception.OtherException; | |
| import com.guilherme.miguel.vavr.exception.SomeException; | |
| import io.vavr.control.Try; | |
| import lombok.extern.slf4j.Slf4j; | |
| import java.util.stream.IntStream; |
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.guilherme.miguel; | |
| import io.vavr.control.Try; | |
| import lombok.extern.slf4j.Slf4j; | |
| import java.util.List; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| import java.util.concurrent.Future; | |
| import java.util.stream.Collectors; |
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.guilherme.miguel; | |
| import io.vavr.control.Try; | |
| import lombok.extern.slf4j.Slf4j; | |
| import org.springframework.boot.CommandLineRunner; | |
| import org.springframework.boot.SpringApplication; | |
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.core.task.AsyncTaskExecutor; | |
| import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; |
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
Show hidden characters
| { | |
| "color_scheme": "Packages/User/SublimeLinter/primer.dark (SL).tmTheme", | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_size": 12, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "shift_tab_unindent": true, | |
| "show_full_path": true, |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>X-editable starter template</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link href="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.0/jquery-editable/css/jquery-editable.css" rel="stylesheet" /> | |
| <link href="//vitalets.github.io/x-editable/assets/poshytip/tip-yellowsimple/tip-yellowsimple.css" rel="stylesheet"> |
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
| public Map<String, String> extractRecipients(String content) { | |
| content = StringEscapeUtils.unescapeXml(content); | |
| Map<String, String> recipients = new HashMap<>(); | |
| Pattern pattern = Pattern.compile("(.*?)<([^>]+)>\\s*;?,?", Pattern.DOTALL); | |
| Matcher matcher = pattern.matcher(content); | |
| while(matcher.find()) { | |
| String name = matcher.group(1).replaceAll("[\\n\\r\"]+", "").trim(); | |
| String email = matcher.group(2).replaceAll("[\\n\\r\\s\"]+", "").trim(); | |
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
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.your.company</groupId> | |
| <artifactId>test-artifact</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <java.version>1.7</java.version> |