Skip to content

Instantly share code, notes, and snippets.

View mark05e's full-sized avatar

mark05E mark05e

View GitHub Profile
@gildas-lormeau
gildas-lormeau / README.MD
Last active August 31, 2024 23:36
CLI to transform a SingleFileZ page into a SingleFile page
@dennisstewart
dennisstewart / treasurydirect_copypasta.user.js
Last active January 27, 2023 22:44
Re-enables the password box on TreasuryDirect.gov so I can paste from my password manager
// ==UserScript==
// @name TreasuryDirect Copypasta
// @version 0.2
// @description Allow creds to be pasted from a password manager into the TreasuryDirect login form.
// @author Dennis Stewart
// @license The Strong Style Public License https://raw.githubusercontent.com/dennisstewart/cvs-checker-py/main/LICENSE
// @match https://*.treasurydirect.gov/RS/PW-Display.do*
// @icon https://www.google.com/s2/favicons?sz=64&domain=treasurydirect.gov
// @grant none
// ==/UserScript==
@cetteup
cetteup / paraworld-url-launcher.ps1
Created April 6, 2022 18:45
PowerShell script to register a URL handler for the paraworld:// protocol and act as the handler. Joining a Paraworld server is only one click away.
<#
PowerShell script to register a URL handler for the paraworld:// protocol and act as the handler. Joining a Paraworld server is only one click away.
Registers the URL handler if launched without any arguments.
Launches the game and joins the server if launched with valur -URI flag.
URL protocol format: paraworld://[server_ip]:[server_port]
#>
param(
@bedsteler20
bedsteler20 / shortcuts.user.js
Created March 20, 2022 20:01
territorial.io keybord shortcuts
// ==UserScript==
// @name New script - territorial.io
// @namespace Violentmonkey Scripts
// @match https://territorial.io/
// @grant none
// @version 1.0
// @author -
// @run-at document-end
// ==/UserScript==
// Disables Key listener

Intro

To view the progress of a Powerpoint presentation, a progress bar can be displayed at the bottom of the slide show.

How to proceed

Once the slideshow is complete, go to Tools > Macro > Visual Basic Editor.

In the new window, select Insert > Module and copy one of the below files in the blank page:

Then go to File > Close > Return to Microsoft PowerPoint In the displayed page of Microsoft Powerpoint, go to:

@Mufaddal1125
Mufaddal1125 / switch_app_theme.ps1
Created January 23, 2022 17:02
Switch app theme in windows
$mode = Get-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme
if ($mode.AppsUseLightTheme -eq 1) {
Write-Output "Mode is 1, changing to 0"
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0
}
elseif ($mode.AppsUseLightTheme -eq 0) {
Write-Output "Mode is 0, changing to 1"
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 1
@btaillon-coveo
btaillon-coveo / get-result-source.user.js
Last active March 10, 2022 15:47
Tempermonkey Script - Get result source
// ==UserScript==
// @name Get result source
// @description gets the source of a result.
// @namespace https://github.com/btaillon
// @updateURL https://gist.githubusercontent.com/btaillon/af627d1206dd5c687825f9a9b3cc04a5/raw/get-result-source.user.js
// @downloadURL https://gist.githubusercontent.com/btaillon/af627d1206dd5c687825f9a9b3cc04a5/raw/get-result-source.user.js
// @supportURL https://gist.githubusercontent.com/btaillon/af627d1206dd5c687825f9a9b3cc04a5
// @version 0.2
// @author btaillon
// @match *://*/*
@Far-Se
Far-Se / google-play.js
Last active August 18, 2022 06:04
Google Play See Maximum Installs and Release Date.
// ==UserScript==
// @name Google PlayStore Info
// @namespace http://tampermonkey.net/
// @version 9.1.2
// @description try to take over the world!
// @author You
// @match https://play.google.com/store/*
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://play.google.com
// @grant none
// ==/UserScript==