Skip to content

Instantly share code, notes, and snippets.

View Crystal-RainSlide's full-sized avatar

RainSlide Crystal-RainSlide

View GitHub Profile
@fernvenue
fernvenue / getGoogle.sh
Created February 22, 2023 05:42
Get outbound IP address from Google.
#!/bin/bash
apt install -y pcregrep
curl -s "https://www.google.com/sorry/index" | pcregrep -o1 "IP address: (.*?)<"
anonymous
anonymous / uMatrix 过滤规则,使用前请先删除注释。
Created November 26, 2017 05:11
uMatrix Rule, Please delete the comment before use.
#~~~~~~~~~~~~~~~~ Updated: 2017-11-26 12:18 UTC+8 ~~~~~~~~~~~~~~~~#
#禁止混合内容
https-strict: about-scheme false
https-strict: behind-the-scene false
https-strict: chrome-extension-scheme false
https-strict: chrome-scheme false
https-strict: localhost false
https-strict: moz-extension-scheme false
https-strict: opera-scheme false
# Resurrection Remix OS - Marshmallow
Source Code: http://github.com/ResurrectionRemix
G+: https://plus.google.com/communities/109352646351468373340
Resurrection Remix Crowdin : https://crowdin.com/project/resurrectionremix/
For extended changelog, track github activities
# The Changelog
@joyrexus
joyrexus / README.md
Last active May 16, 2025 01:54 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})