Interesting questions
-
0
votes1
answer118
viewsScreen minimizing leaves html messy footer words
When I minimize the browser the phrases go into the corner get messy. Follow the code: css: @charset "UTF-8"; body{ margin: 0; width: 100%; height: 100%; background-color: white; } li{ color: white;…
-
0
votes0
answers547
viewsHow to get http data and show on screen with Angular 2+
I’m having trouble getting an angular request backend is returning right but I’m not able to put the variable in html. app.compoonent.ts import { Component } from '@angular/core'; import { CanLoad,…
-
0
votes2
answers199
viewsCapture URL that is inside a div with Jquery
I have a project where there are several boxes, with an image, and a link. I would like it when I click on the class . single-project captures the value of href, but I’m not getting it.…
-
3
votes2
answers361
viewsReturn div to initial position after animation?
How can I return mine div to the starting position if it reaches a certain point on the left? I have the following current code: $(document).ready(function() { $("#botao").click(function() {…
-
1
votes1
answer294
viewsHow to use SQL instead of JPQL?
This week I went through a problem, to be able to build a Java API using JPQL, but my Java API is not yet completed and I can already predict that in the future my project will need reporting, and…
-
-2
votes1
answer74
viewsPython | Selenium | Looking for html element
Hello guys I am beginner in python and little knowledge in html, I’m trying to do makes a search for information on a dvr Intelbras via web page. until a certain point I manage to do what was…
-
3
votes1
answer58
viewsIs it recommended to use typedef in C++?
I know C++ is compatible with C, but C++ has its own way of programming and C as well, so there are legacy things from C that shouldn’t be used in C++, the typedef is one of them? If yes, what to…
-
0
votes0
answers19
viewsMatlab error: Too Many Elements
How to read a file. txt that has many elements? For a few elements the dlmread command works, but for large-order matrices it does not.
-
-1
votes1
answer83
viewsAlign my buttons inside Javascript?
I imported Tabledit Jquery on my page, but for some reason, the icons aren’t aligning as they should be, as I might be implementing css for buttons align (one side of the other)? Code:…
-
1
votes1
answer63
viewsIs the firebase quota per account or for the project?
Guys, I’m having a question about the firebase quota, in this link there is the quota information of firebase https://firebase.google.com/pricing/? hl=en. However, the page does not say whether the…
firebaseasked 7 years, 8 months ago Matheus Diógenes Andrade 113 -
2
votes1
answer126
viewsAngularjs, after select, save to another table
I created a function called buscarCep() which returns me the following object: address_codigo: 453114, bairro_codigo: 15698, address_cep: 17052330,... I have another function called salvar, where…
angularjsasked 10 years, 4 months ago Celso Lisboa 71 -
0
votes1
answer58
viewsCharacter counter Event.target.value in useCallback does not update to zero
I am creating a character counter that needs to be updated according to the amount of characters typed in the text field. The result of the function must be a message that specifies the amount of…
-
0
votes0
answers76
viewsHow to convert `data java.util.Date` to `java.sql.Date`?
The idea is to consult the data by dates in the database (Mysql): I have 2 fields JXDatePicker and I want the return of the data between the initial date and the final date. In Mysql, the field date…
-
-3
votes1
answer203
viewsWhat’s wrong with this code?
A virtual store allows its visitors to filter products by price. There is an array of product prices. A programmer has already created a function maisBaratosQue(valor, precos) that returns an array…
javascriptasked 6 years, 1 month ago Sam Magbo 1 -
2
votes1
answer329
viewsComponent on another Android
I am developing an application using android studio 2.2.2 and would like my application to look like this: But when putting textView on the imageView it is under the image, I tried to use…
-
-1
votes1
answer31
viewsError request for Member 'salario' in Something not a Structure or Union
Guys, I need help with the sum of variables in a struct. the program does not compile and displays this error [Error] request for Member 'salario' in Something not a Structure or Union. The…
-
0
votes1
answer53
viewsAzure - Hot layer BLOB recording source
Gentlemen all right? In my Azure account is displaying a high consumption of: "Hot LRS Recording Operations - Layered Block Blob - 192% 1.92 / 1 10K" image below: In the last 3 days this number that…
-
0
votes2
answers263
viewsSave object to a Swift(IOS) session
I have a class and a subclass inside import Foundation import ObjectMapper class Aluno: Mappable { var ra:String! var senha:String! var nome:String! var cpf:String! var email:String! var…
-
0
votes1
answer38
viewsHow do I convert string values or items from an object column into binary with pandas?
I’m trying to convert a column into a data set where there is 'negative' and 'positive' for binaries or numeric items like 0 and 1, but I don’t know if I’m doing it right with the Pandas library.…
-
1
votes0
answers768
viewsFdmemtable losing data while using Filter
I created an Fdmemtable, at runtime, with the following structure: Cds_NaMenu := TFDMemTable.Create(nil); Cds_NaMenu.FieldDefs.Add('ID', ftInteger); Cds_NaMenu.FieldDefs.Add('MN_TELA_CODIGO',…