Posts by Jose Augusto Gomes • 17 points
6 posts
-
-1
votes1
answer151
viewsQ: java Import video file (.mp4)
I need to import a video file (.mp4) and store it in a Bufferedimage[], so I can work with each frame as if it were an image. my code(the part with (??? ) is where I did not agree): public class…
-
0
votes0
answers123
viewsQ: How to generate multiple nested repeat structures with methods
need to generate several nested structures (26) wanted to know how to do this with methods pro code not get too big an example of the structure I need with 4 nested: public static void main(String[]…
-
0
votes1
answer201
viewsQ: How do I add a Google login option to my website?
I have a site in PHP and I would like the user to have the option to sign in with the Google account, as well as here in Stack Overflow, so he does not need to register. You would need to take the…
-
0
votes1
answer45
viewsQ: setar scrol location
I have a div with overflow: auto; I press to leave the scrol of this div at the lowest point, to show only the newest information: div{ width: 150px; height:80px; border: 1px solid; padding:5px;…
-
1
votes0
answers318
viewsQ: How do I Modify a json File Using Javascript:
I have an ajenda already removed the data from it with jquery now I want to create a way to insert data into that agenda Obs:html file is hosted along with the.json agenda agenda json.: [ {…
-
0
votes1
answer549
viewsQ: How I Store the Contents of a JSON File in a Variable
agenda=[]; $.getJSON("agenda.json", function(dados) { agenda=dados; }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>…