- oh-my-bash
- oh-my-posh
- fzf
This file contains 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
javascript:!function(){let e=parseInt(prompt("Enter the desired page number:"));if(!isNaN(e)&&e>0){let t=0,n=function(){t<e-1&&(document.getElementById("NextPage_websys_CustomTypeItem_List").click(),t++,setTimeout(n,100))};n()}else alert("Invalid page number.")}(); |
This file contains 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
// Function to click the "Next" button | |
function clickNextPage() { | |
var nextButton = document.getElementById("nextpage"); // Adjust this to match the actual ID or method to find the button | |
if (nextButton) { | |
nextButton.click(); | |
} else { | |
console.log("Next button not found"); | |
} | |
} |
This file contains 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
# Add necessary types for mouse events | |
Add-Type @" | |
using System; | |
using System.Runtime.InteropServices; | |
public class Mouse { | |
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)] | |
public static extern void mouse_event(long dwFlags, long dx, long dy, long cButtons, long dwExtraInfo); | |
public const int MOUSEEVENTF_LEFTDOWN = 0x02; | |
public const int MOUSEEVENTF_LEFTUP = 0x04; | |
} |
This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\SystemFileAssociations\.docx] | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\SystemFileAssociations\.docx\shell] | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\SystemFileAssociations\.docx\shell\Pandoc] | |
@=hex(2):50,00,61,00,6e,00,64,00,6f,00,63,00,20,00,74,00,6f,00,20,00,4d,00,44,\ | |
00,00,00 | |
"Icon"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,20,\ |
- scoop.sh - Best package manager
List from scoop list
Name | Version |
---|---|
7tt | |
7zip | 24.08 |
audacity | 3.6.4 |
This file contains 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
#!/bin/bash | |
iatest=$(expr index "$-" i) | |
####################################################### | |
# SOURCED ALIAS'S AND SCRIPTS BY zachbrowne.me | |
####################################################### | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc |
This file contains 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
// In a terminal: | |
code --install-extension aaron-bond.better-comments | |
code --install-extension abhinavk99.codewall | |
code --install-extension AdamCaviness.theme-monokai-dark-soda | |
code --install-extension alefragnani.Bookmarks | |
code --install-extension alexkrechik.cucumberautocomplete | |
code --install-extension axiomaticstudios.one-monokai-80s | |
code --install-extension azemoh.one-monokai | |
code --install-extension be5invis.vscode-custom-css | |
code --install-extension bierner.markdown-mermaid |
This file contains 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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// Choose either "stable" for receiving highly polished, | |
// or "canary" for less polished but more frequent updates | |
updateChannel: 'stable', |