Skip to content

Instantly share code, notes, and snippets.

View ukw16's full-sized avatar

Tim ukw16

View GitHub Profile
@tilda
tilda / priconne_and_vpns.md
Last active December 27, 2025 10:42
defeating dmm's skill issue

How to play PriConne on PC without hassling with VPNs constantly

Sidenote: you will still need one, but by the end of the guide you should only need to deal with this process once per year, assuming nothing changes.

Note

This guide only covers VPN setup, creating DMM account & installing Game Player is considered out of scope (this is long enough as is).

Use Nyatsu's DMM guide for guidance on getting set up, or check #jp-questions pins in maincord.

Warning

This guide was rewritten in August 2025 to no longer use TunnlTo. If you need the old version, it can still be accessed here.

@ScribbleGhost
ScribbleGhost / Parse_a_local_HTML_file_with_Python_3_and_Beautiful_Soup_4.py
Last active February 18, 2025 21:15
Parse a local HTML file with Python 3 and Beautiful Soup 4
from bs4 import BeautifulSoup
soup = BeautifulSoup(open("C:\\path\\to\\your\\html\\file.html", encoding="utf8"), "html.parser")
print(soup.find_all("div", class_="someclass"))