written by
@dylanngo95
(styled by@zudsniper
)
sudo apt update -y && sudo apt upgrade -y
// ==UserScript== | |
// @name Old Reddit Redirect | |
// @namespace zod.tf | |
// @version 0.1 | |
// @description Forces usage of the old reddit version (from Tom Watson project, forked) | |
// @author zudsniper | |
// @match https://reddit.com/* | |
// @match https://www.reddit.com/* | |
// @match https://np.reddit.com/* | |
// @match https://amp.reddit.com/* |
// ==UserScript== | |
// @name gist-editor-resize-userscript | |
// @namespace https://gist.github.com/ | |
// @version 0.2 | |
// @description Automatically resize the gist editor for easier editing. | |
// @match http*://gist.github.com/* | |
// @copyright 2013+ Joel Day - blog.dayjo.org (updated by @zudsniper - gh.zod.tf) | |
// ==/UserScript== | |
var textareas = document.querySelectorAll('textarea.file_contents'); |
// ==UserScript== | |
// @name Old Reddit Redirect | |
// @description Redirects www.reddit.com to the old version of the website | |
// @downloadURL https://gist.githubusercontent.com/msanders/52700d5c5ed76f1114594ddb862b530e/raw/old-reddit-redirect.user.js | |
// @updateURL https://gist.githubusercontent.com/msanders/52700d5c5ed76f1114594ddb862b530e/raw/old-reddit-redirect.user.js | |
// @version 2023.10.19 | |
// @run-at request | |
// ==/UserScript== | |
[ |
written by
@dylanngo95
(styled by@zudsniper
)
sudo apt update -y && sudo apt upgrade -y
// ==UserScript== | |
// @name GBN2 | |
// @namespace https://website.url | |
// @version 1.7.1 | |
// @description Download GIFs directly from Giphy with a stylish button. | |
// @author me and a mouse | |
// @match *://*/* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_download | |
// @run-at document-end |
// ==UserScript== | |
// @name Gist Infinite Scroll | |
// @namespace https://gist.github.com/* | |
// @version 0.1 | |
// @description Infinite Scroll on github gists | |
// @author Jason McElhenney | |
// @match http://gist.github.com/* // Adjust this to match the websites you want the script to run on | |
// @grant GM_xmlhttpRequest | |
// @grant unsafeWindow | |
// @require https://code.jquery.com/jquery-3.6.0.min.js |
This gist contains a Python script that generates a transcript or summary of a YouTube video. It fetches video information, transcribes the audio using the Whisper ASR model, and generates a summary using the OpenAI language model.
If you're looking into automating transactions in your Steam Account using Steam Bots, you most likely will need to:
shared secret
and identity secret
Having Steam Guard enabled for your Steam Account ensures that there will be no holds on transactions such as trades. Having the shared
and identity
secrets are necessary for complete autonomy of your Steam Bot, meaning it won't require any human interaction from you.
There is a tremendous lack of information about all of this as Steam does not provide official support for implementing Steam Bots. The information available in this guide was gathered through lots of blood and sweat hard research, reverse eng
#!/bin/bash | |
# dlgh.sh | |
# -------- | |
# | |
# Download all repositories of a user or organization using the gh commandline tool. | |
# REQUIRES `gh auth login`! | |
# | |
# @zudsniper | |
# GitHub-themed header |
1. Add dependecy: | |
<dependency> | |
<groupId>org.apache.logging.log4j</groupId> | |
<artifactId>log4j-slf4j-impl</artifactId> | |
<version>${log4j.version}</version> | |
</dependency> | |
2.Create config file for log4j (https://logging.apache.org/log4j/2.x/manual/configuration.html). | |
I prefer log4j2-test.properties because according documentation this format will look second, after configFile: | |
'If no system property is set the properties ConfigurationFactory will look for log4j2-test.properties in the classpath.' | |
--------------------------------------------------------------- |