Posts by João Pedro Silva • 150 points
3 posts
-
0
votes1
answer423
viewsA: Hide proven javascript code
Impossible to hide information on the client’s side. Understand that everything the browser can see, the user can also My suggestion is to put the key in some server-side code (php, nodejs, python…
javascriptanswered João Pedro Silva 150 -
3
votes4
answers5604
viewsQ: Call function at each time interval efficiently
I have a question, I am making a game server and I need a specific function to be rotated every 10 seconds. I know there’s a Thread.Sleep() (in combination with a while(true)), but it doesn’t seem…
-
10
votes2
answers424
viewsQ: Deserialize Json in which the key is a number
I’m trying to deserialize Json with C#, but I found a problem. In Json you can use numbers in the names of "keys" (keys), but we can’t use numbers in property names in C# Example: Json: "c":[ {…