Interesting questions
-
2
votes2
answers1675
viewsSending an email programmed with PHP
All right, folks, I’m new here and I have a very peculiar question. I am developing a system (Codeigniter + Mysql) that records some events and should send an email at a predefined date, around…
-
1
votes1
answer94
viewsGroup continuous repeats with Mysql
I was wondering if there is any way to group repetitions using Mysql only. If you make a SELECT * from tabela WHERE id_usuario = 1 ORDER BY id ASC will return: id | id_usuario | Data | Texto 0 | 1 |…
-
-1
votes1
answer76
viewsHow do I create a Slug automatically from the title of an item created with a Django form
Like the line prepopulated_fields = {'slug': ('name',)} you can generate the Slug of an object automatically just by typing its name in the admin panel. I wanted to do this also when the object is…
-
0
votes1
answer201
viewsDjango-admin startproject command does not create the Manage.py file
After running the Django-admin startproject command the Manage.py file is not created. I’m using python 2.7.12 I tested with versions of Django-1.4.3 and Django 1.5.1.…
-
7
votes2
answers1109
viewsDo if by denying a boolean in Python
How do I make for the if check a boolean negation, as below: self.senha = Gugu_0099 for i in self.senha: if i.isdigit() and i.isalpha(): total_simbolos += 1 I want you to get into this if if the…
-
0
votes1
answer19
viewsInsert elements into an Array with Hooks and display in a list
Hello, people. I’m new to React-Native and I’m still learning some basic concepts. My current problem is this: I want to make a screen of newly searched items, so that when the user clicks to type…
react-nativeasked 4 years, 10 months ago Kelvin P. 23 -
6
votes2
answers3464
viewsSecure authentication via REST
I searched and could not find solution to the following problem: How do I control requests on a particular REST service? For example, if I have a blog where I access my services (insert post, remove…
-
-1
votes1
answer320
viewsHow can I check the status value on a request using Xios?
index.html <!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link…
-
0
votes0
answers105
viewsError trying to access localhost on wamp server
I downloaded Wamp Server 2.5 from this site here installed it normally made the necessary settings as shown in the images below: however as you can see in the image my icon of wamp server only turns…
wampasked 10 years, 6 months ago Felipe Henrique 2,135 -
0
votes1
answer41
viewsError in Docker-Compose.yml
Good evening guys, I’m having an error in Docker-Compose.yml, the error shown is as follows: and my code is this: version: '2.4' x-database-variables: &database-variables SPRING_DATASOURCE_URL:…
-
0
votes1
answer83
viewsUpdate data from two worksheets without overwriting in the source file
I read the file sheets in the following way: sheet_Pessoas = pd.read_excel("meus_dados.xlsx", sheet_name=0) sheet_Clientes = pd.read_excel("meus_dados.xlsx", sheet_name=1) Then I add a line in the…
-
1
votes2
answers787
viewsReset option select
JS: function alterarStatusFunction(val){ if(val =="aprovado"){ if (confirm('Tem certeza que deseja alterar o status dessa transação para APROVADO?')) { document.formtransacoes.submit(); } else {…
-
0
votes1
answer474
viewsError executing login() 'Anonymoususer' Object has in attribute '_meta'
I’m trying to log into an account of Django to redirect to the main page of my project, but the command login returns me the following error. AttributeError at /login/ 'AnonymousUser' object has no…
-
0
votes0
answers62
viewsModelstate invalida
I have a class called, Colaborador. and the collaborator has a bank. public class Colaborador { public virtual Banco Banco { get; set; } public Guid? BancoId { get; set; } } my problem, is that even…
-
0
votes1
answer211
viewsHow to click non-clickable HTML tags? Via console
Good staff I am with a doubt, I would like to click on non-clickable HTML elements, as for example I know that with the following code we can click a button knowing that I am working via console in…
-
0
votes1
answer352
viewsHow to create a measure to count different numbers?
I’m new in this world of power bi and I’m in need of a help, it may be basic what I’m going to ask. I have an excel spreadsheet that gives me more or less to structure down. Protocolo Pedido Item…
powerbiasked 7 years, 6 months ago gabrielfalieri 1,231 -
1
votes1
answer1350
viewsError when trying to update a Wordpress post using the WP REST API plugin
Hello, I’m new with Wordpress and need (for yesterday) solve this problem. Help! I’m creating a simple Angular 2 (V6+) integration that accesses the plugin-generated api WP REST API and the json I…
-
4
votes1
answer211
viewsAjax locks the computer
Analyze the code below function update(){ $.ajax({ url : 'http://localhost/sistema', type : 'get', dataType : 'json', success : function( data ){ console.log('Mostrar dados: '+.data.dado); } }) }…
-
1
votes1
answer385
viewsHow to remove property inherited by the component?
When placing a side navigation icon, I noticed that a piece of it "leaked" out of the expected, which made it behave visually strange in the animation. I put a background-color: red for easy…
-
2
votes1
answer44
viewsDoubt with "minor" in Visualg
I started a course of algorithms and I like it a lot! But lately I have been quite complicated with the question of "minor" in some situations. Follows the question: Create a program that reads the…
visualgasked 4 years, 10 months ago Lucas Silva 23