Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Imgur numbered images
// @namespace ouroborus.org
// @version 1
// @match https://imgur.com/gallery/*
// @grant none
// ==/UserScript==
var script = document.createElement("script");
document.head.append(script);
script.textContent = `
@ouroborus
ouroborus / README.md
Last active October 19, 2018 20:45 — forked from peterssonjonas/README.md
D3 Zoomable Scatterplot

Zoomable scatterplot of graphic card Price vs G3D Mark based on PassMark data.

@ouroborus
ouroborus / !lsi_sas_9207-8e.md
Last active December 18, 2024 06:01
9207-8e firmware update via Optiplex 7040

Environment

  • Ubuntu Server 24.04.1
  • Optiplex 7040
  • LSI SAS 9207-8e

Research

There's a number of explanations about how to update the SAS firmware. The one I started with was

@ouroborus
ouroborus / 2d-chamfer.scad
Last active January 13, 2025 08:46
2D chamfer/fillet of point in list of points
// 2d-chamfer.scad by [email protected] is marked with CC0 1.0. To view a copy of this license, visit https://creativecommons.org/publicdomain/zero/1.0/
/* Chamfer by length of new edge
* chamfer([[?,?],...], ?, ?)
* chamfer(points=[[?,?],...], idx=?, length=?)
* Chamfer by lengths of two adjacent edges
* chamfer([[?,?],...], ?, ?, ?)
* chamfer(points=[[?,?],...], idx=?, length=?, length2=?)
* Chamfer by distance from point
* chamfer([[?,?],...], ?, depth=?)