Skip to content

Instantly share code, notes, and snippets.

View tinkerology's full-sized avatar

Scott Leslie tinkerology

View GitHub Profile
{
"Allele": [
{
"description": "One of two or more versions of a gene, contributing to genetic variation.",
"link": "https://en.wikipedia.org/wiki/Allele",
"linkLabel": "Allele on Wikipedia"
}
],
"AMU": [
{
@tinkerology
tinkerology / TLA2Sample.json
Last active April 6, 2025 17:11
Sample file for the TLA Extension version 2
{
"API": [
{
"description": "Application Programming Interface - A set of rules allowing software components to communicate.",
"link": "https://en.wikipedia.org/wiki/API",
"linkLabel": "API on Wikipedia"
}
],
"CPU": [
{
@tinkerology
tinkerology / TLAPrivacyPolicy.md
Created January 25, 2025 18:24
TLA Extension Privacy Policy

Privacy Policy

Last Updated: January 25, 2025

This privacy policy describes how our Chrome extension handles user data and information.

Data Collection and Usage

This extension does not collect, store, or transmit any personal information, browsing data, or user data of any kind. The extension operates entirely within your browser and does not communicate with any external servers.

{
"AAA": "American Automobile Association",
"ADHD": "Attention Deficit Hyperactivity Disorder",
"AFAIK": "As Far As I Know",
"AI": "Artificial Intelligence",
"AKA": "Also Known As",
"ASAP": "As Soon As Possible",
"ATM": "Automated Teller Machine",
"AWS": "Amazon Web Services",
"BCC": "Blind Carbon Copy",
@tinkerology
tinkerology / sign.scad
Created October 7, 2020 00:17
Sample sign showing text and shapes integrated
$fn=40;
module drawStar(sides, radius)
{
for ( i = [ 0 : sides-1] )
{
hull()
{
circle(radius/4);
@tinkerology
tinkerology / SVG_with_script.svg
Created May 14, 2020 14:39
SVG with script testing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tinkerology
tinkerology / PrintABlokExtensionTest.scad
Created March 13, 2020 03:42
Problem rendering two PrintABloks side by side
//
// Expansion set for PrinkABlok
// by Scott Leslie (@tinkerology)
// Sample STLs can be found at:
//
//
// PrintABlok by Joe Larson
// Based on : https://www.thingiverse.com/thing:4171518
//
@tinkerology
tinkerology / RoundedCube.scad
Created February 17, 2020 05:56
Create a cube with rounded sides
$fn=60;
// Answer from: https://stackoverflow.com/users/1320888/cutetare
// https://stackoverflow.com/questions/33146741/way-to-round-edges-of-objects-openscad/33289349#33289349
module roundedcube(xx, yy, height, radius) {
difference(){
cube([xx,yy,height]);
@tinkerology
tinkerology / TestAngleText.scad
Last active January 26, 2020 05:33
OpenSCAD module to draw numbers around a circle
MODEL_COUNT=1;
function countFunc(count,numbers) =
(count > 0 ? count : len(numbers));
function lableFunc(i, numbers) =
( len(numbers) > i ? numbers[i] : str(i) );
@tinkerology
tinkerology / PinewoodDerbyCar.scad
Last active October 22, 2019 02:30
Fully 3D printable pinewood derby car body #ERRF2019
$fn=15;
MM_PER_INCH=25.4;
function calcScale(scaleFactors, count, iteration) =
scaleFactors[0] +
(( scaleFactors[1]-scaleFactors[0]))*iteration/count;
// General routine to make organic shapes by rotating,