Zoomable scatterplot of graphic card Price vs G3D Mark based on PassMark data.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 = ` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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=?) |
OlderNewer