All Questions

1
answer

How to make DbUnit recognize the Postgresql POLYGON data type?

I have the following domain of type polygon in the database: CREATE DOMAIN "global".polygon AS pg_catalog.polygon; The following table that uses this domain: CREATE TABLE user.area_geom ( id_area_geom serial NOT NULL, polygon g...
asked on 13.12.2013 / 17:30
1
answer

Help with JavaFX form

Hello, I imagine that my question is simple but I have not found anything in the forums of life (probably because I do not use the correct terms in the search). I am creating a form for students in JavaFX generating fxml files with Scene Buil...
asked on 24.11.2015 / 03:01
1
answer

How to make multilingual README.md for Github?

In one of my projects in git, the file README.md is in English, so I made another called README-pt.md and a link to navigate between them, for example : [Read this page in English](http....README.md) [Leia esta página em portugu...
asked on 14.05.2014 / 20:28
1
answer

Extensive number for number

I would like to convert an extended number to normal int; example: FunçãoParaConverter("trinta e dois") // retorna 32 FunçãoParaConverter("mil vinte e quatro") // retorna 1024 FunçãoParaConverter("mil t...
asked on 15.12.2017 / 20:16
1
answer

The parachute descends head down. How do you reverse it?

I made a Unity rocket that I can take off and land after five seconds. However, it lands like this: Iwanttogethimtogettothegroundwiththeparachuteup.HowcanIdothisforthecode?CodethatIhavesofar:doublet=5.0;voidUpdate(){GameObjectParaquedas;GameO...
asked on 24.02.2014 / 00:22
1
answer

Is it worth developing JavaFX for Web, Mobile and Desktop?

I would like to know how JavaFX is going, if it is already consolidated, if it is still bet. I really liked the look and the "Write once, run everywhere" .     
asked on 20.05.2015 / 16:05
2
answers

JavaScript function does not wait for the end of another to start

Problem My role is not waiting for the other to be finalized so it can continue, for example: Example: function buscando_dados(){ $.post('ajax.php',{},function(dados){ alert(dados); }); } function buscar_dados(){ buscando...
asked on 16.04.2014 / 17:17
1
answer

Why does Codeigniter perform so well on benchmarks even if it does not follow language standards?

I see a lot of people spitting on Codeigniter, saying it's a framework junk that refuses to follow "language standards." But I find it strange to say that of the framework that has the best performance among those that are not compiled as we can...
asked on 02.03.2015 / 17:07
2
answers

How to make a "Hello Word!" in this way

Without using the items below: Strings and String-type functions before output Numbers Regular Expressions Functions with the names: "Hello", "World", "HelloWorld" or anything similar to the output method var helloWord = function(){...
asked on 09.09.2015 / 20:42
5
answers

Line with image in the middle

I wanted to stylize a hr that would support an image in the middle. Type:    ------ image ------ I thought about making the image already with a line ready in Photoshop, but this makes it difficult to be responsive. Is it possib...
asked on 10.08.2015 / 15:12