Skip to content

Instantly share code, notes, and snippets.

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

Alice Kile elevenpassin

🏠
Working from home
View GitHub Profile
@elevenpassin
elevenpassin / delete_all_tweets.py
Created October 27, 2023 07:41 — forked from davej/delete_all_tweets.py
This script will delete all of the tweets in a specified account.
# -*- coding: utf-8 -*-
"""
This script will delete all of the tweets in the specified account.
You may need to hit the "more" button on the bottom of your twitter profile
page every now and then as the script runs, this is due to a bug in twitter.
You will need to get a consumer key and consumer secret token to use this
script, you can do so by registering a twitter application at https://dev.twitter.com/apps
@requirements: Python 2.5+, Tweepy (http://pypi.python.org/pypi/tweepy/1.7.1)
@elevenpassin
elevenpassin / README.md
Created December 16, 2021 20:28
Get YT Channel RSS

Get YT Channel RSS | Violentmonkey Script

@elevenpassin
elevenpassin / commitlint.config.js
Created September 28, 2021 05:39
A simple but useful extension to config conventional and commitlint defaults.
const configConventional = require('@commitlint/config-conventional')
const customConventionalConfig = {
...configConventional,
}
customConventionalConfig.rules['type-enum'] = [
2,
'always',
[
@elevenpassin
elevenpassin / boom-images.js
Created September 27, 2021 15:34
All credit goes to @kentcdodds ! I just extracted the code from this [commit](https://github.com/kentcdodds/kentcdodds.com/commit/d7ebfcc7e3e8fb8354f0ca58da8159fccaeeb14d#) for personal use :D
import path from 'path'
import cloudinary from 'cloudinary'
import glob from 'glob'
import fs from 'fs'
import os from 'os'
const directoryCache = {}
const existingFolders = new Set()
cloudinary.config({
@elevenpassin
elevenpassin / README.md
Last active September 28, 2021 05:40
SSH Config with multiple Identities

SSH Config /w Multiple Identities

@elevenpassin
elevenpassin / README.md
Last active September 28, 2021 05:41
Minecraft thingy

Setup Minecraft /w Paper + Geyser Spigot

Quickly setup and run minecraft server

@elevenpassin
elevenpassin / README.md
Last active September 28, 2021 05:43
Player sensitive interactables

Interactables in ROBLOX

Setups up interactables in a video game based on player distance from the object. Useful for showing "interact" buttons on anything from doors to cars etc.