Skip to content

Instantly share code, notes, and snippets.

View brandon-lockaby's full-sized avatar

Brandon Lockaby brandon-lockaby

View GitHub Profile
@tgsstdio
tgsstdio / BasicModel.py
Created February 11, 2016 04:46
[PYTHON] custom Blender object model exporter to json
# ExportHelper is a helper class, defines filename and
# invoke() function which calls the file selector.
import bpy
import json
import mathutils
import os
from bpy_extras.io_utils import ExportHelper, axis_conversion
from bpy.props import StringProperty, BoolProperty, EnumProperty, FloatProperty, FloatVectorProperty, IntProperty
from bpy.types import Operator
@AnomalousUnderdog
AnomalousUnderdog / SelectedKeyframesLength.py
Last active January 18, 2022 04:42
Blender Add-on for showing number of frames of selected keyframes in Dopesheet
bl_info = {
"name": "Show Length of Selected Keyframes",
"description": "Show number of frames of selected keyframes.",
"author": "Ferdinand Joseph Fernandez",
"version": (1, 1),
"location": "Dopesheet > Key > Get Selected Keyframes Length (default hotkey: Q while in Dopesheet)",
"support": "TESTING",
"category": "Animation",
}
@p2or
p2or / blender-sequence-bakery.py
Last active June 7, 2024 15:17
Extended version of Animated Render Baker #Blender
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@Nerixyz
Nerixyz / tiktok.js
Created October 20, 2020 21:21
hackerCD - intercept canvas calls
function wrapObject(fn, that, args, name) {
const instance = fn.apply(that, args);
instance.__base = instance;
return new Proxy(instance, {
get: (target, key) => {
if(!['__base'].includes(key)) console.log(`[GET] ${name}.${key}`);
const value = target[key];
return value;
},
set: (target, key, value) => {
@benfoxall
benfoxall / generate.sh
Last active March 31, 2022 15:15
Generate video of satellite imagery
# Extract frames from GEOS Image Viewer to generate a video
# https://www.star.nesdis.noaa.gov/goes/fulldisk_band.php?sat=G16&band=GEOCOLOR&length=12&dim=1
mkdir -p images output
BASE=https://cdn.star.nesdis.noaa.gov/GOES16/ABI/FD/GEOCOLOR/
DIM=1808x1808
curl $BASE \
| grep -o -e "\".*GEOCOLOR-$DIM.jpg\"" \
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@slowpeek
slowpeek / nvidia-smi
Last active May 5, 2024 20:21
nvidia-smi dmon adapter: 525, 530, 535, 545
#!/usr/bin/env bash
# MIT license (c) 2022-2024 https://github.com/slowpeek
# Homepage: https://gist.github.com/slowpeek/006680bb06e671bc489d4a3274ff3d19
: <<'README'
Applicable nvidia driver versions: 525, 530, 535, 545, 550
ABOUT --
@pszemraj
pszemraj / snapshot_download.py
Created May 7, 2023 20:01
snapshot_download from sentence transformers - download model repos without git
# pip install transformers
from fnmatch import fnmatch
from pathlib import Path
from typing import Dict, List, Optional, Union
from packaging import version
import os
from huggingface_hub import HfApi, HfFolder, cached_download, hf_hub_url
import huggingface_hub
@thistleknot
thistleknot / tensorboard.py
Last active December 5, 2023 07:18
tensorboard with ema embeddings
#!/usr/bin/env python
# coding: utf-8
import lade
from transformers import AutoTokenizer, AutoModel
import torch
lade.augment_all()
lade.config_lade(LEVEL=5, WINDOW_SIZE=7, GUESS_SET_SIZE=7, DEBUG=0)
from datasets import load_dataset
from torch.utils.tensorboard import SummaryWriter
@sekstini
sekstini / KVCacheFun.ipynb
Last active November 28, 2023 10:12
Answering what happens when you give the KV-Cache of an instruct model to its base model. (update: better version in the comments)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.