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
| User-agent: * | |
| Disallow: /x | |
| Disallow: /proxy | |
| User-agent: DataForSeoBot | |
| Disallow: /x | |
| Disallow: /proxy |
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
| foreach ($service in Get-Service | ForEach-Object { $_.Name }) { | |
| $path = Get-ItemProperty -Path Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\$service | ForEach-Object { $_.ImagePath } | |
| # Change this as you see fit, but it should catch most externally installed services. | |
| if ($path -like "*C:\Windows*") { | |
| continue | |
| } | |
| "{0}: {1}" -f $service, $path | Write-Output | |
| } |
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
| edition = "2021" | |
| enum_discrim_align_threshold = 40 | |
| error_on_line_overflow = true | |
| error_on_unformatted = true | |
| fn_single_line = true | |
| format_code_in_doc_comments = true | |
| format_macro_matchers = true | |
| format_strings = true | |
| inline_attribute_width = 80 | |
| match_arm_blocks = false |
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 Claude Hide Project Chats | |
| // @namespace fuwn-claude-hide | |
| // @version 1.0.0 | |
| // @description Hide project chats in Claude's sidebar. Starred chats remain visible. | |
| // @author Fuwn | |
| // @match https://claude.ai/* | |
| // @run-at document-start | |
| // @license GPL-3.0-only | |
| // ==/UserScript== |
OlderNewer