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
Kamarádům, kteří mají v Německu rodinného příslušníka nebo přátele - určeno pro něj, prosím předejte (a přeložte): | |
Ahoj, | |
tohle je mail ode mne, nepřevzal jsem ho z žádného návodu a pokud ho bude chtít někdo šířit, ať tak bez váhání udělá a tuto větu smaže nebo pozmění. | |
S obavami, vztekem a pocitem bezmoci sleduji - vedle samotné války - i to, jak se Německo stává osamocené v postoji k odstřižení Ruska od SWIFTu. | |
Argument o "spočítání dopadů na německou ekonomiku" vypadá na první pohled pragmaticky a rozvážně. | |
S ubíhajícím časem ale čím dál více připomíná přizdisráčství, které naše země poznala z opačné strany při Mnichovu 1938. | |
Zbytečně v české společnosti podrývá důvěru v Německo jako souseda i v celou EU. |
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 build -t tomaszalusky/trig-example . | |
# docker run -d --name trig-example tomaszalusky/trig-example | |
# docker exec -it trig-example /bin/bash psql -U postgres | |
FROM postgres:9.6 | |
WORKDIR /docker-entrypoint-initdb.d | |
RUN apt-get update && \ | |
apt-get install vim -y && \ |
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 build -t tomaszalusky/xmin-example . | |
# docker run -d --name xmin-example tomaszalusky/xmin-example | |
# docker exec -it xmin-example /bin/bash -c ./test.sh | |
FROM postgres:9.6.11 | |
WORKDIR /docker-entrypoint-initdb.d | |
RUN apt-get update && \ | |
apt-get install vim -y && \ |
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 com.fasterxml.jackson.core.JsonProcessingException; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
import com.fasterxml.jackson.databind.SerializationFeature; | |
import com.fasterxml.jackson.datatype.joda.JodaModule; | |
import org.joda.time.LocalDate; | |
public class Main { | |
static class Foo { | |
String name; |
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 sun.misc.*; | |
public class Main { | |
public static void main(String[] args) { | |
Signal signal = new Signal("USR2"); | |
System.out.println(signal); | |
} | |
} |
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
javascript:(function(){Array.from(document.getElementsByTagName("textarea")).forEach(function(el){el.parentNode.style.display='block';el.parentNode.style.position='relative';el.parentNode.parentNode.previousElementSibling.style.width='40px';});})(); |
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 com.google.common.collect.*; | |
import java.util.HashSet; | |
import java.util.Map; | |
import java.util.Set; | |
import static com.google.common.collect.ImmutableSet.toImmutableSet; | |
import static java.util.stream.Collectors.*; | |
public class Mapping { |
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.lang.reflect.*; | |
import java.util.*; | |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
public class AnnotationOnTypeArgument { |
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.io.IOException; | |
import org.apache.logging.log4j.core.appender.AbstractManager; | |
import org.apache.logging.log4j.core.appender.rolling.DefaultRolloverStrategy; | |
import org.apache.logging.log4j.core.appender.rolling.RollingFileManager; | |
import org.apache.logging.log4j.core.appender.rolling.RolloverDescription; | |
import org.apache.logging.log4j.core.appender.rolling.RolloverDescriptionImpl; | |
import org.apache.logging.log4j.core.appender.rolling.RolloverStrategy; | |
import org.apache.logging.log4j.core.appender.rolling.action.AbstractAction; | |
import org.apache.logging.log4j.core.appender.rolling.action.Action; |
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 anno; | |
import static java.util.stream.Collectors.toList; | |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
import java.lang.reflect.AnnotatedArrayType; | |
import java.lang.reflect.AnnotatedElement; |
NewerOlder