@binout
https://github.com/binout
Write a blog, change the world.One person at a time
Choisir un language de balisage
léger pour faciliter l’écriture des articles :
SOLUTION : ASCIIDOC !
= Hello, Jug Summer Camp!
Benoit Prioux <benoit.prioux@gmail.com>
Introduction à http://asciidoc.org[AsciiDoc].
== Première Section
* foo
* bar
== Deuxième Section
1. item 1
2. item 2
TIP: http://asciidoctor.org/docs/user-manual
= Java 8 et Streams
Benoit Prioux <benoit.prioux@gmail.com>
== Introduction
La version *8* du langage `Java` est sortie le _18 mars 2014_, 17 ans après la première version.
== Les Streams
[source, java]
----
public class PersonRepository {
public List<Person> getPersonOlderThan(int age) {
return all()
.stream()
.filter(p->p.age()>age)
.collector(Collectors.toList());
}
}
----
vrai
développeurOn installe sa forge pour son blog … mais :
rapide
http://wordpress.com … mais :
Et si on utilisait le même hébergement que le code.
SOLUTION : GITHUB ? avec GITHUB PAGES
une application web pour faire un blog sur Github
Pour écrire mes articles :
/