Posts by Denner Evaldt Machado • 381 points
12 posts
-
2
votes0
answers177
viewsQ: How to popular a sub list of a document with Mongoose?
Is it possible to popular a list that references another list in the same document? Example in the image below, I want to popular/return in a search always the access link referring to another list…
-
1
votes1
answer148
viewsA: Thumbnails with Nodejs
After a few attempts, using the module SHARP I managed to create the thumbnails, using the resize.
-
2
votes1
answer148
viewsQ: Thumbnails with Nodejs
How can I generate thumbnails of images I receive in Base64 format with Nodejs? Currently saved only the original, but would like to create the Thumb of each.
-
2
votes1
answer772
viewsA: User profiles for REST API access using Nodejs + ORM Sequelizejs
Thanks to personal help, I got what I wanted using the package Express-ACL, served very well, works perfectly!…
-
2
votes1
answer772
viewsQ: User profiles for REST API access using Nodejs + ORM Sequelizejs
There is a way, or some cool package, to work with user profiles for access in certain endpoints of the REST API, as per each one’s permission? I am using Nodejs + Express + Sequelizejs as ORM.…
-
1
votes1
answer101
viewsQ: Query changing Join - Sequelizejs
How could you do this query using Sequelize? SELECT t1.* FROM Table1 t1 inner join Table2 t2 on t1.id != t2.t1_id
-
1
votes1
answer779
viewsQ: Navigation Drawer - back button
I’m trying to get the button back or back from android keep the sequence of Fragments that I’m rendering as chosen option in my side menu (Navigation Drawer), but I’m not succeeding, it always…
-
3
votes2
answers449
viewsA: Color Spinner Progressdialog - Android
I solved the problem with the following code: I added a layout for my Progressdialog progress = new ProgressDialog(this, R.style.styleProgressDialog); And I customized the colors in my style as…
-
1
votes2
answers449
viewsQ: Color Spinner Progressdialog - Android
How do I change the default color of Progressdialog (Spinner) on android? Below is the code I’m using: ProgressDialog progress = new ProgressDialog(this); progress.setTitle("Título);…
-
1
votes3
answers581
viewsA: What strategy to use to create website that sends information to Android app?
You can do with web service yes, it would be in REST API format in my view, in which you consume and provide data to the same database, all in JSON format. You can use php to do this, like other…
androidanswered Denner Evaldt Machado 381 -
7
votes1
answer907
viewsA: Icon Color - Android Toolbar
I decided by following what it says in these two links below: https://stackoverflow.com/questions/35762511/overflow-icon-color-in-api-21…
-
4
votes1
answer907
viewsQ: Icon Color - Android Toolbar
How do I make the icon color, in API’s smaller than 21, also white? Na 21 works ok, but below as for example the 16, turns black. I did it that way: Toolbar <android.support.v7.widget.Toolbar…