All Questions

1
answer

How to Inspect an element that only appears when I hover in another element?

I have an element that when doing a hover in it will appear a pseudo-element elsewhere on the screen, however I would like to inspect this pseudo element when it is visible on the screen. How do I inspect an element that only appear...
asked on 06.11.2018 / 13:01
2
answers

Do (Cast) the return of Malloc (), Calloc () and Realloc () - C

According to the discussion Do I cast the result of malloc? , in C it is not recommended or correct to do the cast of the return of Malloc (). Does this also apply to the Calloc () and Realloc () functions? Taking advantage, is the correct ta...
asked on 31.12.2018 / 14:57
2
answers

How to remove a Key from a JSON

Suppose the following JSON: {"id": 1, "preco": 100, "detalhe": "nenhum"} If I build an array with 100 of these objects and want to remove the "detail" key from all, for example, is it possible (without being in the hand)?     
asked on 14.11.2018 / 17:25
2
answers

Change string to uppercase and remove whitespace

I'm trying to make a program in Python 3 that should turn typed text into uppercase and remove white space. I would like to know what is wrong with my code since it is not deleting the blanks. I tested two codes. First code: print ("-"*50...
asked on 31.10.2018 / 12:02
3
answers

SASS and SCSS: why use them instead of conventional CSS?

I often hear about SASS and SCSS, but I do not know exactly how these tools work. I just know they are CSS generators (?). I found a related question here but it does not address the question of why it uses them, just the syntax differenc...
asked on 30.04.2018 / 17:53
2
answers

Separate equal values into an array

Well I have the following array: $produtos2[] = array( "cod" => (int) 768, "nome" => "LOGITECH M535", "GRUPO" => "MOUSE" ); $produtos2[] = array( "cod" => (int) 2334, "nome" => "MULTILASER DECT", "GRUPO"...
asked on 16.03.2018 / 14:52
2
answers

Payment in installments with ticket via PagSeguro [closed]

I developed a site where there is a course for sale at a specific value. This course is available for payment with PagSeguro , for those who pay on the card is quiet, but would have some way to make installments in the ticket? So far, I have...
asked on 15.02.2014 / 14:27
5
answers

Vertically center a form

I have the following screen and can not vertically center this form below on the screen. I set it to position: absolute; and add top:20% and it does not move! Followmyhtml:<header><divclass="local"> <img src=...
asked on 13.03.2014 / 06:22
1
answer

What does it mean _: e _

What does _: e _ mean? in the definition of functions as in the example below. constructor(){ router.events.subscribe((_:NavigationEnd) => this.currentUrl = _.url); } I have many doubts about it.     
asked on 04.08.2018 / 16:36
3
answers

How to perform TDD using Hibernate

I would like to know how to do TDD using Hibernate . I was informed that this ORM stores memory before writing to the possible, so I wanted to know how to test a data that is in memory. For example: do I execute the save command and test to see...
asked on 19.02.2014 / 23:33