Skip to content

Instantly share code, notes, and snippets.

View ayamkv's full-sized avatar
🙏
I may be slow to respond.

ayamkv

🙏
I may be slow to respond.
View GitHub Profile
@ayamkv
ayamkv / yt-fomo.py
Created June 26, 2023 01:01
Youtube Your Most Liked Comment (Google Takeout)
import re
from pyyoutube import Api
import csv
# Google Developer Console, Youtube Data API V3
api = Api(api_key='YOUR_API_KEY')
# Your Google Takeout file
file = open('my-comments.html', 'r', encoding='utf8')
lines = file.readlines()
comments = [[], []]
@icecore2
icecore2 / google_forms_autofill.py
Created June 1, 2020 06:54
This script is for filling the google forms automatically by entry ID and value. This includes Date, ID and Full name, need modify only the ID and the Full name between the brackets.
''' This script is for filling the google forms automatically by entry ID and value.
This includes Date, ID and Full name, need modify only the ID and the Full name between the brackets.
'''
import requests
from datetime import datetime
url = 'https://docs.google.com/forms/d/<ID>/formResponse' # Change the ID to a proper one
date = datetime.now()
@brainfucksec
brainfucksec / bash.bashrc
Last active March 8, 2024 07:25
Termux bash.bashrc
######################################
#
# Termux bash.bashrc
# by brainf+ck
#
# Last modified: 2022/06/30
#
######################################
#### Global ##########################
@mjnaderi
mjnaderi / android_storage_ssh.md
Last active March 15, 2024 07:28
Access Android Storage Remotely using Termux and SSH
@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active April 27, 2024 09:00
[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()
 }
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description" content="Simple weight converter">
<title>Weight Converter</title>