Skip to content

Instantly share code, notes, and snippets.

View jancborchardt's full-sized avatar

Jan C. Borchardt jancborchardt

View GitHub Profile
@mul14
mul14 / 00_etc-hosts.md
Last active February 24, 2025 02:24
/etc/hosts for Vimeo, Reddit, Imgur, GitHub, DigitalOcean, dll

Unblock Steam, Vimeo, Reddit, Imgur, GitHub, DigitalOcean, NPM, PayPal, dll

Saya support Internet Positif untuk memblokir porn, situs judi, dan hal-hal ilegal lainnya. Tapi pemerintah dan ISP sangat konyol karena tidak mengizinkan akses ke Vimeo, Reddit, Imgur, Netflix--yang mana bukanlah situs dengan konten utama ilegal.

Linux / BSD / macOS

Tambahkan list di bawah ke /etc/hosts.

Windows

@scmx
scmx / hide-idle-cursor.md
Last active July 15, 2024 14:05 — forked from josephwegner/jquery-hideIdleCursor.js
Hide your cursor on a web page when it is idle. Great if you're using a web page for some sort of TV Display and don't want the cursor messing things up. #javascript #cursor #css #idle #hide

Hide your cursor on a web page when it is idle

Great if you're using a web page for some sort of TV Display and don't want the cursor messing things up

document.addEventListener("DOMContentLoaded", () => {
  let idleMouseTimer;
  let forceMouseHide = false;

 document.body.style.cursor = "none";
@gary-kim
gary-kim / jq.bash
Created May 20, 2020 15:59
Currently Supported Nextcloud App Name Finder
curl https://apps.nextcloud.com/api/v1/apps.json | jq '. | map({name: .translations.en.name, versionspec: .releases | first | .rawPlatformVersionSpec}) | map(select(.versionspec[-2:] // "0" | tonumber >= 18)) | map(.name)' -c