- SDLPoP: Prince of Persia (SDL port)
- ecwolf: Wolfenstein3D, Spear of Destiny (SDL port)
- GZDoom: idTech1 engine port. Doom I & II, Heretic, Hexen & more (Vulkan, OpenGL renderers)
- Raze: Build engine port. Supports: Duke Nukem 3D, Redneck Rampage, Blood, Shadow Warrior (Vulkan, OpenGL renderers)
- eduke32: Duke Nukem 3D source port
- vkQuake: Quake I (Vulkan renderer)
- vkQuake2: Quake II (Vulkan renderer)
- ioQuake3: Quake III (SDL port)
-
You need to know the APP_ID, e.g. find it in the Steam store URL.
-
You need to own the game on your account.
-
This downloads Windows version of the game, which is handy to play games with no MacOS/Linux native support on source ports (e.g. vkquake, gzdoom, raze). You can change
+@sSteamCmdForcePlatformType
tolinux
ormacos
if you like -
Install steamcmd (MacOS):
brew install --cask steamcmd
This file contains hidden or 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
#!/usr/bin/env ruby | |
# vim: set ft=ruby: | |
# frozen_string_literal: true | |
require "bundler/setup" | |
require "dry/cli" | |
module ZX | |
module CLI | |
class SudoCommand < Dry::CLI::Command |
This file contains hidden or 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
#!/usr/bin/env ruby | |
current = 'Silver' | |
if current = 'Gold' | |
# ^ oh no, a mistake! should've been == | |
puts 'Yay! Found gold' | |
else | |
puts "#{current} is not gold" | |
end |
This file contains hidden or 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
#!/usr/bin/env python3 | |
from time import sleep | |
from tasks import add | |
result = add.delay(4,4) | |
sleep(0.1) # wait 0.1s | |
result.ready() | |
print(result.get()) |
This file contains hidden or 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
#!/usr/bin/env python3 | |
from time import sleep | |
from tasks import add | |
result = add.delay(4,4) | |
sleep(0.1) # wait 0.1s | |
result.ready() | |
print(result.get()) |
This file contains hidden or 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
#!/bin/sh | |
## | |
# H.265 (HEVC) codec using NVidia hardware accelleration | |
# | |
#ffmpeg \ | |
# -y \ | |
# -vsync 0 \ | |
# -hwaccel cuda -hwaccel_output_format cuda \ | |
# -c:v hevc_cuvid \ |
This file contains hidden or 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
--- | |
version: '2' | |
volumes: | |
vault: | |
networks: | |
vault: | |
services: |
This file contains hidden or 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
--- | |
version: '2.1' | |
networks: | |
app-net: | |
volumes: | |
db-data: | |
lib-data: |