Skip to content

Instantly share code, notes, and snippets.

View Yash-Singh1's full-sized avatar
😰
bruh no

Yash Singh Yash-Singh1

😰
bruh no
View GitHub Profile
@ezhevita
ezhevita / Ryujinx Games List Compatibility.csv
Last active November 15, 2024 19:58
Reconstructed Ryujinx games list compatibility database
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
@trvswgnr
trvswgnr / compress_video
Last active November 12, 2024 21:17
portable shell script to compress videos with ffmpeg
#!/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
@juliusmarminge
juliusmarminge / enum-generator.ts
Last active October 22, 2024 17:01
prisma enum generator
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",
name: Update dist
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.JS 12
@MyriaCore
MyriaCore / fix-links.lua
Last active October 30, 2024 07:11
How to use pandoc with gitlab markdown
@diegum
diegum / bitset_iter.h
Last active July 22, 2024 00:06
Missed an iterator for C++ STL bitset? Have mine!
// 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:
//
@tterb
tterb / README-badges.md
Last active November 11, 2024 03:35
A collection of README badges

Badges

License

MIT License GPLv3 License AGPL License

Version

Version GitHub Release

@sscotth
sscotth / keystroke the clipboard extended.workflow
Last active October 9, 2024 11:51
Paste as keystrokes (macOS)
# 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
#
@vladikoff
vladikoff / gist:d3f5ec1f570e66fb7faff329d01012b7
Created May 1, 2017 16:15 — forked from vvenv/gist:0e11d36849db3fbf88fa64b63e121d5f
Generate an AUTHORS file based on the output of git shortlog.
#!/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
@ishu3101
ishu3101 / gist_to_github_repo.md
Created November 24, 2015 08:35
Transfer a gist to a GitHub repository

Transfer a gist to a GitHub repository

clone the gist

git clone https://gist.github.com/ishu3101/6fb35afd237e42ef25f9

rename the directory

mv 6fb35afd237e42ef25f9 ConvertTo-Markdown

change the working directory to the newly renamed directory

cd ConvertTo-Markdown