- DP for beginners by @wh0ami - https://leetcode.com/discuss/general-discussion/662866/dp-for-beginners-problems-patterns-sample-solutions || [LIST - https://leetcode.com/list/x1k8lxi5]
- Graph for beginners by @wh0ami - https://leetcode.com/discuss/general-discussion/655708/graph-for-beginners-problems-pattern-sample-solutions/562734 || [LIST - https://leetcode.com/list/x1wy4de7]
- Sliding window for beginners by @wh0ami - https://leetcode.com/discuss/general-discussion/657507/sliding-window-for-beginners-problems-template-sample-solutions/562721 || [LIST - https://leetcode.com/list/x1lbzfk3]
- DP Patterns by @aatalyk - https://leetcode.com/discuss/general-discussion/458695/dynamic-programming-patterns Leetcode patterns from edu_cative_dot_io by @late_riser - https://leetcode.com/discuss/general-discussion/457546/LeetCode-Problem-Patterns-from-***
- List of questions sorted by common patterns by @Maverick2594 - https://leetcode.com/discuss/career/448285/List-of-q
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| 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( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 |
To view the progress of a Powerpoint presentation, a progress bar can be displayed at the bottom of the slide show.
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 *://*/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| scoop alias add ls 'scoop list' | |
| scoop alias add cc 'scoop cache rm *' | |
| scoop alias add rm 'scoop uninstall $args[0]' | |
| scoop alias add c 'scoop cleanup $args[0]' | |
| scoop alias add s 'scoop search $args[0]' | |
| scoop alias add i 'scoop install $args[0]' | |
| scoop alias add ri 'scoop rm $args[0] && scoop cache rm $args[0] && scoop install $args[0]' | |
| scoop alias add u 'scoop update $args[0]' | |
| scoop alias add ru 'scoop cache rm $args[0] && scoop update $args[0]' | |
| scoop alias add up 'scoop update * && scoop cleanup *' |