Posts by André Minoro Fusioka • 131 points
7 posts
-
4
votes2
answers109
viewsA: Calculation of T(n)
You can think inductively following the steps of your algorithm. To make the explanation simpler I will disregard the balance as a primitive instruction, I will only take into consideration the…
-
0
votes2
answers1224
viewsA: Taking data from an Laravel PHP Object
Hello, The method get() returns a Collection which is an object with several useful methods to apply on the returned data collection. To take a single column of all items in your collection you can…
-
0
votes1
answer395
viewsA: I can’t save all records from foreach - LARAVEL
Hello, the tags input in your form are with a fixed name within a @foreach this makes sending a form with multiple entries only one (of each name) is actually sent. Try to change the following:…
-
0
votes1
answer71
viewsA: Visible Hidden no form no javascript
Hello, your screen 'flashes' because the elements become visible and then the form is submitted (submitted), then page is reloaded and everything goes back to original state. To prevent this from…
javascriptanswered André Minoro Fusioka 131 -
1
votes3
answers302
viewsA: Access web images application
When I need to access some web content with android I use the Volley library, it is very simple to use. Here is a link to an example that requests an image:…
-
1
votes1
answer801
viewsA: Encoding, bytes conversion - strings
the code worked normally here, but you can try to print it like this: print(str(page, 'iso-8859-1')) Here it worked both ways.
-
1
votes0
answers60
viewsQ: Unpopulated listview on all tabs on first access
Hello, I have an Android application of an electronic questionnaire. Should be presented the same questionnaire in tabs, are 7 tabs. The application downloads web issues from an XML. I’m using the…