Skip to content

Instantly share code, notes, and snippets.

View ilyeshammadi's full-sized avatar
🚀

Ilyes Hammadi ⵉⵍⵖⴻⵙ ilyeshammadi

🚀
  • Tiqets
  • Amsterdam, Netherlands
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<title>React is Awesome</title>
</head>
<body>
<div id="app"></div>
</body>
</html>
@ilyeshammadi
ilyeshammadi / 0_reuse_code.js
Created March 25, 2017 21:24
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
#!/usr/bin/env python
import os, sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "root.settings")
# Add the lib/ directory to the system path
sys.path.append("lib")
from django.core.management import execute_from_command_line
@ilyeshammadi
ilyeshammadi / Main.java
Created October 9, 2015 23:54
et Voila the challenge is complited B|
import java.util.Objects;
public class Main {
public static void main(String[] args) {
System.out.println(countCouple("abc", "axc"));
}
public static int countCouple(String firstWord, String secondWord) {
int count = 0;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Ilyes Hammadi on 04/05/2015.
*/
public class Adherant extends Personne {
private int numeroAdherant;
private List<ArticleMediatheque> articles = new ArrayList<ArticleMediatheque>();
package com.company;
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
private Scanner clavier = new Scanner(System.in);
public static void main(String[] args) {
package com.company;
import java.awt.*;
public class Main {
public static void main(String[] args) {
// write your code here
Cercle c1 = new Cercle(new Point(1, 3), 1);
package com.company;
import java.awt.*;
import static java.lang.Math.*;
/**
* Created by Ilyes Hammadi on 22/04/2015.
*/
public class Cercle {
Point centre;
@ilyeshammadi
ilyeshammadi / Main.java
Created March 20, 2015 23:31
Bonne nuit
package com.company;
public class Main {
public static void main(String[] args) {
System.out.println("bonne nuit ");
}
}
@ilyeshammadi
ilyeshammadi / Main.java
Created March 10, 2015 20:14
Voila bon courage Nis
package com.company;
public class Main {
public static void main(String[] args) {
// write your code here
Integer a = new Integer(5);
Integer c = new Integer(3);