It was rather difficult to find a utility for Java code export to HTML but at last I found a free tool called Java Code Export which do a decent job but requires some manual steps after a conversion, why I am not 100% satisfied with this solution. Any tips are welcome in this subject.
For formating testing purposes I publish this tiny Java method for creating random numbers:
/**
*
* @param lowerLimit
* @param upperLimit
* @return A random integer number between lowerLimit and upperLimit
*/
static int createRandomNumberInt (int lowerLimit, int upperLimit) {
Random generator = new Random();
return generator.nextInt (upperLimit-lowerLimit) + lowerLimit;
}
Public Service Announcement: Don’t Say You Use AI for Writing
-
…also don’t tell lies. But I’m getting ahead of myself already. I keep
running into people online who openly say that they use AI to do their
writing for t...
2 weeks ago

1 comment:
Thank you! Was looking for something like this. Like you say, it's not perfect, but it's a lot better than nothing.
Post a Comment