Creer les VMs sous virtualbox / vmware + installer debian dessus:
- DHCP
- webserver
- employee
| PIECES = { | |
| 'q': { | |
| 'name': 'Queen', | |
| 'moves': [ | |
| (0, 1), | |
| (1, 1), | |
| (1, 0) | |
| ], | |
| 'isdir': True, | |
| 'ismul': True |
| #!/usr/bin/python3 | |
| from random import sample | |
| voisines1 = [[1, 2], [0, 2, 4], [0, 1, 3, 5], [2, 4], [1, 3, 5], [2, 4]] | |
| voisines2 = [[1, 2], [0, 2, 4], [0, 1, 5], [2, 4], [1, 5], [2, 4, 3]] | |
| voisines3 = [[1, 2], [0, 2, 4], [0, 1, 5], [2, 5], [1, 5], [2, 4, 3]] | |
| voisines4 = [[1, 2], [0, 2, 4], [0, 1, 5], [2, 4], [1, 5], [2, 4]] | |
| def bad_solution(neightbors, timer=50): | |
| ''' |
| " URL: http://vim.wikia.com/wiki/Example_vimrc | |
| " Authors: http://vim.wikia.com/wiki/Vim_on_Freenode | |
| " Description: A minimal, but feature rich, example .vimrc. If you are a | |
| " newbie, basing your first .vimrc on this file is a good choice. | |
| " If you're a more advanced user, building your own .vimrc based | |
| " on this file is still a good idea. | |
| "------------------------------------------------------------ | |
| " Custom | |
| execute pathogen#infect() |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: flexget | |
| # Required-Start: $local_fs $remote_fs $network | |
| # Required-Stop: $local_fs $remote_fs $network | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start or stop the flexget daemon | |
| # Description: Enable service flexget | |
| ### END INIT INFO |
| 1033edge.com | |
| 11mail.com | |
| 123.com | |
| 123box.net | |
| 123india.com | |
| 123mail.cl | |
| 123qwe.co.uk | |
| 150ml.com | |
| 15meg4free.com | |
| 163.com |
Votre site se trouve a l'adresse suivante : 138.68.128.66/~prenom-nom avec prenom-nom le prenom et le nom du chef de groupe (exemple 138.68.128.66/~luca-sardellitti)
Pour vous connecter il va falloir utiliser le terminal.
WACi3lock| // Jyt is a REPL for C++ | |
| // You can write code interactively | |
| // Highlight some code and press alt-enter to execute it | |
| // For example: | |
| auto x = "hello world"; | |
| // Now you can query the value in the terminal on the right | |
| // e.g. "x" |