Skip to content

Instantly share code, notes, and snippets.

View stephanBerger's full-sized avatar
💭
I may be slow to respond.

sBerger stephanBerger

💭
I may be slow to respond.
  • CAF des Bouches-du-Rhône
  • Marseille
View GitHub Profile
@stephanBerger
stephanBerger / index.html
Last active August 23, 2019 19:54
03 - Structurer une page HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="initial-scale=1.0">
<meta name="description" content="Integration Quest - Wild Code School">
<meta name="author" content="Stéphan BERGER">
@stephanBerger
stephanBerger / index.html
Last active August 23, 2019 19:54
05 - CSS : sélecteurs et propriétés
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Catch'em all!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<img class="hover-effect" src="http://images.innoveduc.fr/integration_parcours/css/css_selectors_props/hobbit-house.jpg" alt="Hobbit house">
@stephanBerger
stephanBerger / index.html
Created August 23, 2019 19:58 — forked from BastienSaulnier/index.html
Donne du style avec CSS - Wild Code School
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FindThePrecious.com</title>
<link href="style.css" rel="stylesheet" type="text/css" media="screen">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700&display=swap" rel="stylesheet">
@stephanBerger
stephanBerger / index.html
Created August 25, 2019 18:16
06 - CSS : box model
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Find the precious!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
public class CandyCount {
public static void main(String[] args) {
double money = 12.4;
double price = 1.2;
int candies = 0;
if (money > 0 && price > 0) {
@stephanBerger
stephanBerger / index.html
Last active September 1, 2019 18:20
07 - CSS : responsive web design
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<title>Find the precious!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
@stephanBerger
stephanBerger / index.html
Last active August 29, 2019 08:04
09 - Bootstrap : le système de grilles
<!doctype html>
<html lang="fr">
<head>
<title>le Grand Œil</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
@stephanBerger
stephanBerger / Senpai.java
Last active September 11, 2019 07:43
Java 01 : Le JDK
class Senpai{
public static void main(String[] args) {
//Affichage de la phrase Notice me Senpai
System.out.println("Notice me Senpai");
//Fin du programme
}
}
import sys
import math
# Auto-generated code below aims at helping you parse
# the standard input according to the problem statement.
n = int(input()) # Number of elements which make up the association table.
q = int(input()) # Number Q of file names to be analyzed.
mime_type_map = {}
@stephanBerger
stephanBerger / IndianaJones.java
Created August 30, 2019 08:47
Java 03 : Variables
class IndianaJones {
public static void main(String... args) {
String movieTitle = "Indiana Jones and the Last Crusade";
boolean isSeen = true;
int releaseYear = 1989;
float userRatings = 8.2f;