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
| $end = 3000 | |
| $folder_name = Get-Date -UFormat %Y-%m-%d | |
| $folder_name = 'Steam/' + $folder_name | |
| New-Item -Path $folder_name -ItemType Directory -Force | Out-Null | |
| For ($i=0; $i -lt $end; $i++) | |
| { | |
| $path = "valve$i.steamcontent.com" | |
| Write-Progress -Activity "Scanning $path" -Status "$i/$end" -PercentComplete (($i * 100) / $end) |
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 JPDC (jpdb.io) search Windows Japanese IME fix | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Fixes Windows Japanese IME not working in the search bar on Chrome. | |
| // @author tambre | |
| // @match https://jpdb.io/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=jpdb.io | |
| // @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
| // ==UserScript== | |
| // @name Remove custom GitLab fonts | |
| // @namespace https://tambre.ee/ | |
| // @version 1.11 | |
| // @description Replace GitLab's own serif (GitLab Sans) and monospace (JetBrains Mono) fonts with Consolas and Segoe UI. | |
| // @author Raul Tambre | |
| // @match https://gitlab.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=gitlab.com | |
| // @grant GM_addStyle | |
| // @updateURL https://gist.github.com/tambry/5946eb1c020f4e5b3013a07641211ef7/raw/remove-custom-gitlab-fonts.user.js |
OlderNewer