Skip to content

Instantly share code, notes, and snippets.

View PierceLBrooks's full-sized avatar
🇵🇸

Pierce Brooks PierceLBrooks

🇵🇸
View GitHub Profile
@travisbrown
travisbrown / NickJFuentes-followers.csv
Last active January 27, 2023 04:14
Followers for @NickJFuentes (ID, screen name, follower count; some info missing for suspended accounts)
We can't make this file beautiful and searchable because it's too large.
1618117522473062401,AmerCrusader,0
805901211291422720,PatriotGulag,103
897873361161732098,presidentmeeks,40
1369024312401870852,obama_baroque,154
1365839268476645378,vylpill,8705
1616533685427208192,lpbr0014,102
1606569725235978240,chitochipper,37
1530966028221661184,originalpod5,9
1586008148552212481,TheFaddedGamer,12
1589871939786620929,Truthyfren,1253
@melroy89
melroy89 / mastodon-docker-setup.md
Last active March 19, 2024 18:24 — forked from akuechl/mastodon-docker-setup.md
Mastodon Docker Setup - most complete and easiest guide online
@frnsys
frnsys / mixamo.json
Created July 25, 2022 20:38
Mixamo rig mapping for BVH retargeter
{
"name" : "Mixamo",
"url" : "",
"bones" : {
"mixamorig:Hips" : "hips",
"mixamorig:Spine" : "spine",
"mixamorig:Spine1" : "spine-1",
"mixamorig:Spine2" : "chest",
"mixamorig:Neck" : "neck",
@salcoast
salcoast / MrAndyNgo-deleted.md
Last active November 9, 2022 05:47
Updated Deleted Tweets for MrAndyNgo

Deleted tweets for MrAndyNgo

Please view the deleted tweet list in our main archive.

@interfect
interfect / castanet.sh
Last active July 20, 2024 08:50
Set up a Chromecast from a Linux PC, without an Android or iOS mobile device and without Google Home
#!/usr/bin/env bash
# castanet.sh: Script to connect a chromecast to a WiFi network.
#
# Allows you to put your Chromecast on WiFi and do Chromecast initial setup
# without using the Google Home app at all, just using a normal Linux computer.
#
# You do need your Chromecast to be on Ethernet, or (untested) to join its setup WiFi
# network with your PC, and you also need to find out its IP yourself with e.g.
# Wireshark.
@meshula
meshula / character_anim.md
Created May 11, 2021 21:54
Character animation notes

Character Animation

@arthurbacci
arthurbacci / async-input.rs
Created April 9, 2021 22:17
A example of async input using threads in Rust
use std::thread;
use std::sync::mpsc::{self, TryRecvError};
use std::io;
use std::time::Instant;
struct CircularIter<T> where T: Copy {
data: Vec<T>,
index: usize,
}
@dov
dov / create_triangle_gltf.cpp
Created February 25, 2021 21:03
Example of how to build a gltf file from scratch with tiny_gltf.h
// An example of how to generate a gltf file from scratch. This example
// was translated from the pygltlib documentation in the pypi project page,
// which in turn is based on the Khronos Sample Models at:
//
// https://github.com/KhronosGroup/glTF-Sample-Models
//
// This example is released under the MIT license.
//
// 2021-02-25 Thu
// Dov Grobgeld <dov.grobgeld@gmail.com>
@Nearcyan
Nearcyan / stylegan2_psi_translation_video.md
Last active October 1, 2022 15:22
create stylegan2 psi-translation video

Make psi-translation videos

Short file on how to make psi-transition videos with StyleGan2. This assumes you are already able to run StyleGan2.

example

Edit generator

Edit generate_images() in run_generator.py to iterate through psi values instead of seeds.

@wayhoww
wayhoww / converter.h
Created January 3, 2021 16:18
Boost.Python: Automatical Type Conversion
/**
* For Boost.Python
*
* Automatically convert between Python list, dict, tuple and C++ STL std::vector, std::map, std::tuple, respectively.
* --------------------------------------
* 自动转换 Python 和 STL 的几个常用数据类型。
*
* I am familiar with neither metaprogramming nor Boost.Python. This header works but I believe
* there are better ways (or even existing libraries) to do these conversions. Please comment at
* this page to help me improve it.