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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChaVuAmOn4mPXT7HxSl8RHhqfP1mgWM8pkxeOd+r/uNmKMhLJxFt28t572CXLpSJPobu4PlJzWLX9lNvr3B82qdWvya6GV/XyK7Nh8bYFoK0aEhbINqan8Olz78phBYHYcssPPsRdXsShAOsqX20UUREjglTw5EbDCJ3AG26YzOE4ETkVygINfm4LuyUflq1B9AUcR6iD4Ys2o7eYchQo22vwbcxC2gxXJxE3Fck89E69MPsW5Y0UPEilpAvW1g2C5U28C7dZKMGxyPEIMmvUzzHdYFGNqBBUo8fkPLI8niHJkMSbmitAf5HaiqeCU2bn+IRciqooHft3Ucf65p+uVZoQ/+PRuJ+WRRfHa2zQZJPkC+cFbwZV5igs+plY+BU36G7e+/lZ3x74Af3NHsGClQA9kRxE3prQa3SP/1TuT3bTdb+aVYFQlKQWh2O/hAGhIjJWr9PElsdTsyRIABQkZjFUvRqH4aoIUofG30/DLf3CVy+NKMvmYOXkwQmcSG/GoJhixss5U6C+iLxZ/wAZJ6jhEyt4jjh0tfw3g/PrAw8vl4BZ5hksuOqqYEi2LzqS2MjFm0w5LOI4kwF1o9p4ax0tb58gI98LvSoqUOonrCEWL9nTxNg768GMHP0X0VrgSrUqknej5+8q+qNTmOgrL2R7fzDS6fJV9NjzVlSXXFw== pierre@arount |
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
#!/usr/bin/python3 | |
from tkinter import Tk, Label | |
WIDTH = 10 | |
HEIGHT = 10 | |
ant_cell = (0, 0) | |
# Init Tkinter window |
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
<?php | |
include_once('sql.php'); | |
include_once('request.php'); | |
include_once('response.php'); | |
header('Content-Type: application/json'); | |
$request = Request::auto_construct(); | |
$response = new Response($request); |
This file has been truncated, but you can view the full file.
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.5.59, for debian-linux-gnu (x86_64) | |
-- | |
-- Host: localhost Database: igdb | |
-- ------------------------------------------------------ | |
-- Server version 5.5.59-0+deb7u1 | |
/*!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 has been truncated, but you can view the full file.
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.5.59, for debian-linux-gnu (x86_64) | |
-- | |
-- Host: localhost Database: igdb | |
-- ------------------------------------------------------ | |
-- Server version 5.5.59-0+deb7u1 | |
/*!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
<?php | |
/* | |
Function that handle identification form, | |
Check if form is sent, then check if passed credentials are correct. | |
Returns two values: | |
1 form_sent, true if form was sent, else false | |
2 connected, true if credentials are good, else false | |
*/ | |
function handle_authentification_form($users) { |
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
#!/usr/env/bin python | |
import sys | |
import os | |
import time | |
import fcntl | |
class BreakableInput(object): | |
''' | |
Breakable input() implementation. |