Skip to content

Instantly share code, notes, and snippets.

View R4356th's full-sized avatar

Radman Siddiki R4356th

View GitHub Profile
@R4356th
R4356th / head.html
Last active June 10, 2021 16:26
MediaWiki PWA Example
<link rel="manifest" href="manifest.webmanifest">
@R4356th
R4356th / redirector.js
Last active July 28, 2023 09:54
JavaScript code to enforce https on your websites
/* Copyright 2020-23 Radman Siddiki
Licensed under the MIT License (https://www.mit.edu/~amini/LICENSE.md) */
if (location.protocol === "http:") {
location.replace(location.href.replace("http:", "https:"));
}