This guide will get you started using Spark on Heroku/Cedar. Spark is basically a clone of Sinatra for Java. 'Nuff said.
Create a single Java main class in src/main/java/HelloWorld.java:
:::java
import static spark.Spark.*;
import spark.*;
| package com.example | |
| import groovy.util.logging.Slf4j | |
| import org.springframework.boot.SpringApplication | |
| import org.springframework.boot.autoconfigure.EnableAutoConfiguration | |
| import org.springframework.context.ApplicationContext | |
| import org.springframework.context.annotation.ComponentScan | |
| import org.springframework.context.annotation.Configuration | |
| import org.springframework.context.annotation.Import | |
| import org.springframework.web.servlet.config.annotation.EnableWebMvc |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
| import android.support.annotation.NonNull; | |
| import android.support.annotation.Nullable; | |
| import android.support.v4.util.ArrayMap; | |
| import java.io.IOException; | |
| import java.util.Collections; | |
| import java.util.Map; | |
| import java.util.regex.Matcher; | |
| import java.util.regex.Pattern; |
| @RequiresApi(Build.VERSION_CODES.P) | |
| fun StrictMode.VmPolicy.Builder.detectAllExpect(ignoredViolationPackageName: String, justVerbose: Boolean = true): StrictMode.VmPolicy.Builder { | |
| return detectAll() | |
| .penaltyListener(Executors.newSingleThreadExecutor(), StrictMode.OnVmViolationListener | |
| { | |
| it.filter(ignoredViolationPackageName, justVerbose) | |
| }) | |
| } |