Skip to content

Instantly share code, notes, and snippets.

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

Peter Ahlberg Dis3buted

🏠
Working from home
View GitHub Profile
@Nikolaj-K
Nikolaj-K / bit_level_SHA256.py
Last active May 6, 2024 07:14
A python script to perform sha2 in terms of if-statements and for-loops.
"""
Bit level SHA2.
Script to perform sha2 in terms of if-statements and for-loops. This runs 1 batch iteration
(i.e. about 50 bytes max input, but should be easy to extend to any size.)
No warranty.
Explanation video:
https://youtu.be/UziK-Hqzwi4
2019
@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active August 3, 2025 17:54
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }