Skip to content

Instantly share code, notes, and snippets.

View Dattebayooooo's full-sized avatar

Dattebayooooo

View GitHub Profile
@Dattebayooooo
Dattebayooooo / pylint_on_current_branch.sh
Created November 7, 2025 14:58
run pylint on modified files for current branch
# RUN pylint on current branch for modified files only.
BRANCH=$(git rev-parse --abbrev-ref HEAD) && \
git diff --name-only --diff-gilter=AM master "$BRANCH" | grep '\.py$' | xargs pylint --disable=all --enable=E
@Dattebayooooo
Dattebayooooo / Postman V9
Created October 9, 2025 10:53
Postman V9 (No signup needed)
Postman free feature without signup in Old build V 9
https://community.postman.com/t/need-link-to-download-the-postman-9-31-0-versiom/53522/2
https://community.postman.com/t/direct-download-link-for-9-x/29148
@Dattebayooooo
Dattebayooooo / GameMaster.sh
Created May 2, 2025 16:32
Myrient downloader for ArkOS
#!/bin/bash
# Licensed under the MIT License – https://opensource.org/licenses/MIT
DOWNLOAD_LOCATION="/roms"
if mountpoint -q /roms2; then
DOWNLOAD_LOCATION="/roms2"
fi
declare -A system_to_url
@Dattebayooooo
Dattebayooooo / EULA Template.md
Last active July 20, 2023 07:42
EULA Template

END-USER LICENSE AGREEMENT (EULA)

This End-User License Agreement ("Agreement") is a legal contract between you (either an individual or a single entity) and [Your Company Name] ("Licensor") for the use of [Software Name] ("Software").

By installing, copying, or otherwise using the Software, you agree to be bound by the terms of this Agreement. If you do not agree to the terms of this Agreement, do not install or use the Software.

  1. Grant of License:

Subject to the terms and conditions of this Agreement, Licensor grants you a limited, non-exclusive, non-transferable, and revocable license to use the Software for personal or internal business purposes.

Keep .pyd file in Folder 📂 in project workspace

*** Settings ***
## METHOD 1️⃣
Suite Setup    BuiltIn.Run Keywords
               ...  BuiltIn.Evaluate    sys.path.append(r'${Folder}')    modules=sys
               ...  AND    BuiltIn.Import Library    CUSTOMLIBRARY
 
@Dattebayooooo
Dattebayooooo / nuitka_steps_to_pyd.md
Last active February 3, 2023 07:06
command to obfuscate python (.py) files to .pyd using nuitka

Requirements:-

  1. Nuitka
    • gcc & ccache (Gets installed during first time execution of command)
  2. Mingw64 [optional]
  3. MSVC build tools [optional]
pip install nuitka==1.3.8
@Dattebayooooo
Dattebayooooo / jupyter-requirements.txt
Last active October 12, 2022 08:00
Jupyter dependencies for python 2.7
## Todo: add more packages list for other modules
## Jupyter notebook for python 2.7
attrs==21.4.0
backports-abc==0.5
backports.functools-lru-cache==1.6.4
backports.shutil-get-terminal-size==1.0.0
backports.shutil-which==3.5.2
bleach==3.3.1
colorama==0.4.5