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
{ | |
"clientId": "49700451081649670", | |
"gameId": "1409964317", | |
"language": "English", | |
"languages": [ | |
"en" | |
], | |
"name": "SWAT 4 Gold Edition", | |
"playTasks": [ | |
{ |
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
{ | |
"clientId": "50144443643664262", | |
"gameId": "1454587428", | |
"language": "English", | |
"languages": [ | |
"en" | |
], | |
"name": "Fallout: New Vegas", | |
"overlaySupported": true, | |
"playTasks": [ |
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
const dotCycler = (maxDots) => { | |
let dotCount = -1; | |
return () => { | |
dotCount = (dotCount + 1) % (maxDots + 1); | |
return '.'.repeat(dotCount); | |
} | |
} |
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
SHELL := /bin/sh | |
export PATH := $(shell nix-shell -p openapi-generator-cli --run 'echo $$PATH') | |
output: | |
mkdir -p output && cd output && openapi-generator-cli generate -i $URL -g clojure | |
clean: | |
rm -r output |
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
{ | |
inputs = { | |
utils.url = "github:numtide/flake-utils"; | |
nixgl.url = "github:nix-community/nixGL"; | |
}; | |
outputs = { self, nixgl, nixpkgs, utils }: | |
utils.lib.eachDefaultSystem (system: | |
let | |
pkgs = import nixpkgs { | |
system = system; |
OlderNewer