This document provides guidelines for maintaining high-quality Python code. These rules MUST be followed by all AI coding agents and contributors.
All code you write MUST be fully optimized.
"Fully optimized" includes:
| Hi All! | |
| I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
| Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
| One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
| Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
| App Description: | |
| ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |

git init to create an empty git repo. (it is empty because we need to add files to the git repo, it doesnt account for the files in the same folder automatically)git add --all to add all files & folders in the current folder to git repo. run git status to see files added to git staging areagit commit -m "short message about what changes happen in this commit" : note that a message is required by git.git remote add origin git@github.com:user/repo.gitgit push -u origin master: here origin is set to github by the prev command. master is the default branch.| Глава 2. Базовые операции | |
| Прежде чем погружаться в дебри многочисленных команд Git, попробуйте воспользоваться приведенными ниже простыми примерами, чтобы немного освоиться. Каждый из них полезен, несмотря на свою простоту. На самом деле первые месяцы использования Git я не выходил за рамки материала этой главы. | |
| Сохранение состояния | |
| Собираетесь попробовать внести некие радикальные изменения? Предварительно создайте снимок всех файлов в текущем каталоге с помощью команд | |
| $ git init | |
| $ git add . | |
| $ git commit -m "Моя первая резервная копия" | |
| Теперь, если новые правки всё испортили, можно восстановить первоначальную версию: |
14.5 GB
An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨
A Pen by Carla Archuleta on CodePen.
| # Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands) | |
| gpg --gen-key | |
| # maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null` | |
| # check current keys: | |
| gpg --list-secret-keys --keyid-format LONG | |
| # See your gpg public key: | |
| gpg --armor --export YOUR_KEY_ID | |
| # YOUR_KEY_ID is the hash in front of `sec` in previous command. (for example sec 4096R/234FAA343232333 => key id is: 234FAA343232333) |
| jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024 | |
| jdk.tls.disabledAlgorithms=SSLv3, RC4, DH keySize < 768 | |
| https://stackoverflow.com/questions/14149545/java-security-cert-certificateexception-certificates-does-not-conform-to-algori# |