@startuml
アリス -> ボブ: Authentication Request
ボブ --> アリス: Authentication Response
アリス -> ボブ: Another authentication Request
アリス <-- ボブ: another authentication Response
@enduml
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 assertk.Assert | |
import assertk.all | |
import assertk.assertThat | |
import assertk.assertions.contains | |
import assertk.assertions.containsExactly | |
import assertk.assertions.hasSize | |
import assertk.assertions.isEqualTo | |
import assertk.assertions.isLessThan | |
import assertk.assertions.isTrue | |
import assertk.assertions.support.expected |
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
node_modules/ | |
_book/ | |
assets/ |
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
日付: 2017年10月25日 17:08 | |
件名: Steve Maddenでございます。 | |
ミヤモト様 | |
お世話になっております。 | |
IT業界に特化したヘッドハンター、Steve Maddenと申します。 | |
度々のご連絡、大変失礼いたします。 | |
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 static org.hamcrest.MatcherAssert.*; | |
import static org.hamcrest.Matchers.*; | |
import java.util.List; | |
import java.util.Locale; | |
import java.util.Map; | |
import lombok.AccessLevel; | |
import lombok.AllArgsConstructor; | |
import lombok.Data; |
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
apply plugin: 'war' | |
configurations { jetty9 } | |
dependencies.jetty9 'org.eclipse.jetty:jetty-ant:9.0.2.v20130417' | |
ant { | |
taskdef(name: 'jettyRun', classname: 'org.eclipse.jetty.ant.JettyRunTask', classpath: configurations.jetty9.asPath) | |
taskdef(name: 'jettyStop', classname: 'org.eclipse.jetty.ant.JettyStopTask', classpath: configurations.jetty9.asPath) | |
} |
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
#!/bin/bash | |
# Crowd startup script | |
#chkconfig: 2345 80 05 | |
#description: Crowd | |
# Based on script at http://www.bifrost.org/problems.html | |
RUN_AS_USER=ec2-user | |
CATALINA_HOME=/mnt/atlassians/crowd/apache-tomcat | |
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
public final class Immutable { | |
private final String message; | |
public Mutable(String message) { | |
this.message = message; | |
} | |
public void hello() { | |
System.out.println(message); |
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
public class Stateful { | |
private String message = "Hello, world!"; | |
public void setMessage(String message) { | |
this.message = message; | |
} | |
public void hello() { | |
System.out.println(message); |
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
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" dir="ltr" | |
xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>wicket-snippet</title> | |
</head> | |
<body> | |
<ul> |
NewerOlder