Posts by Elvis Moreira • 307 points
5 posts
-
2
votes1
answer100
viewsA: Formatting of subGrid in IE is not configured
Firefox is actually more tolerant with poorly formed JSON. An interesting point is to check if the length/size of all hash’s is equal to what the table expects, even the value being null/nil,…
-
0
votes2
answers269
viewsA: Differences between Facebook SDK and Google Play Game Services
I believe that the biggest difference between one and the other is the type of user you want to reach, and this varies greatly with the type of game you intend to develop. Google Play Games does not…
-
0
votes3
answers1538
viewsA: Download event problem in "href"
I don’t know if I got the question right, but to search for a file on a linux server, you can use Ack/grep. Install the package, if it’s Ubuntu: $ sudo apt-get install ack-grep And to search the…
-
3
votes3
answers847
viewsA: Correct model test (Rspec)
Use Factories, the below follows a very simple example. Take a look at the new way of writing expects in Rspec. describe Article do it "expect valid article" do article =…
-
8
votes5
answers12657
viewsA: How do I protect PHP code from theft and piracy after deploying?
One way or another, if your application is hosted where the customer chooses, they will have access. A valid option is to extract the core of your system, that is, the part that really matters for…