All Questions

4
answers

Does the order of CSS styles influence the render tree?

During the paint of the document by the browser the order of the properties of the CSS classes can interfere in how we perceive the "assembly" of the page? Especially on slower connections, we literally see the styles being applied to the e...
asked on 03.09.2018 / 16:34
1
answer

Object.create or new Object () in JavaScript? What's the difference between the two?

I'm going through a technical question in JavaScript: What is the difference between Object.create and new Object() ? Which cases do I have to adopt one instead of the other?     
asked on 28.08.2014 / 21:36
2
answers

Use of Artificial Intelligence techniques to solve complex problems [closed]

In the face of the task of developing a complex application, I decided to make every time a human being interacts with the system, to record their decisions, apply weights and in the next suggestions use After some research, I saw that what I...
asked on 15.12.2015 / 20:20
1
answer

Do replacing strings with Regex slow down than replace?

Let's say I wanted to do something like this question How to convert CamelCase to snake_case in C #? Convert CamelCase to snake_case in C # You had some answers, but I want to highlight these two. Answer 1 string stringSnake =...
asked on 04.07.2016 / 19:10
1
answer

What is a Backtracking algorithm?

What is a Backtracking algorithm? What are its features? What are its advantages and disadvantages?
asked on 10.12.2015 / 18:39
1
answer

Compiling C ++ using Gradle

Gradle is a great ally in both java and android development. I was looking at the site and realized that it can also manage projects in C ++. How can I use it to compile a super simple project (hello word)?     
asked on 05.01.2016 / 19:47
1
answer

What are HTML entities?

I often see some crazy codes in the middle of tags HTML, and searching falls into this term entities , then the doubts have arisen: What are Entities HTML and when should I use them?     
asked on 17.01.2017 / 19:55
2
answers

Is it possible to use masks on mobile devices satisfactorily?

Then after a true pilgrimage that yielded some 10 questions, I discovered that the masks I was using do not work correctly on mobile devices. The main ones are (were?): MaskMoney inputMask What happens is that on the mobile de...
asked on 09.10.2015 / 21:48
1
answer

Alternatives to the (anti) standard Entity-Attribute-Value

I'm working on two systems that have a common characteristic: entities whose attributes are dynamic (ie can not be "hard-coded"), need to be queried in search operations (result filtering) , but are otherwise decoupled from the rest of the syste...
asked on 12.05.2014 / 08:25
1
answer

What does the shortcut \ s mean in REGEX?

This is an intentional question, because I see many people using \s in regex thinking their meaning is ' ' (space) because I tell them, it is not, at least not only that.    But what does \s mean in REGEX?     
asked on 29.01.2016 / 14:05