All Questions

1
answer

What are these sql modes in mysql?

Here is the code: SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=...
asked on 27.09.2017 / 18:14
1
answer

How to deserialize a list with items of type {"key": "value"}?

I need to deserialize a JSON, but I can not map the enumerated object. Follow JSON: { "list": [ { "1": "Bola" }, { "2": "Quadrado" }, { "3": "Retangulo" } ], "code": 0, "success": true }...
asked on 11.08.2016 / 01:08
1
answer

Task.Run always starts a new Thread?

When executing a list of tasks started through Task.Run, is it guaranteed that each one is executed on a different Thread? When reading the documentation, it seems to me that this is the default behavior, while doing the tests I was validatin...
asked on 10.08.2016 / 21:43
1
answer

SIP Connection - Android Java Softphone

My intention is to create a Softphone, for this I'm consulting the google libraries and doing some testing, but I packed in a part. I do not want to do start-up functions, or multiple screens, or anything complicated. I just want to make a ca...
asked on 10.09.2016 / 01:22
1
answer

Insert graphics automatically into github pages

When creating a .md file for the _post folder of github pages with rstudio, the graphics generated with the R commands should be inserted one by one via the command: ![center](/nome_pasta_imagens_dentro_da_master/nome_da_figura.png) Or is t...
asked on 08.09.2016 / 00:29
2
answers

Translating Identity en

I'm using Identity in my application MVC 5.2.3 Microsoft.AspNet.Identity.Core 2.2.1 I also installed the translation package for it Microsoft.AspNet.Identity.Core.pt-br 2.2.1 Microsoft.AspNet.Mvc.pt-br 5.2.3 Microsoft.Owin.p...
asked on 01.09.2017 / 19:59
1
answer

Dropdown dependent on each other

I'm using a function from this site: link The function works perfectly, when I select an option in a dropdown, the 2nd DropDown already brings me what I want, the only problem is after clicking the submit button that does not bring me...
asked on 25.06.2016 / 05:02
1
answer

Xamarin - SQLite Join

I'm creating an app on xamarin, which generates a sales order, and stores it on my phone. I'm using SQLite to store the data, but I'm having trouble joining between my Order Items table and the Products table. I have both models below: [...
asked on 16.06.2016 / 16:34
1
answer

SVG mosaic style comic

I'm developing a comics style layout and wanted help to create a svg. In case the last comic is similar to the photo placed of DC commics. Someone help me create this last part. .trapezio { stroke:black; stroke-widt...
asked on 01.08.2016 / 17:52
1
answer

Convert String from a JTextField to Calendar

How to perform input conversion through Swing's JTextField via JDBC? public class DadosPessoais { private Calendar dataNascimento; public Calendar getDataNascimento() { return dataNascimento; } public void setDataNasc...
asked on 12.06.2016 / 03:30