Posts by UnDeploy • 61 points
3 posts
-
1
votes2
answers464
viewsA: How to get HTML code from a protected page with Cloudflare?
Analyzing cloudflare’s html, in the case of the page http://lubbo-zone.nl, I came to the following conclusion: The javascript you mentioned in the question is an algorithm that uses some data from…
-
2
votes1
answer92
views -
3
votes2
answers951
viewsA: How to pass variable by parameter created in Enum in Java?
From what I understand you’d like to make a menu of the kind: BLUE RED GREEN If that’s the case, you can do the following. To display the menu: for(Cor cor : Cor.values()) {…