This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; PlatformIO Project Configuration File | |
; | |
; Build options: build flags, source filter | |
; Upload options: custom upload port, speed and extra flags | |
; Library options: dependencies, extra library storages | |
; Advanced options: extra scripting | |
; | |
; Please visit documentation for the other options and examples | |
; https://docs.platformio.org/page/projectconf.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:) select a.a, b.a from (select 1 as a) a left join (select 2 as a) b using a | |
SELECT | |
a.a, | |
b.a | |
FROM | |
( | |
SELECT 1 AS a | |
) AS a | |
LEFT JOIN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM archlinux:base-devel | |
# install sudo && git | |
RUN set -ex \ | |
# enable multilib | |
&& echo "[multilib]" >> /etc/pacman.conf \ | |
&& echo "Include = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf \ | |
&& pacman --noconfirm -Sy \ | |
&& pacman --noconfirm -S git \ | |
&& useradd -m user \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"GameNameID" "UNKNOWN" | |
"appid" "0" | |
"TimeSubmitted" "1596112123" | |
"ResolutionX" "1920" | |
"ResolutionY" "1080" | |
"CaptureDescriptionID" "Desktop OpenGL NV12 + libx264 main (4 threads)" | |
"DecoderDescriptionID" "libavcodec software decoding with 4 threads" | |
"BandwidthLimit" "15000" | |
"FramerateLimit" "0" |