Posts by Edvan Souza • 131 points
3 posts
-
0
votes2
answers2222
viewsA: Socket UDP Send and Receive C#
I had this problem recently. I solved the problem by putting a 500 millisecond "Sleep" before sending the bytes.
c#answered Edvan Souza 131 -
2
votes7
answers91443
viewsA: Error: Unable to find or load the main class in Java (Eclipse or CMD)?
If I’ve been using command line to compile use: javac -cp /caminho/prodiretorio/src package.NomeDaClasse Execute: java -cp /caminho/prodiretorio/src package.NomeDaClasse Remembering that dependent…
javaanswered Edvan Souza 131 -
0
votes2
answers2055
viewsA: Error finding Nodejs module
The problem is that only one directory level has been lowered and the intended directory is two levels below. instead of: ../app/controllers/home Use: ../../app/controllers/home…