Skip to content

Instantly share code, notes, and snippets.

@woctezuma
woctezuma / .pre-commit-config.yaml
Last active May 4, 2024 13:07
Config for pre-commit hooks
files: \.(py|json)$
default_stages: [commit, manual]
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.4
hooks:
- id: ruff
args:
[
--fix,
@woctezuma
woctezuma / jpg_to_pdf.md
Last active April 25, 2024 11:53
JPG to PDF
@woctezuma
woctezuma / softwares.md
Last active May 4, 2024 13:10
Softwares

Web Browsers

  • [Firefox][firefox]✨
    • about:config -> browser.cache.disk.smart_size.enabled : false
    • [uBlock Origin][firefox-adblock]✨
    • [SteamDB][firefox-steamdb]✨
    • [Augmented Steam][firefox-augmented-steam]✨
    • [Translate Web Pages][firefox-translate]
    • [Firefox Multi-Account Containers][firefox-containers]
    • [PopUpOFF][firefox-popup-off]
  • [TunnelBear VPN][firefox-tunnelbear]
@zImPatrick
zImPatrick / geforce_leak.csv
Last active December 19, 2023 16:31
This is a list of GeForce games which have a future release date. Data comes from the GeForce leak, and is purged of Ubisoft games. Since this is getting stars for some reason, I wanted to acknowledge that I stole this from some other gist but can't remember from whom (maybe an archive of xpaw's gist or some other repost)
appID releaseDate title developerName publisherName
1059220 2022-04-07 '83 Antimatter Games Toadman Interactive
422890 2021-10-22 22 Racing Series GOATi Entertainment GOATi Entertainment
2022-02-28 7 Days Salvation Volla Games Volla Games
2022-09-30 7abrynth Backstage Games 505 Games
1182900 2022-06-28 A Plague Tale: Requiem Asobo Studio Focus Home Interactive
2022-01-01 A-Train 10 Artdink Corporation DEGICA Co. Ltd.
2022-01-11 ADA (code name) Dontnod Entertainment Dontnod Entertainment
1368030 2021-10-15 ANNO: Mutationem Thinking Stars Lightning Games
2023-07-25 ARK 2 Studio Wildcard Studio Wildcard
@andrew1-1
andrew1-1 / geforce_games_with_steam.csv
Created September 25, 2021 15:14
This is a list of GeForce games which have an id on the Steam Store. Data comes from the GeForce leak.
appID releaseDate title developerName publisherName
test-id12-3456 #Chroma Test 20007 - Type DLC Anbox Developers
303720 2016-09-12 #KILLALLZOMBIES Beatshapers Beatshapers
1059220 2022-04-07 '83 Antimatter Games Toadman Interactive
923840 2018-09-25 - Wuxia archive: Crisis escape Gamera Game Gamera Game
738510 2020-04-01 -Innocent Fille- MAGES. Inc. Spike Chunsoft Co. Ltd.
477010 2016-07-26 10 Minute Tower Team17 Digital Limited War Child Gaming
435790 10 Second Ninja X Four Circle Interactive Curve Digital
913850 2018-12-21 103 Dystopia Interactive Dystopia Interactive
735580 2018-11-11 11-11 Memories Retold Aardman Animations BANDAI NAMCO Entertainment Europe S.A.S.
@woctezuma
woctezuma / how_to_pypi.md
Last active May 3, 2023 22:40
My PyPI Release How To
pip install bumpversion setuptools wheel twine

bumpversion --current-version 0.4.0 minor setup.py
git add setup.cfg setup.py
git commit -m "Bump version to v0.5.0"

git tag "0.5.0"
git push --tags
git push