This file contains hidden or 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
[package] | |
name = "ridiculous_calculator" | |
version = "0.1.0" | |
authors = ["Laurent Bernabe <[email protected]>"] | |
license = "MIT" | |
[dependencies] | |
[dependencies.gtk] | |
version = "0.5.0" |

This file contains hidden or 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
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64) | |
-- | |
-- Host: localhost Database: laurent_b_wcs_bidart | |
-- ------------------------------------------------------ | |
-- Server version 5.7.21-0ubuntu0.16.04.1 | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains hidden or 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
package fr.wildcodeschool.unittesting; | |
public class StringUtils { | |
private static final String ALL_VOWELS = "aeiouyAEIOUY"; | |
/** | |
* Renvoie la chaine formée par les voyelles d'une chaine de caractères | |
* @return Chaine avec uniquement des voyelles | |
*/ |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>fr.wildcodeschool.quetes</groupId> | |
<artifactId>maveninstall</artifactId> | |
<version>1.0</version> |
This file contains hidden or 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
package com.wildcodelolo.wildcodejones2; | |
public class SecretSentence { | |
public String writeSecretSentence(String subjectInclining, String subjectMajesty){ | |
return subjectInclining + " s'incline face à " + subjectMajesty; | |
} | |
public static void main(String[] args) { | |
SecretSentence secrets = new SecretSentence(); |
This file contains hidden or 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
public class Main { | |
public static void main(String[] args) { | |
String filmNameVO = "Indiana Jones and the Last Crusade"; | |
boolean haveISeenThisFilm = true; | |
int releaseYearInBoxOffice = 1989; | |
float filmAverageRating = 8.3f; | |
System.out.println("Film name in VO: "+filmNameVO); | |
System.out.println("Have I seen this film ? "+haveISeenThisFilm); | |
System.out.println("Film release year in Box Office : "+releaseYearInBoxOffice); |
This file contains hidden or 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
1603 cd mystery/ | |
1604 cat crimescene | grep CLUE | |
1605 head -n 20 people | |
1606 cat people | grep Annabel | |
1607 cat people | grep Annabel | grep F | |
1608 cat people | grep Annabel | grep -e "\bF" | |
1609 cat people | grep Annabel | grep -e "\bF\b" | |
1610 man head | |
1611 head -n streets/Hart_Place | tail -n 1 | |
1612 head -n 40 streets/Hart_Place | tail -n 1 |
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Oeil de Sauron</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" | |
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
<link rel="stylesheet" href="./css/styles.css"> |
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Captured fellow</title> | |
<link rel="stylesheet" href="./styles/main.css" /> | |
</head> | |
<body> | |
<div class="reward"> | |
<img src="./images/gandalf.png" alt="fellow_photo" /> |