Posts by Lucas Trevisan • 66 points
6 posts
-
0
votes1
answer955
viewsA: How to organize the REST API and website frontend?
When I create applications of this kind I do the way you’re building. I leave my application in Ode running in one container and my web application running in another. I think it’s the best way to…
-
1
votes1
answer106
viewsA: Write a function within certain requirements
struct Data { int dia; int mes; int ano; } void Atualizar(Data** data, int dia, int mes, int ano) { (*data)->dia = dia; (*data)->mes = mes; (*data)->ano = ano; } Is that it? If you need…
canswered Lucas Trevisan 66 -
0
votes2
answers212
viewsA: Error generating apk with google play services
Speaking for my knowledge of subscriptions and stuff using Unity5, when you generate a certificate for the application and sign it but do not make it available through Google Play, the android…
-
1
votes1
answer283
viewsA: Field of research
Man, it’s like, there’s a lot of ways you can do something like this. But if you want the simplest way to do it and don’t want to create a google of life, you can use keyword LIKE in your sql.…
-
0
votes1
answer107
viewsA: Problems with the CSS
Use the structure below: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Título da página</title> <link rel="stylesheet"…
cssanswered Lucas Trevisan 66 -
0
votes1
answer114
viewsA: Interactive quiz with users on Livestream Youtube
Well, seeing a little of the API that youtube provides to be used, there is no form of "socket". Therefore, you will have to keep giving GET from time to time in a specific chat room to return a…