Skip to content

Instantly share code, notes, and snippets.

function love.load()
sprite = {}
sprite.charactor = love.graphics.newImage([[images/gripe.run_right.png]])
sprite.x = 300
sprite.y = 400
quads = {}
quads.right = {}
quads.left = {}
for j =1,8 do
quads['right'][j] = love.graphics.newQuad((j-1)*32,0,32,32,256,32)
@NietzscheX
NietzscheX / hulk.py
Created January 25, 2018 17:51 — forked from rambabusaravanan/hulk.py
HULK Python Script : Denial-of-Service (DoS) attack
# ----------------------------------------------------------------------------------------------
# HULK - HTTP Unbearable Load King
#
# this tool is a dos tool that is meant to put heavy load on HTTP servers in order to bring them
# to their knees by exhausting the resource pool, its is meant for research purposes only
# and any malicious usage of this tool is prohibited.
#
# author : Barry Shteiman , version 1.0
# ----------------------------------------------------------------------------------------------
import urllib2