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.wildcodeschool; | |
| public class MyFirstClass { | |
| public static void main(String[] args) { | |
| System.out.println("Hello world"); | |
| } | |
| } |
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
| lvl 1 : <script>alert()</script> | |
| lvl 2 : <img src='x' onerror='alert()'> | |
| lvl 3 : 1' onerror='alert();// | |
| lvl 4 : 3'**alert());// | |
| lvl 5 : https://xss-game.appspot.com/level5/frame/signup?next=javascript:alert() | |
| lvl6 : https://xss-game.appspot.com/level6/frame#data:text/plain,alert('xss') |
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
| * { | |
| box-sizing: border-box; | |
| } | |
| body { | |
| padding: 0; | |
| margin: 0; | |
| font-family: roboto, sans-serif; | |
| } | |
| h1 { | |
| padding: 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
| const instructors = [ | |
| { | |
| name: 'John', | |
| availability: 'all', | |
| specialities: ['Javascript', 'Python', 'C++'] | |
| }, | |
| { | |
| name: 'Mary', | |
| availability: 'weekend', | |
| specialities: ['Javascript', 'Ruby', 'C++'] |
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
| const mysteriousString = `iu@zfiz)!uzqzf!snoi??alutargnocze&gfuzyafzygfzmgfu%f`; | |
| console.log('step 0 : ', mysteriousString); | |
| const step1 = mysteriousString.split(''); | |
| console.log('step 1 : ', step1); | |
| // step2 : get a slice of the array : take elements from the 15th included to the 32nd excluded (remember indexes start at 0 !) | |
| const step2 = step1.slice(14,31); | |
| console.log('step 2 : ', step2); |
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="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="Présentation du designer graphique Etienne Robial"> | |
| <title>Etienne Robial</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> |