Interesting questions
-
1
votes0
answers44
viewsHow to set the images and fonts directory in Laravel-mix?
I am using the Laravel-mix in a personal project, however, without the presence of the Laravel Framework. When I have the files generated, Laravel-mix reads the Sass files and creates a directory…
-
-1
votes2
answers63
viewsFunction of free() in abstract types
I expected the following code to record the students' data, and then immediately erase it from memory: testTurma. c #include "aluno.h" #include <stdlib.h> int main(){ aluno *turma; turma =…
-
2
votes1
answer148
viewsChange SVG animation
I have an SVG animation that is a rotation. I want to change its speed through an input number (dur=variable). <svg width=400px heigth=400px> <rect ry=0 rx=0 x=100 y=100 width=50 height=50…
javascriptasked 9 years, 11 months ago akm 3,387 -
0
votes1
answer6197
viewsSyntax error, unrecognized Expression when calling a function with Jquery
I am using in my project the Easyautocomplete, which is working perfectly. However I have this error in my project and could not find it. If I take Jquery the error does not happen. It follows my…
-
-2
votes1
answer916
viewsJava get and set methods for Boolean and char
I’m developing a code that uses get and set methods for data entry and processing. The goal is input with 9 values each with a data type, but I’m not getting the conversions for the char type and…
-
0
votes1
answer244
viewsHow to insert excel table in mysql using php
I have a table in excel with more than 300 lines and would like to insert the data of this table in mysql in phpmyadmin php usage currently Thank you for your attention!
-
0
votes1
answer177
viewsHelp Chrome Puppeteer Paging
I’m doing a Webcrawler, in the following stream Access a search URL Collecting the information Execute pagination (here is the error) Click to the next page, reload it (then I tried to force a…
-
-1
votes2
answers501
viewsCalculate PHP hour percentage
I need to calculate the percentage of each hour of one array. For example: Hora1: 4:45 am Time 2: 1:30 am Time 3: 00:45 Total: 07:00 $array = array('04:45','01:30','00:45'); I did the calculation in…
phpasked 7 years, 7 months ago Eduardo Santos 754 -
2
votes2
answers14038
views -
2
votes2
answers453
viewsChange the home page via htaccess
People when accessing my site apache automatically loads the page index.php. It is possible to change this in the htaccess? I want him to always search the page Login.php.…
-
-1
votes1
answer77
viewsYou doubt Function and Length?
Good evening Everyone, I would like to help with the following code: function tamanhoNomeCompleto(nome, sobrenome){ return (nome + " " + sobrenome).length; } tamanhoNomeCompleto("Lucas", "Paixao");…
-
4
votes2
answers79
viewsReusing string in XML
Ex.: <?xml version="1.0" encoding="utf-8"?> <resources> <string name="primeiro_nome">Bigown</string> <string name="nome_completo">{primeiro nome} Silva</string>…
-
1
votes2
answers36
viewsSearch only data from two tables with different id’s
Good, I have 2 tables: Cars: id; model; Comb; price; Carros_img: id; id_fk; (Foreign key of Cars) img; I do this research: SELECT DISTINCT carros.id, carros.modelo, carros_img.img, carros_desc.comb,…
-
-1
votes2
answers45
viewsHow to submit form and how to leave without refresh
I’m trying to send my form to my email, but it only returns the message "No Arguments Provided!". I don’t know what I’m missing. And I would also like to know how to send the form and appear the…
-
0
votes1
answer227
viewsWhat are Django’s view, serializer and model settings?
I’m studying the 'Django' and would like to understand the definitions view, serialize and model and which route between them. Thank you
-
2
votes2
answers456
viewsDraw triangle with repetition structure in Python
I need to draw a triangle of the shape: ....1 ...12 ..123 .1234 12345 I should use repeating structures. From what I understood as a hint, I should use two concatenated structures. I’m a beginner…
-
-3
votes1
answer631
viewsERROR IN ANDROID STUDIO APP CLOSING WHEN RUNNING
recently (and all of a sudden) an extremely annoying and annoying error has arisen in Android Studio, in fact the IDE itself does not point error in any code, but when I run an app that has images,…
-
2
votes1
answer1334
viewsfloat on some element, and div does not track content
I’m trying to float an element to the right, and this element is inside a div no set size. The problem is that when I float the element p to div does not follow the content. Follow the HTML code:…
-
1
votes2
answers53
viewsButtons don’t change color
The buttons were to be blue according to the .rounded-button.blue, but they’re black and only the edge works. What’s wrong? .client-buttons { position: absolute; top: 12px; left: 12px; z-index: 100;…
-
0
votes0
answers23
viewsDeploy data that cannot go to github
Good morning, I have 1 project, which is in development and I am using github in the development phase. However configuration files that have password, I n mando pro github haha. Qnd I do the last…