Development

Strelitzia - test email settings for dev servers
Fri, 21 Oct, 2022 at 11:19 AM
Google maps api projects console
support@fl user https://console.cloud.google.com/apis/dashboard?project=floristpro.co.uk:api-project-472793610519 Fpro-app – used by admin direct...
Thu, 10 Nov, 2022 at 12:16 PM
SQL - Clear logs older than x days
find /opt/tomcat/logs/ -type f -mtime +10 -delete  10 is the no of days older than to delete
Wed, 9 Aug, 2023 at 11:27 AM
Ban ips
-I INPUT -s 122.161.243.52 -j DROP Hi Tim, I've added rules for ports 80 and 443 in /etc/sysconfig/iptables-custom, which you can edit via SS...
Wed, 9 Aug, 2023 at 12:45 PM
jquery validate - basic validation with highlighting input borders
example in a .click event of the button. change the formName to the correct one (in the example is delDataForm) $("#saveDelZone").click(fu...
Thu, 24 Aug, 2023 at 9:05 PM
Hikari - connections issue logs
28-Aug-2023 20:39:37.071 SEVERE [http-nio-80-exec-23] org.apache.catalina.core.StandardWrapperValve.invoke Servlet.service() for servlet [dispatcherServlet]...
Tue, 29 Aug, 2023 at 10:39 AM
Connection pool testing when a failure
SHOW PROCESSLIST; https://stackoverflow.com/questions/51136693/how-to-check-hikaricp-connection-pooling-is-working-or-not-in-java
Wed, 18 Oct, 2023 at 11:20 AM
Find largest folders - disk space
This will find the largest 10 folders of a given path du -a -h /opt/tomcat/webapps/ROOT/upload/mt | sort -h -r | head -n 10
Mon, 20 Nov, 2023 at 1:09 PM
Spring Boot - creating a war file
Inside eclpise You need to add to the main application class extends SpringBootServletInitializer  Could create a profile to use to only complie ...
Fri, 5 Jan, 2024 at 1:02 PM
Circular dependancy issue
Go to  Preferences - Java - Building - change circular dependencies to a warning
Fri, 10 Jan, 2025 at 12:07 PM