Files
SpecterOps-Nemesis/projects
harmj0y 0430e4b7d5 Main dashboard modifications
- Removed "Files from Containers", replaced with "Unviewed Files"
- Replaced "Findings over Time", replaced with cards for "Untriaged Findings", "True Positives", "False Positives", and "Needs Review"
- Ensure that popup descriptions don't show off the page
2025-06-26 14:42:33 -07:00
..
2025-06-16 15:29:05 -07:00
2025-06-19 06:07:49 -07:00
2025-06-16 15:29:05 -07:00
2025-06-23 15:10:11 -07:00
2025-06-26 14:42:33 -07:00
2025-06-16 15:29:05 -07:00
2025-06-13 11:33:07 +02:00
2025-06-16 15:29:05 -07:00
2025-06-13 11:33:07 +02:00

Naming Conventions

Projects and libraries should follow Python's PEP8 naming conventions:

Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.

When an extension module written in C or C++ has an accompanying Python module that provides a higher level (e.g. more object oriented) interface, the C/C++ module has a leading underscore (e.g. _socket).