Skip to content

Instantly share code, notes, and snippets.

View mentix02's full-sized avatar
💻
coding away

Manan mentix02

💻
coding away
View GitHub Profile
@mentix02
mentix02 / black-django.py
Created January 25, 2024 11:58
Some dangerous code
"""
This code contains some extreme levels of black magical Python code with abstractions that
your tiny brain just might not be able to comprehend. Read on if you dare to - otherwise
leave this file and never return. Consider yourself warned.
- mentix02, 2024-01-18
"""
from typing import Callable
from flask import Flask, render_template, request, jsonify
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html")
#!/usr/bin/env python3
import enum
import time
import random
import argparse
@enum.unique
class Tile(enum.Enum):
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mentix02
mentix02 / internet-check.cpp
Created December 15, 2022 04:25
Internet checker
#include <array>
#include <regex>
#include <chrono>
#include <thread>
#include <string>
#include <cstdio>
#include <memory>
#include <cstdint>
#include <iostream>
#include <stdexcept>
@mentix02
mentix02 / fh.py
Created May 13, 2022 04:18
I shouldn't have to install coreutils on my Mac to compute the sha sums of files, fuck you
#!/usr/bin/env python3
import pathlib
import hashlib
import argparse
def compute(path: pathlib.Path, h_name: str = 'sha256') -> str:
hasher = hashlib.new(h_name)
with open(path, 'rb') as f:
class Hex(int):
def __repr__(self) -> str:
return hex(self)
_ops = ['__add__', '__sub__', '__mul__']
def _monkey_patch_op(operation):
"""
import csv
N = 8
data = []
with open("data.csv") as f:
table = csv.reader(f)
next(table)
for row in table:
data.append(list(map(int, row)))
class Node:
def __init__(self, data):
self.data = data
self.next = None
class List:
def __init__(self):
self.head = None