Skip to content

Instantly share code, notes, and snippets.

@jfhr
jfhr / ductf-2021-spaghetti.cs
Created September 26, 2021 18:20
Solution draft for the DownUnderCTF 2021 challenge "Flying Spaghetti Monster". See https://jfhr.me/down-under-ctf-2021
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Net.Sockets;
using System.Numerics;
using System.Text;
namespace ConsoleApp1
{
@jfhr
jfhr / lighthouserc.schema.json
Last active August 7, 2021 13:43
Unofficial .lighthouserc.json schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": ".lighthouserc",
"description": "Lighthouse CI configuration JSON schema. Reference: https://github.com/GoogleChrome/lighthouse-ci/blob/main/docs/configuration.md",
"type": "object",
"properties": {
"ci": {
"type": "object",
"properties": {
"collect": {