| Tool | Purpose | Primary Metrics |
|---|---|---|
| https://pagespeed.web.dev | Production performance audit (Google Lighthouse) | LCP, CLS, INP, Performance Score |
| Chrome DevTools → Performance | Runtime profiling and rendering analysis | Main Thread, Rendering, Layout Shift, Long Tasks |
| Chrome DevTools → Lighthouse | Local diagnostics and regression testing | Performance, Accessibility, SEO |
| Web Vitals Extension | Real-time Core Web Vitals monitoring | LCP, CLS, INP |
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
| """ | |
| Описание алгоритма: | |
| * Обрабатываем все события долива воды в хронологическом порядке. | |
| * Для каждого события вычисляем, сколько воды утекло с момента предыдущего долива. | |
| * Количество воды не может стать отрицательным. | |
| * После учета утечки добавляем новый объем воды. | |
| * После обработки последнего события возвращаем количество воды в увлажнителе. | |
| Временная сложность: O(n) |
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
| # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
| # License : MIT License | |
| # Author : zx0r | |
| # Description : | |
| # A Python script that interacts with the Visual Studio Code Marketplace API | |
| # to automatically fetch and download the latest stable and optionally pre-release .vsix versions of given extensions. | |
| # It also detects if an extension is an Extension Pack and recursively downloads all included extensions. |
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
| license_text = """ | |
| License for Free Use with No Commercial Use | |
| Copyright (c) 2025 spakk | |
| Permission is hereby granted to any person obtaining a copy of this software and associated documentation files | |
| to use the software free of charge and without restriction, including the rights to use, copy, modify, and | |
| distribute the software, but strictly for non-commercial purposes only. | |
| Restrictions: |
A collection of awesome penetration testing resources.
Penetration testing is the practice of launching authorized, simulated attacks against computer systems and their physical infrastructure to expose potential security weaknesses and vulnerabilities.
Your contributions and suggestions are heartily♥ welcome. (✿◕‿◕). Please check the Contributing Guidelines for more details. This work is licensed under a Creative Commons Attribution 4.0 International License.
This project is supported by Netsparker Web Application Security Scanner
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
| #!/usr/bin/env bash | |
| # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
| # :::::::: :::: ::: ::: ::: ::::::::: :::::::: | |
| # :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: | |
| # +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+ +:+ | |
| # :#: +#+ +:+ +#+ +#+ +:+ +#++:++#+ :#: | |
| # +#+ #+#+# +#+ +#+#+# +#+ +#+ +#+ +#+ #+#+# | |
| # #+# #+# #+# #+#+# #+# #+# #+# #+# #+# |
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
| # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
| # a88888b. dP 888888ba dP | |
| # d8' `88 88 88 `8b 88 | |
| # 88 .d8888b..d888b88.d8888b.a88aaaa8P'.d8888b..d8888b..d8888b.d8888P | |
| # 88 88' `8888' `8888ooood8 88 `8b.88' `8888' `88Y8ooooo. 88 | |
| # Y8. .8888. .8888. .8888. ... 88 .8888. .8888. .88 88 88 | |
| # Y88888P'`88888P'`88888P8`88888P' 88888888P`88888P'`88888P'`88888P' dP | |
| # Copyright (c) 2025 zx0r. All rights reserved. |
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
| #!/usr/bin/env bash | |
| # Script: install_nerd_fonts.sh | |
| # Description: A script to interactively select and install Nerd Fonts for macOS using Homebrew and fzf. | |
| # Author: zx0r | |
| # Version: 1.0 | |
| # Enable strict error handling | |
| set -euo pipefail |
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
| #!/usr/bin/env fish | |
| # Script: macOS Memory Optimizer (Fish Shell) | |
| # Description: Automates memory optimization tasks, including clearing inactive memory, caches, and setting up a cron job. | |
| # Author: zx0r | |
| # Version: 1.0 | |
| # Function to clear inactive memory | |
| function clear_inactive_memory | |
| echo "Clearing inactive memory..." |
NewerOlder