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
| import java.util.List; | |
| import java.util.concurrent.CompletableFuture; | |
| import java.util.concurrent.TimeUnit; | |
| public class TestCompletableFuture { | |
| public static void main(String[] args) { | |
| CompletableFuture<Void> task1 = CompletableFuture.runAsync(() -> System.out.println("task 1")); | |
| CompletableFuture<Void> task2 = CompletableFuture.runAsync(() -> System.out.println("task 2")); | |
| CompletableFuture<Void> task3 = CompletableFuture.runAsync(() -> { |
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
| async function redesignFreshdeskWidgetLauncher() { | |
| const frame = await waitFor('#launcher-frame', document); | |
| const frameHead = frame.contentDocument.getElementsByTagName("head")[0]; | |
| const new_style_element = document.createElement("style"); | |
| new_style_element.textContent = ".launcher-button, .launcher-button:hover, .launcher-button:active { background: none; background-color: #8CC448 !important; transition: none !important;animation: none !important;}" | |
| frameHead.appendChild(new_style_element); |
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
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import jakarta.mail.Flags; | |
| import jakarta.mail.Folder; | |
| import jakarta.mail.Message; | |
| import jakarta.mail.MessagingException; | |
| import jakarta.mail.Session; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import java.net.HttpURLConnection; |
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
| import java.io.IOException; | |
| import java.net.InetSocketAddress; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.stream.Stream; |
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
| [Unit] | |
| Description=Start Java Application | |
| After=network.target | |
| StartLimitIntervalSec=0 | |
| [Service] | |
| Type=simple | |
| Restart=on-failure | |
| RestartSec=1 | |
| User=root |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <include resource="org/springframework/boot/logging/logback/defaults.xml" /> | |
| <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> | |
| <encoder class="net.logstash.logback.encoder.LogstashEncoder"> | |
| <customFields>{"application":"app-name"}</customFields> | |
| </encoder> | |
| </appender> |
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
| import java.io.IOException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| import com.itextpdf.text.DocumentException; | |
| import com.itextpdf.text.Rectangle; | |
| import com.itextpdf.text.pdf.PdfDictionary; | |
| import com.itextpdf.text.pdf.PdfName; | |
| import com.itextpdf.text.pdf.PdfNumber; | |
| import com.itextpdf.text.pdf.PdfReader; |
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
| import io.undertow.Undertow; | |
| import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer; | |
| import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer; | |
| import org.springframework.boot.context.embedded.undertow.UndertowBuilderCustomizer; | |
| import org.springframework.boot.context.embedded.undertow.UndertowEmbeddedServletContainerFactory; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.context.annotation.Configuration; | |
| /** | |
| * Configuration class to enable HTTP listener (when HTTPS is enabled in Spring Boot we need to add support to HTTP manually). |
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
| import java.io.IOException; | |
| import java.nio.file.DirectoryStream; | |
| import java.nio.file.FileVisitResult; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; | |
| import java.nio.file.SimpleFileVisitor; | |
| import java.nio.file.attribute.BasicFileAttributes; | |
| import java.util.concurrent.atomic.AtomicInteger; |
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
| DECLARE | |
| flag NUMBER; | |
| BEGIN | |
| flag:=127; | |
| while flag < 13892 loop | |
NewerOlder