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
| #!/bin/python | |
| # Copyright 2025 Puntiy Ivan | |
| # | |
| # 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: | |
| # | |
| # The above copyright notice and this permission notice shall be included in all copies or |
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
| # Adapted by @ivanpu to Python from Overwolf's scanner, because I couldn't launch it | |
| # Original code: https://github.com/overwolf/jar-infection-scanner/ | |
| # Check for updates to this script: https://gist.github.com/ivanpu/c5347bf107fa900ac79f1fcf2f056e7c | |
| from __future__ import annotations | |
| import zipfile | |
| from argparse import ArgumentParser | |
| from pathlib import Path |
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
| // ==UserScript== | |
| // @name Old Reddit | |
| // @namespace puntiy.net | |
| // @match https://www.reddit.com/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Puntiy Ivan | |
| // @description 11/7/2020, 1:15:15 PM | |
| // ==/UserScript== |
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
| @echo off | |
| python %~dp0git_for_intellij.py %* |
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
| # Generated by mksrcinfo v8 | |
| # Wed Oct 17 17:54:29 UTC 2018 | |
| pkgbase = postman | |
| pkgdesc = Build, test, and document your APIs faster | |
| pkgver = 6.4.4 | |
| pkgrel = 1 | |
| url = https://www.getpostman.com | |
| arch = x86_64 | |
| license = custom | |
| depends = electron |
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
| # Generated by mksrcinfo v8 | |
| # Wed Oct 19 03:42:17 UTC 2016 | |
| pkgbase = atom-editor-bin | |
| pkgdesc = Chrome-based text editor from Github - Precompiled binary from official repository | |
| pkgver = 1.11.1 | |
| pkgrel = 1 | |
| url = https://github.com/atom/atom | |
| install = atom-editor-bin.install | |
| arch = x86_64 | |
| license = MIT |
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
| #!/bin/bash | |
| # Note: the following key must be added beforehand to your keyring: | |
| # https://content.runescape.com/downloads/ubuntu/runescape.gpg.key | |
| set -e | |
| # settings - editable | |
| dist=trusty | |
| repo="https://content.runescape.com/downloads/ubuntu/dists/$dist" |