Skip to content

Instantly share code, notes, and snippets.

@tiga-tiga
tiga-tiga / add.ts
Created September 4, 2018 07:21
typescript
function hello(name : string){
console.log("Hello " + name);
}
var firstName = "bob";
hello(firstName);
hello(firstName + " marley");
function concat(a : string , b : string ) {
@tiga-tiga
tiga-tiga / pom.xml
Created May 23, 2018 13:16
quete Maven
<?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>
package fr.wildcodeschool.methodQuest;
public class SecretSentence {
public static String writeSecretSentence(String firstParameter, String secondParameter) {
String sentence = firstParameter + " s'incline face à " + secondParameter;
return sentence;
}
public static void main(String... args){
String movieName = "Injana Jones";
Boolean isWatched = false;
int year = 1989;
Double rate = 8.3;
System.out.println(movieName + "\n" + year);
}
Compte rendu du sprint 1
Product owner : georges sarr
Scrum master : Pascal Alberti
Equipe de développement: Perrine Morand, Pascal Alberti, Georges Sarr
Sprint 1: 21/03/18 au 28/03/18
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64)
--
-- Host: localhost Database: georges_wcs_tls
-- ------------------------------------------------------
-- 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 */;
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64)
--
-- Host: localhost Database: georges_s_wcs_tls
-- ------------------------------------------------------
-- 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 */;
@tiga-tiga
tiga-tiga / bonjour.sh
Created March 9, 2018 02:25
challenge shell
#!/bin/bash
if [ "$1" = "" ]
then
echo "Bonjour $USER"
else
echo "Bonjour $1"
fi