This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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"; |