Posts by Eduardo Andrade • 93 points
7 posts
-
1
votes0
answers34
viewsQ: Change Cultureinfo to MVC5 / C# and Multi-tenancy
Good afternoon folks! I am working with MVC5 and need a help in the following situation.. I have a view that contains a language selector, and needs to dynamically change the content after selecting…
-
1
votes1
answer966
viewsA: Is there a function to calculate the trend line in PL SQL?
The solution is: SELECT valor, mes, ((mes * SLOPE) + INTERCEPT) TENDENCIA, SLOPE, INTERCEPT from( SELECT valor, mes, ROUND(REGR_SLOPE(valor,mes) over (partition by id_multi_empresa),4)SLOPE,…
-
2
votes1
answer966
viewsQ: Is there a function to calculate the trend line in PL SQL?
Good morning folks. I need a function to calculate a trend line. I have a query (part of the function): select round(sum(nvl(vl_indice, vl_meta))/12, 2) from ( SELECT SUM (vl_indice) vl_indice, SUM…
-
4
votes2
answers1659
viewsA: What is and what is the reserved word "strictfp" for?
The stricfp is used to create the so-called extended accuracy. This extended accuracy was created due to the need for some programmers to need more precise computation over floating point values.…
-
1
votes3
answers116
viewsA: Doubt about how <header> is interpreted
Researching, I found something that can help you : source: http://www.agenciamestre.com/seo/seo-na-title-tag/ 36 out of 37 of the world’s top Seoptimizers point out that the title tag is the most…
-
-4
votes2
answers13989
viewsA: What is the function of the super in a Java constructor?
When we have objects and make one class inherit the characteristics of another, using "extends", it is necessary to create constructors, but many of them because of of elegance define themselves…
-
1
votes0
answers152
viewsQ: Problem loading . css compressed in IE9
I have a problem loading styles from one page exclusively in IE9, in other browsers and versions IE10-11 work properly. The page uses Bootstrap 3.1 and another template, so it uses multiple files…