Skip to content

Instantly share code, notes, and snippets.

View AnimeshShaw's full-sized avatar
🏠
Working from home

Animesh Shaw AnimeshShaw

🏠
Working from home
View GitHub Profile
@AnimeshShaw
AnimeshShaw / Img2Ascii.java
Created June 15, 2015 10:59
Image to Ascii Art in Java
import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import javax.imageio.ImageIO;
public class Img2Ascii {
@AnimeshShaw
AnimeshShaw / PyGame_Flying_SuperTux_Animation.py
Last active December 20, 2023 13:18
PyGame Flying Animation in Python
'''
Created on 16-Nov-2014
@author: Psycho_Coder
'''
import random
import sys
import pygame
@AnimeshShaw
AnimeshShaw / GoogleUrlShortener.py
Created April 13, 2016 15:40
A python script to shorten or expand urls using Google Url Shortener API.
import json
import requests
import argparse
import sys
class GUrlShorten():
def __init__(self, key):
self.API_KEY = key
@AnimeshShaw
AnimeshShaw / Snowfall_Animation_Blinking_PyGame.py
Last active January 25, 2022 20:24
Blinking Snowfall Animation using PyGame
"""
@author : Psycho_Coder
For Details : http://www.rawcoders.com/Thread-Python-Blinking-Snowfall-Animation-using-PyGame
"""
import os
import random
import sys
import pygame
@AnimeshShaw
AnimeshShaw / brute-finger-listusers.sh
Created June 23, 2019 12:24
A Simple bash script to list all users using finger service on *nix via bruteforce.
#!/bin/bash
input="/usr/share/metasploit-framework/data/wordlists/unix_users.txt"
if [ "$1" == "" ]; then
echo "Ennter Host IP."
else
while IFS= read -r item
do
output=$(finger $item@$1)
<html>
<head><title>Testing HTML Injection...</title></head>
<body>
<p><h1>Hello World!</h1></p>
<!--<script>alert(/xss stored/);</script>-->
<body>
</html>
By Tanguy Andreani
Twitter: @andreani_tanguy
Website: https://globalnewsys.wordpress.com/
Date: 1 July 2014
More than 1200 websites !
Blogs on Computer Security:
https://antelox.blogspot.com/
@AnimeshShaw
AnimeshShaw / DragonCurve.java
Last active July 5, 2017 10:25
Dragon Fractal in Java
package dragon;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.image.BufferedImage;
import java.io.File;
@AnimeshShaw
AnimeshShaw / L_Systems_Tree.java
Last active June 13, 2017 12:35
Tree fractal in Java.
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
/**
* @author psychocoder