All Questions

1
answer

Tools for mobile development

I'm looking for mobile development tools mobile . I started looking at a CodenameOne call, for example. However I would like some tips on which tool to choose. I have listed below some criteria I would like the tools to meet. I ask that if...
asked on 18.05.2014 / 23:59
2
answers

Best way to get HTML + text from an array

Function I am using: $(".push-description-top").each(function() { var text = $(this).text(); var carac = text.length; if (carac > 0) { var query = text.split(" ", 14); query.push('<a href="">... Veja mais...
asked on 23.10.2017 / 18:18
2
answers

How to insert an HTML file with [innerHtml] and maintain the attributes of the Angular

In my Componente I get HTML in the form of a String and use [innerHtml] to insert this HTML into the Component View. Component: test(){ alert('Teste :D'); } html_string = '<input type="button" (click)="test()">'; View:...
asked on 16.03.2018 / 23:18
2
answers

How to convert negative numbers from decimal to hexadecimal

I was able to pass an integer number to hexadecimal. The problem now being tested was that the negative numbers do not work with this formula. Here is the code I have: public class PPROG_pl6_ex8 { public static Scanner input = new Scan...
asked on 27.10.2017 / 14:08
2
answers

Creating tables with database scripts

In my application I have to create a table for each user, the tables are created the first time when the user uploads a file and with the name table_ $ id_user. And the only way I can see to create it dynamically is this: $sql_create_table1 =...
asked on 21.05.2014 / 17:19
1
answer

Problem with group by

I have the following query: SELECT funcionario.*, emprego.data_admissao, emprego.data_saida, emprego.data_dispensa FROM funcionario,emprego,empresa WHERE empresa.id = emprego.id_empresa AND funcionario.id = emprego.id_funcionario AND em...
asked on 20.11.2017 / 17:04
1
answer

What are the terms RISC and CISC in relation to software development?

My teacher mentioned the two terms RISC and CISC, they seem to me to be some kind of architecture. And software that is developed (compiled) for computers that use RISC can not run on CISC-like computers, even using identical operating systems,...
asked on 28.09.2017 / 04:59
1
answer

How to detect if a string is a regex

Assuming I have the string: $regex = "/[^a-z_\-0-9]/i"; Is there anything native to php to test if it's a valid regex? If not, what would be the best way to test this?     
asked on 01.03.2018 / 22:31
1
answer

What are dynamic properties?

I'm studying ASP.NET and saw the following code snippet: ViewBag.QtdNovosComunicados = (from c in comunicados where c.DataCadastro > UsuarioLogado.dtUltimoAcesso select c).Count(); I understand that I am creating a new property...
asked on 20.10.2017 / 17:02
1
answer

Why is the last forecast of the time series with the neuralnet package too dissimilar to the rest of the predictions?

I adjusted a neural network to forecast seasonal precipitation from the observed series. When I do validation with observed data, the results are good. But in the series predicted by the model, the last forecast is always with values much below...
asked on 20.11.2017 / 14:56