Interesting questions
-
1
votes1
answer124
viewsJava Database Authentication generated by Asp.net MVC 5(Generate passwordhash in Java equal Asp.net MVC 5)
I need to authenticate an automatically created user in Asp.net mvc 5 using the java language for example: user: so-and-so password: Ab123456 Password recorded in the Database PasswordHash…
-
0
votes2
answers40
viewsAuto calculation Jquery does not work
I have this budget form. I’m taking advantage of the auto calculation of another form, which works perfectly. But I threw it at this other one and it doesn’t do the auto calculus at all. I checked…
jqueryasked 7 years, 2 months ago Rogério Pancini 397 -
7
votes3
answers23785
viewsHow to make PHP and Mysql paging?
I want to make a pagination on my blog. I’m not going to have 50 posts on the first page, so I want to limit the page to the last 15 posts added and then by clicking on the "Older posts" button will…
-
5
votes4
answers3500
viewsHow to increase the space between text and underline in CSS?
When we’re using a text-decoration: underline we have an underlining applied to it. However my doubt is the following: It is possible to change the distance between text and underline? If yes, it…
cssasked 6 years, 7 months ago João Pedro Schmitz 2,974 -
1
votes1
answer612
viewsHow to view the CPF in several different places every X seconds on the video screen using HTML5?
Does anyone have any idea or suggestion how to make the CPF run every X seconds on the HTML5 video screen? <video width="320" height="240" controls> <source src="movie.mp4"…
-
0
votes1
answer154
viewsMYSQL - add column and calculate days late of a date and sort by the longest delay
Hello, Suppose I have a table tb_fatura with the following fields and values: id | transacao_id | valor | vencimento 1 | 1 | 1109.97 | 2020-02-19 2 | 1 | 10, | 2019-05-01 I want somar the column…
-
0
votes2
answers162
viewsIdentify zero sequences in a csv file using python
good morning! I’m having trouble identifying sequences of zero in a csv file, using Pyhton. Below is an example of my csv file: Index | Ponto de Medição | Data | Hora |ZeroApply 0 | User1 |…
-
0
votes1
answer966
views -
0
votes1
answer102
viewsCheckbox with checked property does not return me any value
I have a code where the person must select a modality of the academy, for example, the martial arts plan, the person must select which fight she wants. So I made the following code: <div…
-
2
votes2
answers1143
viewsExtract and print specific xml values using Python
Hello :) I am trying to capture data from an xml to use in a search using python, but my algorithm is only returned the data from the last tags, example: The xml is found in…
-
2
votes2
answers123
viewsDate to String to Pyhton conversion
I’m trying to get a date of this next select in python select MAX(PAYMENT_DATE) from fact_cashflow WHERE DOCUMENT_ID = 'SALDO FINAL' and PAYMENT_AMOUNT > 0 But my answer on the console is this…
-
2
votes1
answer40
viewsVanishing symbol when saving graphic image
In the annotations inserted by the argument annotate in the chart below in one of them has the symbol " ", but when saving the image as PDF the symbol disappears and appears "..." instead. I’d like…
-
0
votes1
answer59
viewsHow to save the id of a relativeLayout?
Hello, good afternoon. I’m new to Android programming and am unable to save the ID of a relativeLayout to be compared. Example: <RelativeLayout android:id="@+id/idAmc"…
-
4
votes1
answer2755
viewsGROUP BY in query with column by subquery
I have the following select: SELECT A.CARRO, (SELECT TOP 1 VALOR FROM tab2 B WHERE B.DATA <= A.DATA ORDER BY B.DATA DESC) VALOR FROM tab1 A In (SELECT TOP 1 VALOR FROM tab2 B WHERE B.DATA <=…
-
1
votes0
answers30
viewsCreating objects with rpy2
There are two ways to create R objects using rpy2? I have an example: import rpy2.robjects as robjects # Criando um objeto R a partir do Python robjects.r(''' rfunc <- function() { print("ola") }…
-
1
votes3
answers109
viewsI made a Splashscreen it carries and it does not go to the Activity prixima what should I do?
What I must do ? intro.java public class intro extends AppCompatActivity { protected static final int TIMER_RUNTIME =5000; protected boolean mbActive; protected ProgressBar mProgressBar; @Override…
-
2
votes2
answers567
viewsMethod that takes 3 integer values per parameter and returns them ordered in ascending order as an array
I can’t get the array filled returned be printed class Program { static void Main(string[] args) { int valor, valor2, valor3; Maior maior = new Maior(); Console.WriteLine("Digite um numero"); valor…
-
15
votes1
answer10056
viewsUpload images with Crop and resize, jQuery and PHP
I need a function in which the person should upload an image, and it should "crop the image", leaving it in the right size, Facebook style and then should be saved in the databank. I tried several…
-
-1
votes0
answers5
viewswdio is not recognized as cmdlet name
I’m studying the WDIO framework and did an example project to keep practicing. I had to format the computer and when I cloned it, I did the npm install command and when I went to run the test with…
asked 3 years, 9 months ago Allan Costa 31 -
2
votes1
answer119
viewsRedeem user phone number
On Android, using Java, it is possible to redeem the device user’s phone number with the following code: TelephonyManager tMgr = (TelephonyManager)mAppContext.…