use the x64 Native Tools Command Prompt for VS 2022
git clone https://github.com/facebookresearch/xformers.git
cd xformers
【获取权限命令】 | |
wget -O su.sh bit.ly/akuhGet && chmod +x su.sh && ./su.sh | |
如果没有运行 su.sh | |
就运行 bash su.sh |
{ | |
"shell_cmd": "gradlew.bat assembleDebug", | |
"working_dir": "$project_path", | |
"selector": "source.java", | |
"env": {"JAVA_HOME": "C:\\Program Files\\Android\\Android Studio\\jbr"} | |
} |
git filter-branch --subdirectory-filter sources/web_chat -- --all | |
git push -f origin main |
RunUAT.bat BuildGraph -target="Make Installed Build Win64" -script="Engine/Build/InstalledEngineBuild.xml" -set:HostPlatformOnly=true -set:WithAndroid=true |
use the x64 Native Tools Command Prompt for VS 2022
git clone https://github.com/facebookresearch/xformers.git
cd xformers
Open properties on the Chrome shortcut | |
in the Target field at the very end after the quotation marks add --disable-backgrounding-occluded-windows | |
--disable-backgrounding-occluded-windows |
wordpress: | |
image: wordpress | |
links: | |
- mariadb:mysql | |
environment: | |
- WORDPRESS_DB_PASSWORD=password | |
- WORDPRESS_DB_USER=root | |
ports: | |
- "10000:80" | |
volumes: |
gst-launch-1.0 -v videotestsrc ! video/x-raw,width=1280,height=640 ! glimagesink
gst-launch-1.0 -v videotestsrc ! video/x-raw,width=1280,height=640 ! videoconvert ! x264enc key-int-max=12 byte-stream=true ! mpegtsmux ! tcpserversink port=8888 host=0.0.0.0
vlc using tcp://192.168.1.192:8888
const char* vert = | |
R"END( | |
#version 120 | |
attribute vec2 position; | |
void main() | |
{ | |
gl_Position = vec4( position, 0.0, 1.0 ); | |
} |
#!/bin/sh | |
while true; do | |
cat /sys/class/thermal/thermal_zone*/temp | |
sleep 1 | |
done |