-
-
Notifications
You must be signed in to change notification settings - Fork 28
Quality Assurance
Apache JMeter
OWASP ZAP
Codacy
LGTM
Semgrep
SonarQube
OWASP ZAP
Debricked
SNYK
Codacy
SonarQube
Semgrep
Debricked
FOSSA
https://owasp.org/www-community/Free_for_Open_Source_Application_Security_Tools
Version https://github.com/OWASP/www-community/commit/07dddead7fe656aea1f6c960171a65e0e46a96ea
https://github.com/cjbarber/ToolsOfTheTrade#remote-workers
Version https://github.com/cjbarber/ToolsOfTheTrade/commit/62999f2d00a9ea807954b94abe96e02644b23e0f
Version https://github.com/ripienaar/free-for-dev/commit/99a73cde53600311b7e7edc0a1dc38a7d4c261af
Browserstack
https://validator.w3.org/nu/?doc=https%3A%2F%2Ftasvideos.org%2F
https://validator.w3.org/i18n-checker/check?uri=https%3A%2F%2Ftasvideos.org%2F#validate-by-uri+
If you are getting this runtime error:
The configured user limit (128) on the number of inotify instances has been reached, or the per-process limit on the number of open file descriptors has been reached.
, you need to increase these 2.
Current max_user_instances: cat /proc/sys/fs/inotify/max_user_instances
Current max_user_watches: cat /proc/sys/fs/inotify/max_user_watches
Increasing limits permanently:
echo fs.inotify.max_user_instances=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
echo fs.inotify.max_user_watches=16384 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
More information: https://github.com/dotnet/aspnetcore/issues/7531