All Questions

1
answer

Is it possible to do a line break inside a placeholder?

I would like to perform a line break inside the placeholder of a textarea, so you can set an example how users can fill it. Is there any way to do this? <textarea placeholder="Excelentíssimo Senhor Professor Dout...
asked on 15.08.2017 / 16:00
1
answer

How to use Application Insights in more than one application?

Is it possible to use Application Insights in more than one application and in Azure I have how to filter the data for each application separately?     
asked on 29.06.2017 / 04:04
1
answer

Using multiple namespaces weighs more?

Let's say I have these namespaces : use DataTables\Editor, DataTables\Editor\Field; DataTables\Editor\Format, DataTables\Editor\Mjoin, DataTables\Editor\Options, DataTables\Editor\Upload, DataTables\Editor\Validate...
asked on 17.08.2017 / 17:11
2
answers

What is #pragma c # [duplicate]

While maintaining a code in a web service I came across the following code snippet: #pragma warning disable 1591 When searching for its meaning, I did not find anything in Portuguese that was easily accessible. Question What is...
asked on 06.06.2017 / 19:34
1
answer

Different types of python dictionaries

Is there any way to convert this dictionary: d = {'Ano; Dia; Mes' : '1995; 2; 5'} for this format: d = {'Ano': '1995'; 'Dia' : '2'; 'Mes': '5'} Thank you     
asked on 16.05.2017 / 18:03
3
answers

Code to invert sequence of non-vowels ending with zero status

I'm implementing the decodificar function, which aims to call auxiliary functions to invert all non-vowel sequences. For example, if the word is "legal monsters", it will continue to "mortsnol segais". void inverterNvs(NO* elemento, NO*...
asked on 04.09.2017 / 18:34
2
answers

How to display information from a JSON file in the browser in a friendly way?

The application receives a JSON file, already validated, and should display it to the user who is a programmer. I would like to display the JSON as in this validation site and beautify JSON . So I wanted this JSON: {"glossary": {...
asked on 19.07.2017 / 17:35
1
answer

How to extract and compress files with System.IO.Compression.ZipArchive in C #?

I'm starting in C #. I saw that it has the class System.IO.Compression.ZipArchive to work with zip files. I have some doubts: How do I unzip an existing zip through ZipArchive? How do I compress to an existing zip file? That i...
asked on 19.07.2017 / 16:45
4
answers

Ignore class name in XML serialization

I need to serialize a class to XML, for example: public class Pessoa { public string nome { get; set; } public int idade { get; set; } public Endereco endereco { get; set; } } public class Endereco { public string logradouro {...
asked on 02.06.2017 / 17:43
1
answer

For what to use the "@" inside the printf of the solve function

#include <stdio.h> #include <stdlib.h> void solve(int QTD_DISCOS, int origem, int destino, int temp) { static int rank = 0; if (QTD_DISCOS > 0) { solve(QTD_DISCOS-1, origem, temp, destino); printf("%4d ) %c --> %...
asked on 01.06.2017 / 01:32