Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
<!doctype html> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |
In this tutorial, I will be explaining how to set up a simple webhook to relay your tweets to a Discord channel
// !!! Attention !!! | |
void initPort (SerialPort port) { | |
// set this encoding to extend the ascii range | |
port.Encoding = System.Text.Encoding.GetEncoding(28591); | |
} | |
// Take a string and parse the quaternion and corresponding index | |
// return: | |
// quat = Quaternion.identity if packet is invalid | |
// index = -1 if packet is invalid |
<span lang="face with tears of joy"> 😂 </span> | |
<span lang="grinning face with smiling eyes"> 😄 </span> | |
<span lang="grinning face with sweat"> 😅 </span> | |
<span lang="face with rolling eyes"> 🙄 </span> | |
<span lang="smirking face"> 😏 </span> | |
<span lang="smiling face with halo"> 😇 </span> | |
<span lang="grinning face"> 😀 </span> | |
<span lang="squinting face with tongue"> 😝 </span> | |
<span lang="grinning face with big eyes"> 😃 </span> | |
<span lang="unamused face"> 😒 </span> |
pkgname=wine-lol | |
pkgver=6.16 | |
pkgrel=1 | |
arch=(x86_64) | |
pkgdesc='A compatibility layer for running Windows programs - Staging branch with League of Legends fixes' | |
makedepends=('autoconf' 'bison' 'flex' 'make' 'gcc' 'patch' 'pkgconfig' 'vulkan-headers') | |
depends=( | |
'fontconfig' 'lib32-fontconfig' |
import time | |
import math | |
import torch | |
import taichi as ti | |
import taichi.math as tm | |
import tinytex as ttex | |
from tinycio import fsio |