Skip to content

Instantly share code, notes, and snippets.

View tambry's full-sized avatar

Raul Tambre tambry

View GitHub Profile
@tambry
tambry / Steam.ps1
Created October 4, 2019 15:16
Script for scraping AAAA records of Steam content servers.
$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)
@tambry
tambry / jpdb-windows-ime-fix.js
Last active August 11, 2022 07:01
Tampermonkey script to fix Windows Japanese IME on JPDC (jpdb.io).
// ==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==
// ==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