Skip to content

Instantly share code, notes, and snippets.

View gene1wood's full-sized avatar
🎩

Gene Wood gene1wood

🎩
View GitHub Profile
@gene1wood
gene1wood / AI Summary of Nociplastic pain towards an understanding of prevalent pain conditions.md
Created July 7, 2025 01:33
AI Summary of Nociplastic pain: towards an understanding of prevalent pain conditions

The document titled "Nociplastic pain: towards an understanding of prevalent pain conditions" is a comprehensive review published in The Lancet (2021) that introduces and elaborates on the concept of nociplastic pain, a third mechanistic category of chronic pain distinct from nociceptive and neuropathic pain.

🔍 Summary of Key Points:

1. Definition and Concept

  • Nociplastic pain is caused by altered nociceptive function without clear tissue damage or nerve injury.
  • It is typically associated with central nervous system (CNS) dysfunction, including amplified sensory processing, altered pain modulation, and non-pain symptoms like fatigue, poor sleep, mood disturbances, and memory issues.

2. Examples of Nociplastic Pain Conditions

@gene1wood
gene1wood / AI summary of Antidepressants for Pain Management in Adults with Chronic Pain: A Network Meta-Analysis.md
Last active July 7, 2025 01:33
AI summary of Antidepressants for Pain Management in Adults with Chronic Pain: A Network Meta-Analysis

Yes, here is a summary of the document titled:


Title: Antidepressants for Pain Management in Adults with Chronic Pain: A Network Meta-Analysis Published by: NIHR Health Technology Assessment, October 2024 DOI: 10.3310/MKRT2948 Lead Author: Hollie Birkinshaw et al.


@gene1wood
gene1wood / smtp2go-sms-forward.js
Created June 28, 2025 01:09
Twilio function code that BAM Bay Area Mashers use to forward SMS to email
var nodemailer = require("nodemailer");
exports.handler = function(context, event, callback) {
var smtpTransport = nodemailer.createTransport({
host: "mail.smtp2go.com",
port: 2525, // 8025, 587 and 25 can also be used.
auth: {
user: context.SMTP_USERNAME,
pass: context.SMTP_PASSWORD,
},
});
@gene1wood
gene1wood / GL.iNet SDK4.0 API-Guide.pdf
Last active June 27, 2025 14:17
GL.iNet SDK4.0 API Documentation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gene1wood
gene1wood / Sal Caruso.md
Last active June 24, 2025 23:53
Call of Cthulhu character : Sal Caruso

Salvatore "Sal" Caruso is a newspaper reporter in the middle of his career. He's worked at the Arkham Advertiser for 9 years and occupies a solid middle rung in the newsroom hierarchy. He started at the Advertiser after the war. He had been in the Signal Corps stationed in Libya early in the North Africa campaign, then transferred to Naples in '43 handling field transmissions during the liberation and finally slogged his way north into the Po Valley in Northern Italy until the end of the war in '45 where he saw just enough action to never romanticize it. The war didn't break him, but it aged him. He came back thinner and quieter.

His thick floppy black hair, impossible to fully tame, tends to fall into his eyes when he's leaning over his notepad. He prefers to wear a dark wool suit jacket, single breasted, with a narrow lapel over a white dress shirt with a skinny black tie and pleated high-waisted slacks with suspenders rather than a belt, an old-fashioned touch he never quite let go of. He wears well-polis

@gene1wood
gene1wood / what-site-creates-vqr.vc-qr-code-redirects.md
Created April 23, 2025 04:22
What site creates vqr.vc qr code redirects?
@gene1wood
gene1wood / how-to-disable-google-search-ai-overview-in-firefox.md
Last active July 22, 2025 11:49
How to disable Google Search AI Overview in Firefox
  • In Firefox, open a tab to about:config
  • Enter browser.urlbar.update2.engineAliasRefresh and click the + sign on the right
    • This will now show the value for the Boolean as true which is correct
    • Be setting this to true you enable the option to add a custom search engine to Firefox
  • Go to Settings or navigate to about:preferences#search
  • Under Search Shortcuts click Add
    • Search enging name : Google without AI
    • Engine URL : https://www.google.com/search?client=firefox-b-1-d&channel=entpr&udm=14&q=%s
    • Alias (if there is an alias field present) : gnai or whatever alias you'd like here. This is not required
  • Click Add Engine
@gene1wood
gene1wood / Rebuilding_Coleman_Stoves.md
Created February 24, 2025 02:50
Rebuilding Coleman Stoves

Rebuilding Coleman Stoves

(Suitcase Camp Stove models ONLY)

provided by John LeBlanc, [email protected] [address updated 2may07] Date: Thu, 09 Mar 2000 08:12:05 -0500 (EST)

I typed this up for another list and thought that some on here might be able to use the information. I am working on a similar one for lanterns and will send it along when I get

@gene1wood
gene1wood / show-wasted-bits.bash
Created January 16, 2025 23:56
Analyze FLAC file to determine if it has wasted bits
#!/bin/bash
# https://hydrogenaud.io/index.php/topic,97746.0.html
temp_file="$(mktemp)"
trap 'rm -f -- "$temp_file"' EXIT
bps="$( metaflac --show-bps "$1" )"
flac --analyze --stdout "$1" 2>/dev/null | grep --fixed-strings 'wasted_bits' | cut -d '=' -f 3 | cut -f 1 > "$temp_file"
tbps=0
n=0
@gene1wood
gene1wood / show_request.py
Created November 29, 2024 18:29
Simple script to launch a Flask listener on all URLs and print out incoming requests with headers and payload
from __future__ import print_function
import sys
from flask import Flask, request
import json
app = Flask(__name__)
@app.route('/', defaults={'path': ''}, methods=['GET', 'HEAD', 'POST'])
@app.route('/<path:path>', methods=['GET', 'HEAD', 'POST'])
def show_payload(path):