In this guide we will only focus on using the prebuilt images from Docker Hub.
Prerequisites: You have Git, Docker, Docker compose and Nginx pre-installed.
Clone Mastodon's repository.
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 |
In this guide we will only focus on using the prebuilt images from Docker Hub.
Prerequisites: You have Git, Docker, Docker compose and Nginx pre-installed.
Clone Mastodon's repository.
{ | |
"name" : "Mixamo", | |
"url" : "", | |
"bones" : { | |
"mixamorig:Hips" : "hips", | |
"mixamorig:Spine" : "spine", | |
"mixamorig:Spine1" : "spine-1", | |
"mixamorig:Spine2" : "chest", | |
"mixamorig:Neck" : "neck", |
Please view the deleted tweet list in our main archive.
#!/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. |
# Script for quickbms: https://aluigi.altervista.org/quickbms.htm | |
# Extracts *.unity3d files | |
# (c) 2021-07-21 by Lichtso | |
endian big | |
# Header | |
idstring "UnityFS" | |
Padding 5 | |
get FILE_VERSION byte |
[https://github.com/ethz-adrl/control-toolbox] Control Toolbox - An Open-Source C++ Library for Robotics, Optimal and Model Predictive Control
[https://github.com/davepagurek/DynamicKelvinlets] Dynamic Kelvinets to add secondary animation
[http://domedb.perception.cs.cmu.edu/monototalcapture.html] Yassar's group's monocular mocap
[https://arxiv.org/abs/1812.11103v3] Learning to Walk via Deep Reinforcement Learning
[https://arxiv.org/abs/1810.02363v4] Recurrent Transition Networks for Character Locomotion
[http://www.andreasaristidou.com/publications/papers/CUEDF-INFENG,%20TR-632.pdf] FABRIK
[https://github.com/dgriff777/a3c_continuous] A3 Continuous Character Controller
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, | |
} |
// 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 <[email protected]> |