Skip to content

Instantly share code, notes, and snippets.

@wilderwith
wilderwith / Scrum Quest.png
Created November 14, 2019 16:32
Scrum Quest
\89PNG

\00\00\00
IHDR\00\00@\00\00\84\00\00\00\F9M\FD\A2\00\00\00sBIT|d\88\00\00\00tEXtSoftware\00gnome-screenshot\EF\BF>\00\00 \00IDATx\9C\EC\DDw\98T\D5\FD\F8\F1\F7\ADӷ\B1KoR\A5\89\80T \A0X\C0ر\C6\A3\BFD\93\A8\89[\A2K\8A~cTL\EC-\A8`GP:ҥw\A4\B3\B0\BD\CE\EC\CC-\E7\F7\C7l/\B0\F4\CE\EByx؝\B9s\EE9g\EE̞s?\A7(\D7\y\89@\92$I\92$I\92$I\92$I\92$I\92$\E9\A2 !\E3\92$I\92$I\92$I\92$I\92$I\92$\9DXd\00D\92$I\92$I\92$I\92$I\92$I:f\84ض\8Da\8F\B9\AE\8B\E3\B8\86~ s&\EFd\00D\92$I\92$I\92$I\92$I\92$I:\EA\84df吓\9B\8FMSi\DE,\8DX\CC";;\F8|^ڴj!!\D2A\D1e\FCC\92$I\92$I\92$I\92$I\92$I:ڲ\B2s)*
s\FF\FD\92\9EޝiӾ\E3\ED\B7\DE\E0\8E;\FF]\BBv\E3\AF}\86\8C=Y\B4i\DD\E2\E7V:\9D\F43@\CA˯(\CA1\CEIu\DD<&>\CB b\AC\8DƎq\8E\8F\A3]ߍ\F5\FD\95$I\92$I:Y !\AA\B5\D1d;M\92$I\92$\E9䕗W\C0\ED\BF\BE\83n\FC%\00g\F4=\93M7\B2u\DBV~{\D7\EFP\85m۶\F2\CF\FC\8D\93\FD>\F6\B14\F4\EC\F3p\D64M\AB\F6x,eΜ,\F8q\CE1\CA\D9\FE5\CA\00ȁv\8A\A6%\84\C0u]l\C7AQtMCU\D5C\CF\FC!\BA\CCP9\AB4\8C[\98
\E5\E5\D5\E0G\AF\9FO-\F7\D8f\F08\8
@wilderwith
wilderwith / Quete java 5
Created October 28, 2019 10:07
Quete java 5
public class Decipherer
{
public static void main(String[] args)
{
System.out.println(dechiffre("0@sn9sirppa@#?ia'jgtvryko1"));
System.out.println(dechiffre("q8e?wsellecif@#?sel@#?setuotpazdsy0*b9+mw@x1vj"));
System.out.println(dechiffre("aopi?sedohtém@#?sedhtmg+p9l!"));
}
@wilderwith
wilderwith / Quete algo
Created October 28, 2019 08:42
Quete algo
Début acheterBonbons (réel argent, réel prix)
Si argent < 0 OU prix > argent
retourner 0
Sinon
entier bonbons ← 0
Tant que (argent - prix) > 0
bonbons ← bonbons + 1
argent ← argent - prix
Fin Tant que
@wilderwith
wilderwith / Quete java 4
Created October 23, 2019 22:08
Quete java 4
class Movies{
public static void main(String[] args) {
String[] movies =
{"Indiana Jones and the Kingdom of the Crystal Skull", "Indiana Jones and the Last Crusade","Indiana Jones and the Temple of Doom"
};
String[][] actors={
@wilderwith
wilderwith / projet
Created October 23, 2019 12:26
projet
public class StercketBattle {
public static String Sterckets(String[] args) {
public class Stercket {
// Attributs
private String name;
private int attackScore;
@wilderwith
wilderwith / Quete java 3
Created October 22, 2019 22:47
Quete java 3
public class Quetejva {
public static void main(String[] arg){
String title = "Indiana Jones and the Last Crusade";
boolean vu = false;
int dateDeRealisation = 1989;
float note = 8.2f;
System.out.println(title);
System.out.println(vu);
System.out.println(dateDeRealisation);
System.out.println(note);
@wilderwith
wilderwith / Faire sa veille techno
Created October 21, 2019 22:57
Faire sa veille techno
le css
https://2019.stateofcss.com/technologies/
" ce site ressance différentes techno concerant le css: les desuetes comme les nouvelles."
le java
https://www.alice.org/
"Alice est une extension qui permet de faire des animations 3d avec java"
L'ux
https://www.circulardesignguide.com/ https://newflux.fr/2018/03/05/circular-design-detail/
@wilderwith
wilderwith / Quete Java 2
Last active October 21, 2019 20:38
Quete Java 2
public class CandyCount {
public static void main(String[] a) {
double money = 12.4;
double price = 1.2;
int candies = 0;
if (money > 0 && price >= 0) {
while( money-price >= 0) {
candies = candies +1;
money = money - price;
}
@wilderwith
wilderwith / css flexbox
Created October 21, 2019 11:46
xss flexbox
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find the precious!</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Big+Shoulders+Display&display=swap" rel="stylesheet">
</head>
@wilderwith
wilderwith / Quete Java 1
Created October 21, 2019 09:09
Quete Java 1
class Sanpai{
public static void main(String[] args) {
// afficher Hello World! dans le terminal
System.out.println("Notice me Senpai");
}
}