Skip to content

Instantly share code, notes, and snippets.

View FossPrime's full-sized avatar
💭
GitLab rocks!

Ray Foss FossPrime

💭
GitLab rocks!
View GitHub Profile
@juniorcesarabreu
juniorcesarabreu / How to Install Older version of Chrome Extensions.md
Last active September 21, 2025 06:55
How to Install Older version of Chrome Extensions
@rafaelsq
rafaelsq / index.html
Last active December 29, 2024 15:02
TOTP with Web Crypto API
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<title>TOTP</title>
</head>
<body>
<section class="section">
@a9udn9u
a9udn9u / geforce-now-resolution-interceptor.py
Last active November 3, 2025 00:01
GeForce Now 1440P on Linux Chrome
import json
import re
from mitmproxy import http
url_pattern = re.compile(r"^.*\.nvidiagrid.net/v2/session")
user_agent_pattern = re.compile(r"(Mozilla\/[\d\.]+) \(.+?\)")
def request(flow: http.HTTPFlow) -> None:
# Check if the request matches the regex pattern
if url_pattern.match(flow.request.pretty_url):