Skip to content

Instantly share code, notes, and snippets.

View Hans5958's full-sized avatar
🏫
Uni and uni and uni and... (limited availability!)

Hans5958 Hans5958

🏫
Uni and uni and uni and... (limited availability!)
View GitHub Profile
@Hans5958
Hans5958 / Vaporeon response.md
Last active May 31, 2023 13:58
Response to the Vaporeon copypasta

Original

Earliest known instance: https://www.reddit.com/r/sbubby/comments/d8buja/please/f1a4t74?context=3

Well well well. It appears [insert user who used the copypasta] is a fellow vappy fucc connoisseur. However screw the female version. You get those same ol two holes in literally everything else. the MALE vappy is the real star of the show. Those long slippery diccs they have full mobility control with like a tentacle are the perfect ass filler for the ultimate in deep reaching experience nothing else could possibly provide. Naturally lubed at all times due to their aquatic hydrodynamic nature, you can pull off anywhere to the side of the road, or go into a public restroom at the beach, get each other aroused, and have the fucc of a lifetime. The extraordinary squishyness of the vappy alone rubbing against you would be enough to lose yourself in pleasure as it simply mounts you. Let alone with that perfect tool of pleasure slips into you. Its ability to snake around your bends and its perfect le

Season 1-3 (untested)

0:00.000 - 0:58.500 Intermission
23:32.000 - 59:59.999 Endcards/Credits

Season 4

@Hans5958
Hans5958 / A Pledge of Content Preservation.md
Last active April 22, 2023 15:46
A Pledge of Content Preservation (SUPERSEEDED: Check the blog post)

Warning: This has been superseeded with the version on the blog. Check the new version on the post below. https://hans5958.github.io/blog/a-pledge-of-content-preservation/

A Pledge of Content Preservation

There are many instances where an entity (including, but not limited to, general people, content creators, institutions, businesses, organizations) retracts their content from existence. We have seen this in various cases, and it is not rare to see a disappointed group of people condemns such action, myself included.

With that, I pledge the following.

  1. To preserve and not remove public content that I have shared.
@Hans5958
Hans5958 / confession.md
Last active March 31, 2023 12:01
This is a very serious confession, there is absolutely zero tomfoolery on this writing. :)

Alright, I think this is a good time to talk about this. Ever since my inception of my internet adventures, I have discovered a lot of these so-called cultures.

Part of this is fueled with my curiosity. As someone who is from a developing country, the internet is quite a niche. People would still have computer courses. I can't believe the technology has advanced so much, people have phones at this time.

Right, back go the topic, at this time I have discovered this kind of community. A community that is quite acceptable to me and by everyone. Something I rarely see in the sea on the internet toxicity.

Inside, I realised that I think I was destined as a part of the community. It was a shame to me since the bad things of this community, such as what I heard as animal abuse, but I guess we know that this is just a vocal minority.

Let's just say that I'm now opening myself to hate, that I'm declaring myself that I am a part of this community, and I can say that I am proud of it. Partially, because I don't want

@Hans5958
Hans5958 / rb-cachebuster.py
Last active January 30, 2023 10:48
Roblox Cache Buster: Simple script to convert Roblox cache files on `%temp%/Roblox/http` folder to normal, openable files (if valid). Run the script inside `%temp%/Roblox/http`.
from genericpath import isfile
import puremagic, io, os
os.makedirs('cachebuster', exist_ok=True)
for file_name in os.listdir('.'):
if not os.path.isfile(file_name):
continue
# print(file_name)
ffmpeg -i "Outrunning Blue Shells for an Entire Race 😳 [HD].webm" -ss 4:28.0628033333333 -i "..\Audios\Lynyrd Skynyrd - Free Bird.m4a" -map 0:v:0 -map 1:a:0 -c:v copy -shortest "Outrunning Blue Shells for an Entire Race 😳 [HD].webm.new.webm"
@Hans5958
Hans5958 / A Study of Funkipedia Mods.md
Last active December 21, 2022 10:58
A Study of Funkipedia Mods – What Can Be Improved

A Study of Funkipedia Mods – What Can Be Improved

Notice regaring updates

Updates are made as I learned more on the wiki. Please review the revisions page for any changes that I have made.

Preword

Within my English barriers, I fond of writing long texts just so my texts are in no way ambiguous or to be misintepret it. This includes this essay, because I wish to improve this by giving improvements based on what I learned on editing wikis. I would like to write this in small notes on your Discord server, on your Twitter, but it seems to me that it is not enough for me to deliver my message that I intend.

@Hans5958
Hans5958 / data.js
Last active October 21, 2022 02:48
Membuat pengaturan AWB:Typos dari Data Terbuka Sipebi (https://id.wikipedia.org/wiki/Wikipedia:AutoWikiBrowser/Typos)
words = `abadiah abadiat
abaimana abimana
abdu abdul
Abrab Abrap
Abrab Abrop
adang hadang
adendum adenda
adenina adenin
adhesi adesi
adik adek
@Hans5958
Hans5958 / Switch To YouTube Uploads Playlist.js
Last active July 13, 2022 13:54
Simple script to switch to the uploads playlists (Uploads by...) on YouTube
var params = new URLSearchParams(location.search)
var listId = params.get('list')
if (listId && listId.startsWith('UU')) {
params.delete('list')
params.delete('index')
} else {
params.set('list', 'UU' + ytInitialPlayerResponse.videoDetails.channelId.substr(2))
}
location.search = params.toString()
@Hans5958
Hans5958 / Remove All Videos from YouTube Playlist.js
Created July 13, 2022 13:50
Remove all videos from a YouTube playlist. Open a playlist page and run this script. Adjust the interval time if needed, but as low as 50, or maybe lower, should be fine.
setInterval(() => {
document.querySelector('.ytd-playlist-video-list-renderer #menu yt-icon.style-scope.ytd-menu-renderer').click()
setTimeout(() => document.querySelector('#items > ytd-menu-service-item-renderer:nth-child(4) > tp-yt-paper-item > yt-formatted-string').click(), 1)
}, 100)