Skip to content

Instantly share code, notes, and snippets.

View dlwiii's full-sized avatar

Daniel Williams dlwiii

View GitHub Profile
@Denton-L
Denton-L / State of California Sexual Harassment Prevention Training Skip
Last active May 1, 2025 05:54
Speedrunning State of California Sexual Harassment Prevention Training
If, as part of your job, you're obligated to do this training, you don't
actually have to wait for the button to ungrey as you sit through the dialog.
You can simply open up the JavaScript console of your browser and execute
DS.pubSub.trigger(DS.events.presentation.ON_OBJECT_EVENT, "next_pressed");
and this will automatically take you to the next slide. Just keep spamming this
until you're through the training. If you're forced to answer a question,
remember that the answer is probably true!
@markryd
markryd / nancy-linqpad.cs
Created March 7, 2016 00:39
Run Nancy in Linqpad
// nuget in Nancy and Nancy.Hosting.Self
void Main()
{
using (var host = new Nancy.Hosting.Self.NancyHost(new Uri("http://localhost:8080"), new LinqpadNancyBootstrapper()))
{
host.Start();
Console.ReadLine();
}
}