Skip to content

Instantly share code, notes, and snippets.

@ApprikatAI
ApprikatAI / calibration_datav3.txt
Created November 15, 2024 20:21 — forked from bartowski1182/calibration_datav3.txt
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
@ApprikatAI
ApprikatAI / snake_game.py
Created June 29, 2024 00:11 — forked from wynand1004/snake_game.py
A Simple Snake Game made in Python 3
# Simple Snake Game in Python 3 for Beginners
# By @TokyoEdTech
import turtle
import time
import random
delay = 0.1
# Score
@ApprikatAI
ApprikatAI / install-firmware-compiler.sh
Created June 11, 2023 14:20 — forked from Kruze17/install-firmware-compiler.sh
This shell script installs required packages for building klipper firmware for 3d printer on an Ubuntu machine.
#!/bin/bash
# This script installs Klipper firmware compiler on an Ubuntu 18.04 machine
# Install only required system packages for making menuconfig and building klipper firmware
install_packages()
{
# Install git package if already not present
PKGLIST="git"
# Install make and gcc package
PKGLIST="${PKGLIST} build-essential"