Ready for review
Names in bold next to each pull request are suggested reviewers.
// Source: <https://news.ycombinator.com/item?id=25818126> | |
// | |
// Instructions: | |
// 1. Paste contents of this file to a new file called "game.c" within your home folder. | |
// 2. Open a terminal, install GCC from distribution repositories and compile this source file: gcc game.c -shared -o game.so | |
// 3. Move game.so to the same folder as the DirtRally binary (within the bin/ folder, not DirtRally.sh). | |
// Use Manage > Browse Local Files on Dirt Rally to reach this folder, then enter the bin/ folder. | |
// 4. Modify Steam launch options: LD_PRELOAD=./game.so %command% | |
// 5. Run the game on Steam. | |
#include <sys/mman.h> |
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
# Compresses ISO/CUE files to CHD on a remote filesystem accessible via SFTP/SSH. | |
# Source ISO files on the remote host are not removed after conversion | |
# (you have to do this manually if desired). | |
# | |
# chdman must be installed (it's typically packaged as `mame-tools`). | |
# If it's not in your distribution repositories, build |
#!/usr/bin/perl -w | |
## | |
## cube masterserver | |
## (c) 2004, Hungerburg, License same as Cube (z-lib) | |
## | |
=cut | |
Changes |
# Create the VkSurface on the first call to IDXGISwapChain::Present, | |
# rather than when creating the swap chain. Some games that start | |
# rendering with a different graphics API may require this option, | |
# or otherwise the window may stay black. | |
# | |
# Supported values: True, False | |
# dxgi.deferSurfaceCreation = False | |
# d3d9.deferSurfaceCreation = False |
.register-link-replacement { | |
display: none | |
} | |
.rcx-box.rcx-box--full.rcx-badge.rcx-badge--primary { | |
background: red !important | |
} | |
.code-colors { | |
background-color: #1d1f21 !important |
Names in bold next to each pull request are suggested reviewers.
/* ==UserStyle== | |
@name gist.github.com - 11/18/2021, 7:11:18 PM | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description A new userstyle | |
@author Me | |
==/UserStyle== */ | |
@-moz-document domain("gist.github.com") { | |
div.CodeMirror.cm-s-github-light { |
#!/usr/bin/env bash | |
# Source: https://forum.scssoft.com/viewtopic.php?t=291342 | |
set -euo pipefail | |
IFS=$'\n\t' | |
evdev-joystick --e /dev/input/by-id/usb-Thrustmaster_Thrustmaster_Racing_Wheel_FFB-event-joystick --d 0 |
#!/usr/bin/env bash | |
# Copyright © 2019-2021 Hugo Locurcio | |
# Licensed under the MIT license. | |
set -xeuo pipefail | |
IFS=$'\n\t' | |
export DIR | |
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |