Skip to content

Instantly share code, notes, and snippets.

View kinstones's full-sized avatar

kinstones

  • Joined Oct 4, 2025
View GitHub Profile
(function() {
function AnonNum(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
function getNameFromCookie() {
var cookie = document.cookie;
try {
var match = cookie.match(/id\.chatango\.com=(.*?)(;|$)/);
if (match && match[1]) {