Skip to content

Instantly share code, notes, and snippets.

View f4T1H21's full-sized avatar
👋
Smile and wave boys, smile and wave

Şefik Efe f4T1H21

👋
Smile and wave boys, smile and wave
View GitHub Profile
@pcgeek86
pcgeek86 / cheatsheet.ps1
Last active July 26, 2024 20:26
PowerShell Cheat Sheet / Quick Reference
Get-Command # Retrieves a list of all the commands available to PowerShell
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules)
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft*
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item"
Get-Help # Get all help topics
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page)
Get-Help -Name Get-Command # Get help for a specific PowerShell function
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command
@HPZ07
HPZ07 / DisableYoutubeScrolling.user.js
Last active May 20, 2024 14:45
Disable YouTube Spacebar Scrolling
// ==UserScript==
// @name Disable YouTube spacebar scrolling
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Disables spacebar scrolling and forces it to pause the video instead
// @author HPZ07
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==