Posts by D. Melo • 494 points
4 posts
-
1
votes3
answers240
viewsA: How to know which servers are waiting for connection on my network?
Good night, João The way to do this could be by trying connections to the servers of your IP range on the chosen port. I don’t recommend adopting this idea, because you would need to know the…
-
4
votes1
answer2115
viewsA: Switch between branchs in GIT and changes remain in the current branch
Hello, Matthew. I usually use another alternative The way you’ve exposed actually solves the case. Branch toggle is allowed, but you end up with an extra commit in the history. I am personally…
-
27
votes4
answers16118
viewsA: What is the difference between Static and self in PHP?
static is used to define that a method or attribute in a class is static. This means (as someone who knows OO must know) that that method/attribute belongs to the class and not to an instance of it…
-
2
votes1
answer2883
viewsA: What database types can be applied in a mobile app using apache Cordova?
While doing some research, I found this page here, about a local bank: http://docs.phonegap.com/en/2.0.0/cordova_storage_storage.md.html http://dev.w3.org/html5/webdatabase/ From the first link:…