Posts by Rodrigo • 190 points
7 posts
-
1
votes3
answers100
viewsA: Where to Save JS from a Website
In fact this problem you are encountering has been quite discussed,and apparently the official solution to this problem is the use of web Components. I think in your case it’s worth taking a look at…
javascriptanswered Rodrigo 190 -
7
votes2
answers588
viewsA: Web Components - What is the difference between Polymer and Reactjs?
Well, they both have different goals, and at some point they may even cross. The Polymer aims to encapsulate html, js and css using the spec of import of . html, shadow gift and web components.…
-
1
votes1
answer205
viewsA: How to type by voice Phonegap Framework?
There is a phonegap plugin, it is called Speech-recognition.
-
1
votes1
answer125
viewsA: Working with javascript environments using Grunt
To do this I use Grunt-replace to replace the configuration variables. Grunt replace plugin
-
3
votes2
answers972
viewsA: Encryption with Java
I don’t understand very well how you are doing your session, if it is by HEADER Basic to each request. Ex: HTTP Authentication Basic MD5(username:password) If so, I would advise using the flow…
-
1
votes3
answers2593
viewsA: Hide the destination URL
How to decrypt an MD5 256 or a bcrypt based on comparison hash? The possibility of course exists, but the cost to do this is very large and very slow, in the case of bcrypt I can tell you that it is…
-
2
votes3
answers2593
viewsA: Hide the destination URL
No, actually there is no way to hide neither the url nor the values. Now there are some measures that if necessary can be taken, such as: Add a strict CORS rule to your server With this you can…