Skip to content

Instantly share code, notes, and snippets.

@Foadsf
Foadsf / test.md
Last active July 8, 2024 09:18
to test markdown inside the HTML tags
#Lorem **ipsum** dolor sit amet, consectetur adipiscing elit, sed
@Foadsf
Foadsf / DownloadYouTubePlaylistSubtitles.ps1
Created May 18, 2024 20:51
PowerShell script to download and extract plain text from autogenerated subtitles of a YouTube playlist
param (
[string]$playlistID
)
if (-not $playlistID) {
Write-Host "Please provide a playlist ID as a command-line argument."
exit 1
}
# Define the playlist URL and output file
from pylatexenc.latex2text import LatexNodes2Text
from nltk.probability import FreqDist
from nltk.corpus import stopwords
import argparse
import nltk
def analyze_word_frequency(filename, words_to_check):
"""Analyzes word frequency in a LaTeX document.
@Foadsf
Foadsf / find_binary.py
Created April 28, 2024 20:22
A Python script and Windows batch command to recursively find and delete binary files in a directory
import os
import sys
def is_binary(filename):
"""
Check if the file is binary. A file is considered binary if it contains a null byte
within the first 1024 bytes of its content.
you may run
FOR /F "tokens=*" %G IN ('python find_binary.py .') DO del "%G"
@Foadsf
Foadsf / README.md
Last active March 22, 2024 05:57
Scripting LibreOffice with Python

This tutorial was originally written by Jannie Theunissen on onesheep.org. However, the website has been down for a while and this a clone from the web.archive.org backup. Also, the parts regarding the macOS are updated according to this post. You may find OneSheep here on Twitter and Jannie Theunissen here on StackOverflow. If you have any comments on this Gist please poke me here on Twitter, otherwise, I might miss your comments.

Scripting LibreOffice with Python

We were recently asked to automate some editing tasks for the Spotlight English editors w

@Foadsf
Foadsf / .gitignore
Created February 25, 2024 10:00
Efficiently manage and display your Telegram groups with our Python script. Designed for Telegram users and group administrators, this script leverages the Telethon library to fetch and print a list of groups you own directly to your console. Perfect for organization and quick access, this tool simplifies group management on Telegram—ideal for d…
config.ini
@Foadsf
Foadsf / README.md
Last active January 15, 2024 22:15 — forked from nrollr/MySQL_macOS_Sierra.md
Installing MySQL and MySQL Workbench on macOS using Homebrew

Preface

This procedure explains how to install MySQL and MySQL Workbench using Homebrew on macOS. This is a fork of these instructions, to make them more concise and solve the issues reported here.

MySQL

To install MySQL enter :

  • brew install mysql
  • brew services start mysql
  • then run mysql_secure_installation and follow the instructions
@Foadsf
Foadsf / WxMaximaPortable.md
Last active November 24, 2023 03:25
Installing WxMaxima as a portable software on a Windows machine without admin rights.
  • Download the latest version of the software from the official website
  • unarchive the .exe file with 7zip or any other software you have
  • then go to the unarchived folder and find the bin\wxmaxima.exe, create a shortcut to on your desktop so you can run it easily next time
@Foadsf
Foadsf / TelegramGroupUnbanUsers.py
Created November 14, 2023 14:10
Python script using Telethon to unban removed users in a Telegram group. This script fetches the list of users who have been kicked from a Telegram group and unbans them, enabling them to rejoin. It handles rate limits and provides an efficient way to manage group memberships.
import asyncio
from telethon.tl.types import ChannelParticipantsKicked
from telethon.sync import TelegramClient
from telethon.errors import FloodWaitError
# Replace these with your own Telegram API ID and Hash
api_id = 'YOUR_API_ID'
api_hash = 'YOUR_API_HASH'
# Replace with the positive integer ID of your group (omit the '-' sign)
@Foadsf
Foadsf / test.adoc
Created April 4, 2020 20:34
test HTML iframe asciidoc