-
Save
greenwtf.ps1
(included in the gist below) to a directory of your choosing. -
Copy
steam_api.dll
to that directory, from the Steamworks SDK 1.34 (that exact version) -
Create a
steam_appid.txt
file in that directory, containing an app ID that you own. -
Launch Steam, logged in as your developer account.
-
Run the script like this:
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
11:46:47.874665: _v2-entry-point[34134]: argv (unescaped): /home/deck/.local/share/Steam/steamapps/common/SteamLinuxRuntime/scout-on-soldier-entry-point-v2 -- /home/deck/.local/share/Steam/steamapps/common/SLAMMED/SLAMMED --no-sandbox | |
11:46:47.886757: pressure-vessel-wrap[34134]: I: pressure-vessel version 0.20230227.0 | |
11:46:48.009096: pressure-vessel-wrap[34134]: I: Applying "/home/deck/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier/soldier_platform_0.20230228.42394/usr-mtree.txt.gz" to "/home/deck/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier/var/tmp-Q73G21/usr"... | |
11:46:48.423167: pressure-vessel-wrap[34134]: I: pv_runtime_provide_container_access: Setting up runtime without using bwrap | |
11:46:48.423293: pressure-vessel-wrap[34134]: I: EGL ICD #0 at /usr/share/glvnd/egl_vendor.d/50_mesa.json: libEGL_mesa.so.0 | |
11:46:48.423318: pressure-vessel-wrap[34134]: I: Vulkan ICD #0 at /usr/share/vulkan/icd.d/radeon_icd.x86_64.json: /usr/lib/libvulkan_radeon.so | |
11:46:48.423338: pressure-v |
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
Computer Information: | |
Manufacturer: Valve | |
Model: Jupiter | |
Form Factor: Laptop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: AuthenticAMD | |
CPU Brand: AMD Custom APU 0405 | |
CPU Family: 0x17 |
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
"use strict"; | |
// based on unutbu's stackoverflow answer | |
// https://stackoverflow.com/a/40958702/54829 | |
// which is based on Evan Miller's blog post | |
// http://www.evanmiller.org/ranking-items-with-star-ratings.html | |
function starsort(ratings) { | |
function sum(array) { return array.reduce((x, y) => x + y, 0) }; |
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
#!/bin/bash -e | |
rm -rf example | |
git init example | |
cd example | |
cat > file.txt << EOF | |
0 | |
0 | |
0 | |
0 | |
0 |
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
#!/bin/sh -x | |
rm -rf sample | |
git init sample | |
cd sample | |
echo hello > testfile | |
git add testfile | |
git commit -m 'added testfile' | |
git branch other | |
echo goodbye > testfile | |
git commit -am 'modified testfile' |
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
[{'friend':'luke','email':'+ACcAfQBdADsAYQBsAGUAcgB0ACgAJwBNAGEAeQAgAHQAaABlACAAZgBvAHIAYwBlACAAYgBlACAAdwBpAHQAaAAgAHkAbwB1ACcAKQA7AFsAewAnAGoAbwBiACcAOgAnAGQAbwBuAGU-'}] |
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
Vagrant.configure(2) do |config| | |
config.vm.box = "centos/7" | |
config.vm.provision "shell", run: "always", inline: <<-SHELL | |
set -x | |
sudo yum -y -q install wget java-1.8.0-openjdk-devel | |
sudo yum -y -q group install "Development Tools" | |
wget -q https://github.com/bazelbuild/bazel/releases/download/0.2.3/bazel-0.2.3-installer-linux-x86_64.sh | |
chmod +x bazel-0.2.3-installer-linux-x86_64.sh | |
sudo ./bazel-0.2.3-installer-linux-x86_64.sh | |
export PATH=$PATH:/usr/local/bin |
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
C:\git\main >pip install -U git+https://github.com/mhils/clint.git | |
Downloading/unpacking git+https://github.com/mhils/clint.git | |
Cloning https://github.com/mhils/clint.git to c:\users\dfabulich\appdata\local\temp\pip-yc40fw-build | |
Running setup.py egg_info for package from git+https://github.com/mhils/clint.git | |
Requirement already up-to-date: args in c:\python27\lib\site-packages (from clint==0.3.0) | |
Installing collected packages: clint | |
Running setup.py install for clint | |
warning: install_data: setup script did not provide a directory for 'README.rst' -- installing right in 'c:\Python27' |
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
C:\git\main >pip install -U git+https://github.com/mhils/clint.git | |
Downloading/unpacking git+https://github.com/mhils/clint.git | |
Cloning https://github.com/mhils/clint.git to c:\users\dfabulich\appdata\local\temp\pip-yc40fw-build | |
Running setup.py egg_info for package from git+https://github.com/mhils/clint.git | |
Requirement already up-to-date: args in c:\python27\lib\site-packages (from clint==0.3.0) | |
Installing collected packages: clint | |
Running setup.py install for clint | |
warning: install_data: setup script did not provide a directory for 'README.rst' -- installing right in 'c:\Python27' |
NewerOlder