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
[class*="pictureInPicture_"]+[class*="container_"], | |
[id*="message-reply-context-"]>[class*="botTag_"] { | |
display: none !important; | |
} | |
[class*="replyBar_"]>div:nth-child(1) { | |
display: grid !important; | |
} | |
[id*="message-reply-context-"]>[class*="username_"] { |
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 YouTube - Search Results Cleaner | |
// @description Hides most of the random, unrelated videos which YouTube injects into search results, but still allows you to access them. This script gathers videos from categories like "People also watched" and "For you" and collapses them into thin boxes on-screen so they won't distract from actual search results. Hover the mouse over these boxes to show their contents. | |
// @namespace lednerg | |
// @version 24.1.11.2 | |
// @author lednerg | |
// @license CC-BY-NC-SA-4.0 | |
// @grant GM_addStyle | |
// @run-at document-start | |
// @include http://youtube.com/* |
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
/* ----------------------------- */ | |
/* Hides super reaction elements */ | |
/* ----------------------------- */ | |
[class*=reaction_]:has([aria-label*="super reaction"]), | |
[class*=burstToggle_] { | |
display: none; | |
} | |
/* ------------------------- */ |
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
https://web.archive.org/web/20170605001825/http://forums.steampowered.com:80/forums/showthread.php?t=2470784 | |
HOW TO DELETE FILES STORED IN STEAM CLOUD SERVERS | |
Context: | |
I've read many times on this forum topics with concerns about the fact that it's impossible to manage files stored in Steam Cloud servers. This can be very annoying if you want to know exactly what files are in the Cloud or to solve sync problems such as savegame overwriting. Since no good solution was available, I've decided to look at the issue and try to understand how Steam Cloud works. | |
Presentation of Steam Cloud: | |
Steam Cloud is used to backup config files and savegames online in order to access them from every computer. It's a feature that can be enabled/disabled through two different dialogs: | |
- Steam > Settings > Downloads + Cloud > Enable Steam Cloud synchronization for games which support it (will affect all the games) |
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
function Litterbox-Request { | |
param ( | |
[Parameter( | |
Mandatory, | |
Position = 0, | |
ValueFromPipeline = $true, | |
HelpMessage = "Path to a file or a media URL." | |
)] | |
[ValidateNotNullOrEmpty()] | |
[string] |
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
function Catbox-Request { | |
param ( | |
[Parameter( | |
Mandatory, | |
Position = 0, | |
ValueFromPipeline = $true, | |
HelpMessage = "Path to a file or a media URL." | |
)] | |
[ValidateNotNullOrEmpty()] | |
[string] |
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
function New-Link { | |
[Alias("mklink")] | |
param( | |
[ValidateSet( | |
"SymbolicLink", | |
"HardLink", | |
"DirectoryLink", | |
"Junction" | |
)] | |
[string] |
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
function Get-Hash { | |
[Alias("hash")] | |
param ( | |
[Parameter( | |
Mandatory, | |
Position = 0, | |
ValueFromPipeline = $true, | |
HelpMessage = "Path to a file." | |
)] | |
[ValidateNotNullOrEmpty()] |
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
function Restart-Session { | |
[Alias("ress")] | |
param () | |
[System.Management.Automation.PathInfo]$pathInfo = Get-Location; | |
while ($true) { | |
powershell.exe -NoLogo -NoExit -Command "Set-Location $($pathInfo.Path)" | |
if ($LASTEXITCODE) { | |
Write-Host -Object "Infinite session stopped" -ForegroundColor Red | |
break | |
} |
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
{ | |
"createdBy": "Katzenwerfer", | |
"redirects": [ | |
{ | |
"description": "Redirect Wikipedia articles to the Wikiwand website", | |
"exampleUrl": "https://en.wikipedia.org/wiki/the-article-you-want-to-read", | |
"exampleResult": "https://www.wikiwand.com/en/the-article-you-want-to-read", | |
"error": null, | |
"includePattern": "(https?):\\/\\/(.{2})\\.wikipedia\\.org\\/wiki\\/(.*)", | |
"excludePattern": "(https?):\\/\\/(.{2})\\.wikipedia\\.org\\/wiki\\/(.*\\?)(oldformat=true)", |
NewerOlder