All Questions

2
answers

Split Column into Other Two Lat Long

I have the following spreadsheets: BIRDS.GENERO SP1 SP2 XLOCAL Thamnomanes caesius glaucus 0°32'S52°12'W Thamnomanes ardesiacus obidensis 0°10'S51°50'W Tham...
asked on 28.11.2018 / 17:15
2
answers

Using REGEX in PHP to capture any number that is not within single quotes

I have been studying regex for some time and now I have a problem: Capturing all numbers, including decimals, that are not within single quotation marks . I'm creating a sort of viewer for PHP code to learn how to use regex better. I have...
asked on 19.12.2018 / 17:09
2
answers

How to put two backgrounds on the same page?

I'm creating an HTML page with CSS, and I'd like to know how to put two backgrounds on the same HTML page via CSS. I have this image: I want to put this image in the top, but its height is not enough to cover the entire page, so I want to...
asked on 29.01.2014 / 16:43
1
answer

Back to top button with CSS only. Mild scrolling with only CSS possible?

I know that here on the site there are a lot of Soft Scroll and Button issues for "back to top" ( back to top ), but they all involve JavaScript or jQuery, but this não is my goal. I would like to make or know if it is now possib...
asked on 29.10.2018 / 13:19
1
answer

Is it possible to de-structure an array in PHP equal to or similar to the list in Python?

In Python we can de-structure a list like this: lista = [ "Maça", "Pera" ] maca, pera = lista print(maca, pera) The output will be: Maça Pera I know that in PHP it is possible to get the result using the function list $lista...
asked on 07.11.2018 / 00:26
2
answers

Logic to group data in array javascript

I'm having trouble grouping some data using JavaScript . I have the following array of objects that return from the database and send it to view : var object = [ { data: 1, categories: "Branca", name: "Feminino" }, { data: 1, ca...
asked on 09.11.2018 / 00:59
2
answers

Is there any plugin or generator of CSS code for Shapes?

I would like to know if there is a method of creating Shapes using CSS, which I do not have to create and adjust everything from scratch until I can create the shape I want. Is there any way to streamline this? Some standard forms or some gen...
asked on 04.02.2014 / 12:37
2
answers

Differences when instantiating a class

Using PHP when instantiating an object I do it as follows: $obj = NEW my_class_exemplo; however the auto complete of netbeans always gives me the option to put with parenthesis like this: $obj = NEW my_class_exemplo(); Question...
asked on 22.01.2014 / 23:33
2
answers

JSONObject with multiple values without using Array

Objective Create a JSON with the following structure: { "auth": { "user": "rbz", "token": "abc123" } } Scenario Creating the root structure: JSONObject JOraiz = new JSONObject(); Creating the values us...
asked on 29.11.2018 / 11:11
3
answers

Remove 2 specific characters from a String

Good afternoon! Devs, I can not solve the following problem: In a calculator app, the calculations always return a Double, which automatically inserts a decimal even if it is to deploy zero, and to show in the editText would like to remove the "...
asked on 27.11.2018 / 21:26