Posts by luizricardo6n • 333 points
8 posts
-
1
votes1
answer236
viewsQ: Seek Time vs Transfer Rate
I was reading a bit about the Hadoop tool for big data and came across the terms Seek Time and Transfer Rate. I found definitions like Seek Time is the delay to find a specific file/data and…
hadoopasked luizricardo6n 333 -
0
votes1
answer1003
viewsQ: 404 error while updating page - Angular 4
Guys is the following, I started a new project in Angular 4 and it works perfectly on the localhost. I went up to the server (Tomcat) and I was testing when searching the url…
-
1
votes1
answer124
viewsQ: Node_modules folder does not go up to svn
I have this (original) dependency file numeral which is in the folder node_modules -> numeral ->locales -> pt-br // numeral.js locale configuration // locale : portuguese brazil (pt-br) //…
-
1
votes1
answer80
viewsA: Recaptcha appears with Scroll Bar
When using your css configuration *{... overflow-x... the selector * indicates that you should assign such styles to all elements of the page and by assigning this style is giving conflict with some…
-
4
votes1
answer829
viewsA: Calculate Price in Javascript
Change the type of input for number which will operate with , or with . and, in addition, it will make it impossible for the user to enter invalid characters. I hope I understood the problem and…
javascriptanswered luizricardo6n 333 -
3
votes3
answers590
viewsA: How to remove apostrophes from a variable
So the way you made it works, just add you ' at the beginning and end of ''ADESIVO 478'' for SQL server syntax. It would look like this: DECLARE @ProdutoNome VARCHAR(30); SET @ProdutoNome =…
-
0
votes2
answers554
viewsA: Check if working time is in the chosen time range Jquery/ Javascript
verificaHorario(7, 16); function verificaHorario(horario_inicial, horario_final) { var horario_funcionamento = [08, 13]; for (var horario = horario_inicial; horario <= horario_final; horario++) {…
-
4
votes3
answers83
viewsA: Select different value from "X" name
It is possible using the operator != SELECT top 1000 * FROM [tabela_clientes] WITH (NOLOCK) WHERE STATUS = 'pendente' and status_2 = 'pagamento' and REGIAO != 'sao paulo' or <> SELECT top 1000…