Interesting questions
-
3
votes2
answers584
viewsCenter text vertically
I’m trying to make a DIV for a subscription with a photo (24x24) next. I want to center this text vertically, according to the size of the photo. I tried to use vertical-align: middle, but it didn’t…
-
2
votes1
answer660
viewsUi-route More than one view
Hello, I work with angular, and I’m using UI-ROUTE I’m trying to put two views on the same page and n with you. Here’s how I want the views to appear: When I click on "My registration data" it is…
angularjs angularjs-directives angularjs-scope angular-routes ui-routerasked 10 years ago Biellx 461 -
0
votes0
answers214
viewsProblems with OBJ + MTL Three.js Download
We are programming an educational application for orthogonal projections of polyhedra that are read via the Three.js library’s Loader OBJ+MTL. The problem is that depending on the OBJ+MTL file, the…
three.jsasked 8 years, 2 months ago Humberto José Bortolossi 101 -
1
votes2
answers1783
viewsprint matrix in Phyton
I would like to know how to print a matrix [[2,3], [4,6]] for example, in the form of line below line without using import
python-3.xasked 9 years ago mari 11 -
0
votes1
answer54
viewsmvc input date is changing format when I change google Chrome language
I have a website made in MVC and I have a datepicker, I want the date format of Portugal (dd-mm-yyyy), it works when I have google browser Chrome in Portuguese but when I put it in Inglish (USA) it…
-
3
votes1
answer45
viewsLoop with R arrays
I need to create a matrix that has all the coordinates for a 128x128 matrix in R if it were a 3x3 matrix, ex: 1 2 3 1 a b c 2 d e f 3 g h i I would need the following matrix x y 1 1 1 2 1 2 3 1 3 4…
-
1
votes1
answer768
viewsPHP require() giving error 500
I have a system developed recently in PHP7 on Windows, and, I decided to migrate to Debian9. At the moment everything works, but the autoload (psr-4) located in vendor is having problems when…
-
-1
votes1
answer437
viewsIs it possible to create a 100% cloud service to sign documents with digital certificate?
My idea, well summarized, is to upload a file in the browser, where the browser will ask the user to select the certificate and thus the site will return the signed document. Li in this topic a way…
-
1
votes1
answer47
viewsHow do I create an element with Vue JS?
I made this very basic structure, a component with input, I wanted to click a button and generate one more in html. I try to search with appendchild or v-for or even v-html, but I’m not getting. let…
-
0
votes1
answer332
viewsHow do you find out if the list is full?
The method below is to include a book in a list. Returns 1 if the book already exists in the list, 0 if it does not exist in the list and can be inserted and 2 would be for full list. I’m trying to…
-
1
votes0
answers53
viewsConnect Java to Access (.accdb)
I’m trying to connect a desktop application that uses Java to a server. First I tried to use Acess, but I had problem with drivers, I tried to use Ucanaccess and more problems, anyway, I gave up, I…
-
-1
votes1
answer72
viewsHow to use find in find_all result
When I execute a find_all, then I can’t use find in the outcome of this. Example: anuncios = soup.find_all('div', class_='txt-value') anuncios.find('p', class_='well') # Erro! But if I don’t…
-
0
votes0
answers59
views -
3
votes1
answer280
viewsDump from all banks to a specific user
I have user plant652 who has 54 databases and need to back up all of them. How to do them all at once in Centos 6 with cPanel?
-
0
votes2
answers1416
viewsHow to run commands in Android Studio?
I need to execute the command: Gradle -q dependencies to check library conflicts in Android Studio.
-
0
votes1
answer55
viewsCursor does not update Level (SQL)
Good night, I am making a cursor that updates the table level column of schools with the following rules: a. Schools with more than three levels of education are graded with category A b. Schools…
-
2
votes1
answer229
viewsOpen a <span> when the image loaded by Jquery is loaded
This is the Jquery code: What I want is that when I click the loaded image it displays a span with text at the end of the image. (function(){ /* Private variables */ var overlay = $('<div…
-
0
votes2
answers719
viewsTotal sum with multiple values dynamically using jQuery
I’m trying to do a function that takes the values of all <div class="preco-produto"> make the total sum and population in the <div id="final">. I made the function that separates the…
-
1
votes0
answers473
viewsInsert values from 0 to 15 on the keyboard in Assembly fasm x86
Good. I have to do a program on Assembly that reads a number from the keyboard that is to choose a color in video mode. From 0 to 9 I know that’s so: mov ah, 40h ;Pedir um valor mov bx, 1 mov cx, 44…
-
12
votes1
answer832
viewsWhat is the baseline?
Studying Flexbox (layout type in HTML/CSS), I came across this concept of baseline, I’ve never seen before: align-items ... ... baseline: items are aligned so that their baselines line up Looking…