Fanon Jupkwo
Fanon Jupkwo
check domain availability https://www.google.com/search?q=check+if+a+domain+is+available&rlz=1C1FCXM_pt-PTPT1032PT1032&oq=check+if+a+domain+&aqs=chrome.0.0i512j69i57j0i512l8.6258j1j7&sourceid=chrome&ie=UTF-8 https://www.name.com/domain/search https://domains.google.com/registrar/search?searchTerm=http:%2F%2Fjsgenerator.io%2F&hl=en&_ga=2.193568740.83386237.1682252520-687170138.1682252520 https://support.google.com/domains/answer/4491208?hl=en https://instantdomainsearch.com/
https://dzone.com/articles/multiplying-software-quality-using-three-documenta
Open Rewrite might help but I think for this time, we can go without it in order to master thé process. https://docs.openrewrite.org/running-recipes/popular-recipe-guides/migrate-to-spring-3 https://youtu.be/e4R6AZHpAD8?si=39M_ztwaBqAUrUFq
https://positivethinking.tech/insights/whats-new-in-spring-boot-3/#:~:text=Spring%20Boot%203%20is%20a,improvements%20that%20Java%2017%20offers.
We finally migrated to 3.3.1 https://spring.io/blog/2024/06/20/spring-boot-3-3-1-available-now
Also think about this isssue after deployment https://github.com/osscameroon/js-generator/issues/230
set the charset of bytes java https://www.google.com/search?q=set+the+charset+of+bytes+java&rlz=1C1FCXM_pt-PTPT1032PT1032&oq=set+the+charset+of+bytes+java&aqs=chrome..69i57j33i160j33i22i29i30.22275j1j7&sourceid=chrome&ie=UTF-8 https://stackoverflow.com/questions/88838/how-to-convert-strings-to-and-from-utf8-byte-arrays-in-java ```java //Convert from String to byte[]: String s = "some text here"; byte[] b = s.getBytes(StandardCharsets.UTF_8); //Convert from byte[] to String: byte[]...
This issue is also related to non ascii characters: https://www.baeldung.com/java-char-encoding https://stackoverflow.com/questions/41690641/non-ascii-value-symbols-not-getting-printed https://docs.oracle.com/javase/8/docs/api/java/text/Normalizer.html https://www.tabnine.com/code/java/classes/java.text.Normalizer https://www.educative.io/answers/what-is-stringutilsisasciiprintable-in-java https://stackoverflow.com/questions/30111273/how-do-i-remove-copyright-and-other-non-ascii-characters-from-my-java-string https://github.com/google/guava/wiki/StringsExplained https://stackoverflow.com/questions/54752377/handling-strings-with-special-characters-in-java
Take inspiration from this code
https://github.com/osscameroon/js-generator/issues/235