All Questions

2
answers

How to update / synchronize the master of my repository in github with the original master

Using the command line, how can I update / synchronize my master with the original master where I made fork . What different ways and options are the best, and how the history is affected / recorded.     
asked on 31.01.2014 / 08:34
3
answers

How does date comparison using .toLocaleDateString ();

It's a question I have for some time and I can not find an answer anywhere on the internet (I looked here and SOen). Given the following code: var hoje = new Date(2018, 08, 07).toLocaleDateString(); var dataQualquer = '08/05/2018'; if(dataQ...
asked on 07.08.2018 / 21:56
3
answers

Is there a dialect of LISP / Logo in Portuguese?

For children to program with words in English they can get in the way of understanding what everything is and does. I grew up with Superlogo in Dutch. Are there things like this in Portuguese?     
asked on 14.12.2013 / 20:14
1
answer

When the destructor of an object is called in C ++?

Let's suppose I have a function: std::string empty_string() { std::string x{ "" }; return x; } As much as it seems normal, it gets kind of confusing when we think: When the destructor of object x is called? Please no...
asked on 11.08.2018 / 04:15
2
answers

Difference in application of font-weight bold / bolder

I would like to know the difference in using the CSS properties font-weight: bold and font-weight: bolder , because applying these properties I can not see difference between one and other as well as normal font-weight and lighter. Would it b...
asked on 10.12.2018 / 12:52
2
answers

App - Xamarin or Ionic?

I need to create an App and would like to know which of your technologies is best suited for mobile development. What is the main difference between Xamarin and Ionic? Which of the technologies is the most performative? Why use Ionic? Wh...
asked on 27.04.2018 / 15:27
2
answers

Differences between declarations of variables in C #

What's the difference between these statements: Classex xx = new Classex(); var xx = new Classex(); Classex xx; If at the end I can use everything in the same way (methods, properties ...) Ex: I create a list: List<Classex> l...
asked on 29.05.2018 / 22:16
2
answers

Can the link tag be used outside the head tag?

Virtually all documentation related to tag <link> suggests calling it inside the block <head></head> . Example: <head> <link rel="stylesheet" type="text/css" href="theme.css"> </head>...
asked on 16.12.2018 / 14:24
2
answers

Sort placement of the DIV in CSS

Is there any way I can position .divdois above .divum with CSS only without having to change the position of HTML? <style> .divum { width: 100%; height: 200px; background: black; } .divdois { width: 100%; height...
asked on 21.05.2018 / 21:47
2
answers

What would this "k_BackingField"

I'm having a project to create a Smart Device in C # for Windows CE. I received a reverse engineering result code, but it has a part that I can not understand or adapt. Here is the code: private string <codProduto>k__BackingField; privat...
asked on 14.06.2018 / 06:00