Posts by Vitor Luiz da Silva • 184 points
8 posts
-
0
votes2
answers111
viewsA: Mobile Swipe: Hangs when moving your finger on the screen quickly
Try to decrease the time of the Animate or remove them. $('body,html').animate(...,1000); When vc moves up or down you set 1000 milliseconds (1 second) to finish the action, by moving up and down…
-
2
votes2
answers1568
viewsA: Taking absolute path from relative on Node
To get the absolute path of the current file you can use: Object.defineProperty(global, '__stack', { get: function() { var orig = Error.prepareStackTrace; Error.prepareStackTrace = function(_,…
-
0
votes1
answer107
viewsA: Request via FTP and return file via HTTP
One way would be to redirect directly to the file: header('Location: ftp://username:[email protected]/somefile.zip'); Source:…
-
1
votes1
answer566
viewsA: Error: Duplicate name for procedure or function
You are declaring the procedures again when you use the word "Procedure", in other words, when the compiler reads the word procedure he understands that you are declaring a new procedure and in this…
portugolanswered Vitor Luiz da Silva 184 -
1
votes2
answers1221
viewsA: Spring Security with Java EE
I’m using spring security and in my case it works super well: https://www.mkyong.com/tutorials/spring-security-tutorials/ My suggestion is you download the tutorial project with authenticacao via…
-
0
votes1
answer588
viewsA: Java system sending message to mobile
Dear Silvano, your doubt is not specified, what do you want to do? Want tips on where to start, how to do it? How far do you know? This way we can help you better. There are some ways to do this: 1)…
-
1
votes2
answers998
viewsA: Search week number of the year through a date in C#
The function you are looking for is this same Getweekofyear and it will return you an integer (Int32), as described on the page. Return Value Type: System.Int32 A Positive integer that represents…
-
1
votes3
answers5600
viewsA: Remove input letters using Javascript and regular expression
Hello, my suggestion would be that you use masks in Jquery, which would make your life much easier. I believe that if you follow the link below you can succeed.…