I hereby claim:
- I am ananasr on github.
- I am ananasr (https://keybase.io/ananasr) on keybase.
- I have a public key ASBzrDUg8738E1N8Nidm5TqMliWOe4Pn9s8Py7f9zemAGwo
To claim this, I am signing this object:
| --- | |
| apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: traefik-ingress-controller | |
| namespace: kube-system | |
| --- | |
| kind: DaemonSet | |
| apiVersion: extensions/v1beta1 | |
| metadata: |
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' | |
| Plugin 'vim-airline/vim-airline' | |
| Plugin 'vim-airline/vim-airline-themes' |
| #!/bin/bash | |
| # | |
| # Auteur : Hedi Nasr, Nicolas Carel | |
| # Version : 1.2 | |
| # Description : script de deplacement de vm | |
| # Prérequis: | |
| # - Hyperviseur: Xen | |
| # - LVM | |
| # - Nom des volumes: <nom-vm>-<disk|swap|data> | |
| # |
| #!/bin/bash | |
| # add-preseed-and-firmware-to-debian: Add non-free firmware and preseed to Debian install media | |
| # | |
| # Copyright (C) 2016-2017 Hedi Nasr <[email protected]> | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2 of the License, or | |
| # (at your option) any later version. |
| ECHO = printf | |
| CAT = cat | |
| RM = rm | |
| FIND = find | |
| UNAME = $(shell uname) | |
| CPPFLAGS = -ggdb -Wall -pedantic -ansi | |
| LDFLAGS = | |
| CC = g++ | |
| LD = g++ |
| """ | |
| UDP Flooder. | |
| This is a 'Dos' attack program to attack servers, you set the IP | |
| and the port and the amount of seconds and it will start flooding to that server. | |
| (inspire from http://hazardedit.com/forum/viewtopic.php?t=73) | |
| Usage : ./flood_udp <ip> <port> <second> | |
| """ | |
| import time | |
| import socket |
| # -*- coding: utf-8 -*- | |
| import socket | |
| from utils import readlines | |
| """ | |
| Client. | |
| """ | |
| # Création de la socket TCP | |
| sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python2.7 | |
| import sys | |
| #sys.path.insert(0, "../lib") # utile pour avoir la lib en locale | |
| import Leap | |
| class MyListener(Leap.Listener): | |
| def __init__(self): | |
| super(MyListener, self).__init__() | |
| self.controller = Leap.Controller() | |
| self.controller.add_listener(self) |