기본 콘텐츠로 건너뛰기

8월, 2017의 게시물 표시

Ted : Why good leaders make you feel safe

Word : congressional  [kən | greʃənl]    : 의회의 a column of American : troop  [tru:p] : 병력, 군대 elders amongst  [əmʌ́ŋkst] : ~사이에 pull out : 끌어내다 / 옆으로 빠져나가다 sergeant  [ | sɑ:rdƷənt]  : 병장 comrade  [ | kɑ:mrӕd]   : 동무 medevac   [ | medɪvӕk] : 헬기 수송 by sheer coincidence : 완전한 우연이 일치 bend over :  몸을 앞으로 숙이다 Sentence : There's man by the name of Captain william swenson who recently was awarded the congressional medal of honor for his action on September 8, 2009 A column of American and afghan troops were making their way through a part of Afghanistan to help protect a group of goverment officials who would be meeting with some local village elders Captain Swenson was recognized for running into live fire to rescue the wounded and pull out the dead A comrade were making their way to a medevac helicopter What was remarkable about this day is One of the medevac medics happened to have a GoPro camera on his helmet...

Caffeine Cache

Caffeine is a Java 8 rewrite of Guava’s cache and will supersede the Guava support in Spring Boot 2.0.    compile("org.springframework.boot:spring-boot-starter-cache") compile("com.github.ben-manes.caffeine:caffeine") @EnableCaching @Configuration @Bean public CacheManager caffeineCacheManager() {     SimpleCacheManager cacheManager = new SimpleCacheManager();     List<CaffeineCache> caches = Lists.newArrayList();     caches.add(new CaffeineCache(Caches.getCategories.name()             , Caffeine.newBuilder().recordStats()                                     .expireAfterWrite(DEFAULT_TTL, TimeUnit.MINUTES)                              ...