Skip to content

Instantly share code, notes, and snippets.

View Touexe's full-sized avatar

Tou Touexe

  • Phnom Penh, Cambodia
View GitHub Profile
@Touexe
Touexe / key
Created September 29, 2023 02:18
ef508f9670e97f058767bd31373ab2d1832c634d
@Touexe
Touexe / 404.html
Last active August 1, 2023 15:05
404 page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap">
<style>
body {
@Touexe
Touexe / MSrecover_creds.py
Last active February 24, 2022 03:11
Get all recovery addresses from Microsoft account
from typing import Any, Optional
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from selenium.webdriver import Chrome
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.common.exceptions import TimeoutException, NoSuchElementException
@Touexe
Touexe / Readme.md
Created July 17, 2021 13:41
Get reddit followed users Onlyfans links
from dataclasses import dataclass, replace
import praw
from praw.models import MoreComments
import re
from typing import List, Union

reddit = praw.Reddit(client_id=",
                        client_secret="",
                        password="",
@Touexe
Touexe / Readme.md
Last active January 11, 2023 13:44
youtube-dl and yt-dlp best commands

Youtube-dl

youtube-dl -f best --ignore-errors --no-mtime --embed-thumbnail -o %(title)s.%(ext)s --merge-output-format mp4 --external-downloader aria2c --external-downloader-args "-c -j 16 -x 16 -s 16 -k 2M" URL

Yt-dlp

yt-dlp -f best -c --ignore-errors --no-mtime --embed-subs --embed-thumbnail -o %(title)s.%(ext)s --add-metadata --merge-output-format mp4 --downloader aria2c --downloader-args "-c -j 16 -x 16 -s 16 -k 2M" URL
@Touexe
Touexe / Readme.md
Created January 17, 2021 07:03
Youtube-dl with idm

Youtube-dl-with-IDM

Download any video from supported sites by youtube-dl with IDM as downloader

Requirements

  • Python 3.x
  • Internet Download Manager
  • youtube_dl
  • idm

Installation