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
#foo { | |
text-align: center; | |
ul { | |
display: inline-block; | |
list-style: none; | |
margin: 0 auto | |
width: 100%; | |
} |
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
scala> val m = Map(1 -> 2) | |
m: scala.collection.immutable.Map[Int,Int] = Map(1 -> 2) | |
scala> m.get("1") | |
<console>:9: error: type mismatch; | |
found : java.lang.String("1") | |
required: Int | |
m.get("1") | |
^ |
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
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-shade-plugin</artifactId> | |
<version>1.5</version> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>shade</goal> | |
</goals> |
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
def convert(command: String, fileIn: String, fileOut: String): Unit = { | |
val input = new FileInputStream(fileIn) | |
val output = new FileOutputStream(fileOut) | |
val converter = new MagickConverter("(no name)", command) | |
try { | |
converter.process(input, output) | |
} finally { | |
input.close() | |
output.close() | |
} |
NewerOlder