Skip to content

Instantly share code, notes, and snippets.

View ShrineFox's full-sized avatar
🦊

ShrineFox ShrineFox

🦊
View GitHub Profile
@ShrineFox
ShrineFox / bluesky-stylus-theme.css
Last active November 8, 2023 13:18
Twitter/BlueSky Video Background Stylus Theme + Greasemonkey Extension
/* Last Updated 11/08/2023 */
:root
{
--theme: rgba(20, 255, 0, .8);
--theme-transparent: rgba(20, 255, 0, .35);
--image_dimness: rgba(0,0,0,0.2);
--video_opacity: 0.5;
--bgimage: url(https://cdn.discordapp.com/attachments/488899879016595468/1057703830567002132/galaxy.jpg);
--darken: rgba(0,0,0,0.1);
@ShrineFox
ShrineFox / EvflDl.cs
Last active September 27, 2023 17:40
Scrape website content within a certain div as plain text, ignoring unwanted divs
using HtmlAgilityPack;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;