https://github.com/mimoklef/Search-Google-Maps-Back
Bring back the "Maps" button and make some map tiles clickable again.
- Install a userscript addon like Violentmonkey
https://github.com/mimoklef/Search-Google-Maps-Back
Bring back the "Maps" button and make some map tiles clickable again.
▫️ Bundeszentrale für politische Bildung https://www.bpb.de/
▫️ Transcript - Verlag https://www.transcript-verlag.de/
▫️ Deutsche Gesellschaft für Soziologie https://soziologie.de/aktuell
Param( | |
[Parameter(Mandatory=$True)] | |
[string]$Path, | |
[string]$Quality = "36", | |
[string]$Preset = "p4", | |
[string]$Tune = "hq", | |
[string]$Format = "webm", | |
[bool]$CopyAudio = $False, | |
[switch]$Keep | |
) |
Param( | |
[Parameter(Mandatory=$True)] | |
[string]$Original, | |
[Parameter(Mandatory=$True)] | |
[string]$Compare | |
) | |
$OriginalSize = (Get-ChildItem $Original | Measure-Object Length -Sum).sum / 1Gb | |
$CompareSize = (Get-ChildItem $Compare | Measure-Object Length -Sum).sum / 1Gb | |
[string]$Difference |
// paste this in your browser's console | |
// hide | |
document.querySelector(".webPlayerSDKUiContainer").style.opacity = 0 | |
// show again | |
document.querySelector(".webPlayerSDKUiContainer").style.opacity = 1 |
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\WindowsTerminal] | |
@="Windows Terminal Here" | |
"Icon"="%USERPROFILE%\\terminal\\wt_32.ico" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\WindowsTerminal\command] | |
@="wt.exe -d \"%V\"" | |
fetch("https://siastats.info/dbs/skynet_current.json") | |
.then((r) => r.json()) | |
.then((portals) => { | |
portals.forEach((portal) => { | |
const link = `${portal.link}/${skylink}`; | |
fetch(link, { method: "HEAD" }).then((resp) => { | |
if (resp.ok) location = link; | |
}); | |
}); | |
}); |
// ==UserScript== | |
// @name 4chan to SkyGallery | |
// @namespace https://delivator.me | |
// @version 0.1 | |
// @description User script which creates a SkyGallery album from a 4chan tread | |
// @author Delivator | |
// @match https://boards.4chan.org/*/thread/* | |
// @match https://boards.4channel.org/*/thread/* | |
// @grant none | |
// ==/UserScript== |
module.exports = api => { | |
api.describeTask({ | |
match: /vue-cli-service build && node deploy_skynet.js/, | |
description: "Build the project and upload it to skynet", | |
link: "https://github.com/Delivator/vue-cli-plugin-skynet" | |
}) | |
api.describeTask({ | |
match: /node deploy_skynet.js/, | |
description: "Upload to skynet (without building)", |