Skip to content

Instantly share code, notes, and snippets.

Avatar
😉
Working from home

Tauseed Zaman tauseedzaman

😉
Working from home
View GitHub Profile
View auto_file_download.html
<!DOCTYPE html>
<html>
<head>
<title>Please Subscribe</title>
</head>
<body>
<script>
// File name and contents
@tauseedzaman
tauseedzaman / linux-commands.json
Created May 19, 2022 17:12
1780 linux commands with descriptions created thro automation
View linux-commands.json
{
"data": [
{
"command": "anytopnm",
"description": "attempt to convert an unknown type of image file to a portable anymap"
},
{
"command": "aplay",
"description": "command-line sound recorder and player for ALSA soundcard driver"
},
View aethelwuf_starting.json
{
"id":1,
"name":"Aethelwuf",
"inventory":[
{
"name":"Trinket",
"quantity":1
},
{
"name":"Mace",
@raffis
raffis / php
Created October 8, 2019 07:50
pure md5 algorithm written in php with serialization support
View php
<?php
namespace Hash;
/**
* PHP implementation of the MD5 algorithm according RFC-1321.
* This implementation has support for hash context serialization which the php inbuilt HashContext has not.
*/
class MD5
{
/**
@ExcaliburZero
ExcaliburZero / Main.java
Last active September 19, 2022 06:36
Heap's Algorithm - Java Implementation
View Main.java
/*
* Heap's algorithm
*
* Gives all permutations for the numbers 1 through n.
*
* Java implementation for psuedocode on the algorithm's Wikipedia article:
* https://en.wikipedia.org/wiki/Heap%27s_algorithm
*/
import java.util.Scanner;