Skip to content

Instantly share code, notes, and snippets.

View Keinta15's full-sized avatar

Keinta15

  • Puerto Rico
  • 23:02 (UTC -04:00)
View GitHub Profile
@Keinta15
Keinta15 / nVAppAppApp.ps1
Created June 28, 2025 19:56 — forked from JPersson77/nVAppAppApp.ps1
nVAppAppApp - workaround NVIDIA DLSS4 whitelisting
<# Workaround for NVIDIA's DLSS4 whitelisting
DLSS4 was launched alongside the RTX 5000 series and comprise several new and interesting
features, f.e. additional presets for Super Resolution, using a newer Transformer model.
Arguably these features increase image quality significantly. To various degrees these
features are also available for older RTX cards, and older games using DLSS3/2.
Using third party apps like DLSS Swapper etc remains a convenient way to, on a manual basis,
swap out DLLs which contain the above mentioned functionality, per game. Downsides to this is
primarily that swapping out DLLs for online multi-player games may trigger an Anti-Cheat
system, and there is of course also some manual work of updating to newer versions/DLLs.
@Keinta15
Keinta15 / clear_text_lines.py
Created September 19, 2019 23:33
Remove blank lines from a .txt file
# Before checking we strip leading and trailing characters
# Check if the line is not empty
with open("empty.txt", 'r') as inp, open('out.txt', 'w') as out:
for line in inp:
if line.strip():
out.write(line)
# Before checking we strip only trailing characters
# Check if the line is not empty
with open("empty.txt", 'r') as inp, open('out.txt', 'w') as out:
@Keinta15
Keinta15 / tweet_dumper.py
Last active September 19, 2019 23:34 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv updated to Python 3.+
#Edited for python 3
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""
access_secret = ""