Posts by Gustavo Cavalieri Fernandes • 21 points
2 posts
-
1
votes2
answers3004
viewsA: How to open a local server using Node?
Another solution is to use the https://nextjs.org/ :) With some commands you can serve your React project on a local static server. It also has other cool features that you can use (Server-Side…
-
1
votes3
answers4208
viewsA: Random Numbers in Android Studio
Take a look at this post. I’ll translate here to make it easy: public static int getRandomInt(int min, int max) { Random random = new Random(); return random.nextInt((max - min) + 1) + min; } public…