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
4Course | |
83% | |
Android | |
Apollo | |
Aurora | |
B52 Rock Lobster | |
Baikal | |
Bali | |
Bali | |
Bamboo |
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
// JDK8 sample (not working) with java[c] 1.8.0-ea downloaded on the 06 of february, 2013 | |
import java.util.*; | |
public class Main | |
{ | |
public static void main(String[] args){ | |
List<String> list = new ArrayList<>(); | |
list.add("pof"); | |
list.add("pouf"); |
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
[INFO] Installing /root/rpm-maven-plugin/pom.xml to /root/rpm-maven-plugin/target/local-repo/org/codehaus/mojo/rpm-maven-plugin/2.1-alpha-3-SNAPSHOT/rpm-maven-plugin-2.1-alpha-3-SNAPSHOT.pom | |
[INFO] Installing /root/rpm-maven-plugin/target/rpm-maven-plugin-2.1-alpha-3-SNAPSHOT.jar to /root/rpm-maven-plugin/target/local-repo/org/codehaus/mojo/rpm-maven-plugin/2.1-alpha-3-SNAPSHOT/rpm-maven-plugin-2.1-alpha-3-SNAPSHOT.jar | |
[INFO] [invoker:run {execution: integration-test}] | |
[INFO] Building: rpm-disable/pom.xml | |
[INFO] ..FAILED (18.9 s) | |
[INFO] The build exited with code 1. See /root/rpm-maven-plugin/target/it/rpm-disable/build.log for details. | |
[INFO] Building: rpm-reactor/pom.xml | |
[INFO] ..FAILED (16.3 s) | |
[INFO] The build exited with code 1. See /root/rpm-maven-plugin/target/it/rpm-reactor/build.log for details. | |
[INFO] Building: rpm-2/pom.xml |
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 | |
people=participants.csv | |
clear | |
echo | |
echo | |
echo | |
echo | |
figlet " Qui va gagner ?" |
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.util.*; | |
import java.lang.management.*; | |
public class WhichGC | |
{ | |
public static void main(String[] args) throws Exception | |
{ | |
int seconds = 60; | |
if(args.length>=1) | |
{ |
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
Index: content/markdown/project-roles.md | |
=================================================================== | |
--- content/markdown/project-roles.md (revision 1510429) | |
+++ content/markdown/project-roles.md (working copy) | |
@@ -54,7 +54,7 @@ | |
we will welcome you with open arms… (and if we don't welcome you | |
with open arms, please advise the [Project management committee][3] | |
who are responsible for ensuring that the community is a healthy | |
-one) | |
+one). |
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
<build> | |
<pluginManagement> | |
<plugin> | |
<groupId>org.eclipse.m2e</groupId> | |
<artifactId>lifecycle-mapping</artifactId> | |
<version>1.0.0</version> | |
<configuration> | |
<lifecycleMappingMetadata> | |
<pluginExecutions> | |
<pluginExecution> |
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
[alias] | |
backup = "!f(){ git add -A . && git ci -q -m \"WIP backup\" && commit=`git show HEAD|head -1` && git reset HEAD~ && echo \"Backup OK: $commit (or use git reflog)\"; };f" |
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
// Legacy style | |
@SomeAnnotations({ | |
@SomeAnnotation(..a..), | |
@SomeAnnotation(..b..), | |
@SomeAnnotation(..c..), | |
}) | |
public class SomeClass { | |
... | |
} | |