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
issue_number | issue_title | extracted_game_id | issue_labels | extracted_status | last_event_date | events_count | |
---|---|---|---|---|---|---|---|
42 | ARMS - 01009B500007C000 | 01009B500007C000 | status-playable;ldn-works;LAN | playable | 2024-08-28 7:49:24 | 9 | |
43 | Pokemon Quest - 01005D100807A000 | 01005D100807A000 | status-playable | playable | 2022-02-22 16:12:32 | 10 | |
44 | Retro City Rampage DX | status-playable | playable | 2021-01-05 17:04:17 | 8 | ||
45 | Kirby Star Allies - 01007E3006DDA000 | 01007E3006DDA000 | status-playable;nvdec | playable | 2023-11-15 17:06:19 | 23 | |
46 | Bayonetta 2 - 01007960049A0000 | 01007960049A0000 | status-playable;nvdec;ldn-works;LAN | playable | 2022-11-26 3:46:09 | 10 | |
47 | Bloons TD 5 - 0100B8400A1C6000 | 0100B8400A1C6000 | Needs Update;audio;gpu;services;status-boots | boots | 2021-04-18 23:02:46 | 5 | |
48 | Urban Trial Playground - 01001B10068EC000 | 01001B10068EC000 | UE4;nvdec;online;status-playable | playable | 2021-03-25 20:56:51 | 8 | |
49 | Ben 10 - 01006E1004404000 | 01006E1004404000 | nvdec;status-playable | playable | 2021-02-26 14:08:35 | 8 | |
50 | Lanota | status-playable | playable | 2019-09-04 1:58:14 | 5 |
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 | |
print_usage() { | |
echo "usage: compress_video <input_file>" | |
echo "supported formats: mp4, webm, mkv, mov, avi, flv" | |
} | |
get_extension() { | |
f="${1##*/}" | |
case "$f" in |
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
import { generatorHandler } from "@prisma/generator-helper"; | |
import fs from "node:fs/promises"; | |
import path from "node:path"; | |
const header = `// This file was generated by a custom prisma generator, do not edit manually.\n`; | |
generatorHandler({ | |
onManifest() { | |
return { | |
defaultOutput: "./enums/index.ts", |
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
name: Update dist | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.JS 12 |
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
-- see if the file exists | |
function file_exists(file) | |
local f = io.open(file, "rb") | |
if f then f:close() end | |
return f ~= nil | |
end | |
-- 1. Replaces .md with .html | |
-- 2. Replaces absolute paths with relative ones | |
-- 3. Replaces folder links with links to their index / readme |
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
// bitset_iter.h v1.1.0 | |
// Copyright 2019, Diego Dagum | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
// copies of the Software, and to permit persons to whom the Software is | |
// furnished to do so, subject to the following conditions: | |
// |
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
# Why? | |
# To paste text into windows that normally don't allow it or have access to the clipboard. | |
# Examples: Virtual machines that do not yet have tools installed, websites that hijack paste | |
# | |
# Extended vs Simple? | |
# * Includes an initial delay to allow you to change active windows | |
# * Adds small delay between keypresses for slower responding windows like SSH sessions | |
# * Better handling of numbers | |
# * VMWare bug fix | |
# |
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
#!/usr/bin/env sh | |
# Generate an AUTHORS file based on the output of git shortlog. It uses ABC | |
# order, strips out leading spaces and numbers, then filters out specific | |
# authors. | |
git shortlog -se \ | |
| perl -spe 's/^\s+\d+\s+//' \ | |
| sed -e '/^CommitSyncScript.*$/d' \ | |
> AUTHORS |
NewerOlder