Skip to content

Instantly share code, notes, and snippets.

View Epicinver's full-sized avatar
💭
Snap back to reality, oh there goes gravity...

Butter Epicinver

💭
Snap back to reality, oh there goes gravity...
View GitHub Profile
@Epicinver
Epicinver / HackerTyper.py
Created July 24, 2024 13:35
hacker Typer but you can make you're own text. This opens up a Google Drive link so download it and extract using 7-zip.
import webbrowser
def open_google_drive_link():
url = "https://drive.google.com/file/d/1BsVQ48Jlas-JpR_QL-5z1QIBqUK5Aona/view?usp=sharing"
webbrowser.open(url)
if __name__ == "__main__":
open_google_drive_link()
@Epicinver
Epicinver / Chrome.py
Created July 14, 2024 16:12
This is the chrome launcher that i couldn't publish, If you want the code i've detailed it
import webbrowser
# Path to your Google Chrome executable
chrome_path = 'C:/Program Files/Google/Chrome/Application/chrome.exe %s'
# URL to open
url = 'http://www.google.com'
# Open the URL in Google Chrome
webbrowser.get(chrome_path).open(url)
/*
TODO:
- smooth the angle by taking weighted average of past positions
- use dynamic SVG to render proper shadow for all angles
- fix TS errors
*/
import React, { useEffect, useRef } from "react";
import "./styles.css";