301 Moved Permanently
Location: https://cxxrtl.org/protocol.html
301 Moved Permanently
Location: https://cxxrtl.org/protocol.html
#!/bin/bash | |
xrandr --newmode "480x480_60.00" 17.50 480 496 536 592 480 483 493 500 -hsync +vsync | |
xrandr --addmode VIRTUAL1 480x480_60.00 | |
xrandr --output VIRTUAL1 --mode 480x480_60.00 --left-of $(xrandr | head -n2 | tail -n1 | sed 's/\ .*$//g') | |
gst-launch-1.0 -q -e ximagesrc endx=479 endy=479 ! video/x-raw,format=BGRx,framerate=25/1,width=480,height=480 ! videoscale ! videoconvert ! videorate ! video/x-raw,format=RGB16,framerate=25/1,width=128,height=128 ! fdsink sync=false async=true | dd conv=swab bs=1024 | python3 -c " | |
import sys | |
import socket | |
import os | |
import time |
This document has been superseded by the one maintained by chriskrycho.
# Build an statically linked rustc (with host=x86_64-unknown-linux-musl) | |
# Last tested on: 9316ae515e2f8f3f497fb4f1559910c1eef2433d | |
# Usage: | |
# # patches must be in $(pwd) | |
# $ ls *.patch | |
# liblibc.patch rust.patch | |
# |