Movatterモバイル変換


[0]ホーム

URL:


Skip to content
Search Gists
Sign in Sign up

Instantly share code, notes, and snippets.

Discover gists

@LukasMFR
LukasMFR /chatgpt-conversation-exporter.js
CreatedDecember 12, 2025 12:36
JavaScript snippet to export a ChatGPT conversation from the web UI to a clean Markdown file, with correct user/assistant attribution, code block preservation, and basic media placeholders. Designed to be run directly in the browser console (Safari/Chrome/Firefox).
(()=>{
functionformatDate(date=newDate()){
returndate.toISOString().split("T")[0];
}
functionescapeMarkdown(text){
returntext
.replace(/\\/g,"\\\\")
.replace(/\*/g,"\\*")
.replace(/_/g,"\\_")
@stormwild
stormwild /node.md
Last activeDecember 17, 2025 10:49
Node Optimization

Optimization Flags

How do I determine the correct "max-old-space-size" for node.js?

The configured max-old-space-size had a higher limit than the total amount of RAM that the machine had. – Borjante

Worth trying --optimize-for-size to reduce memory usage. – Constantinos

About This Document

This style guide was generated byClaude Code through deep analysis of theFizzy codebase - 37signals' open-source project management tool.

Why Fizzy matters: While 37signals has long advocated for "vanilla Rails" and opinionated software design, their production codebases (Basecamp, HEY, etc.) have historically been closed source. Fizzy changes that. For the first time, developers can study a real 37signals/DHH-style Rails application - not just blog posts and conference talks, but actual production code with all its patterns, trade-offs, and deliberate omissions.

How this was created: Claude Code analyzed the entire codebase - routes, controllers, models, concerns, views, JavaScript, CSS, tests, and configuration. The goal was to extract not justwhat patterns are used, butwhy - inferring philosophy from implementation choices.

@rvrsh3ll
rvrsh3ll /windows-keys.md
CreatedFebruary 18, 2024 22:44
Windows Product Keys

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@mariotaku
mariotaku /README.md
Last activeDecember 17, 2025 10:40
Install tailscale on webOS TV
  1. Have your TVrooted
  2. Open Terminal with SSH client ordev-manager-desktop
  3. Runcurl -fsSL https://gist.githubusercontent.com/mariotaku/f7228c5459fc7ad2172a2b69dd51a4eb/raw/webosbrew-install-tailscale.sh | sh and wait for it to finish
@ellsies
ellsies /Crossover.sh
Last activeDecember 17, 2025 10:37
Crackover (Complete free version of crossover)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test"${PIDOF}"&&test -f"${PIDOF}")|| brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d"${CO_PWD}"|| CO_PWD=/Applications/CrossOver.app/Contents/MacOS
@BirkhoffLee
BirkhoffLee /README.md
Last activeDecember 17, 2025 10:36
One-liner Image to Markdown in Terminal with Vision Language Model (VLM)

Read the image from clipboard, convert it to Markdownusing a system prompt template, and copy the Markdown resultwhile rendering it to the terminal withGlow.

Usage

After setting it up you can do it with a one-liner:

$ impaste| OPENROUTER_KEY=xxx llm --template md -a -| tee>(pbcopy)>(glow -)> /dev/null
@bartowski1182
bartowski1182 /calibration_datav3.txt
Last activeDecember 17, 2025 10:30
Calibration data provided by Dampf, combines his own efforts on top of Kalomaze's. Used for calibrating GGUF imatrix files
In addition to a significant decrease in hepatic lipid accumulation in the IOE group, which inhibited energy intake by propionate enrichment, hepatic lipids were also significantly reduced in the mice in the IOP group, which was largely enriched with butyrate. Compared with the IOE group, IOP had a stronger regulatory effect on hepatic metabolism and triglyceride metabolism and higher levels of TCA cycle in the host. In addition, butyrate has the ability to promote browning of white adipose tissue (WAT) to brown adipose tissue (BAT).^[@ref39],[@ref40]^ WAT stores energy, whereas BAT uses energy for heating and consequently host energy expenditure increases.^[@ref41],[@ref42]^ However, adipose tissue weight does not change after WAT browning.^[@ref43]^ Therefore, the weight of adipose tissue of mice in the IOP group dominated by butyrate was greater than that of the mice in the IOE group dominated by propionate.
In conclusion ([Figure [7](#fig7){ref-type="fig"}](#fig7){ref-type="fig"}C), the improvement of ob
@aallan
aallan /mac-vendor.txt
Last activeDecember 17, 2025 10:28
List of MAC addresses with vendors identities
000000Officially Xerox
000001SuperLAN-2U
000002BBN (was internal usage only, no longer used)
000003XEROX CORPORATION
000004XEROX CORPORATION
000005XEROX CORPORATION
000006XEROX CORPORATION
000007XEROX CORPORATION
000008XEROX CORPORATION
000009powerpipes?
@letsautomatenet
letsautomatenet /esphome_install.sh
Last activeDecember 17, 2025 10:27
ESPHome Install - Ubuntu
#!/bin/bash
# If you're having difficulty running this file then ensure the file has execute permissions
# chmod 755 esphome_install.sh
# To run the script type:
# sudo ./esphome_install.sh
### START - Install Docker ###
# Remove any old docker files
NewerOlder

[8]ページ先頭

©2009-2025 Movatter.jp