Skip to content

Instantly share code, notes, and snippets.

chahine@chahine-ThinkPad-T440p:~$ ls
Bureau Images Public
Documents initiation-javascript-template snap
Downloads Modèles Téléchargements
eclipse-workspace Musique Vidéos
examples.desktop odyssey.html wild-project
gittest Programmes
chahine@chahine-ThinkPad-T440p:~$ ls .
Bureau Images Public
Documents initiation-javascript-template snap
chahine@chahine-ThinkPad-T440p:~/quetes/shell$ tree
.
├── fruits
│   ├── banane
│   ├── kiwi
│   ├── pamplemousse
│   ├── poire
│   └── pomme
├── legumes
│   ├── carotte
@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");
}
}
@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 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 / 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 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 / 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 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 / 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