Interesting questions
-
3
votes1
answer2320
viewsHow to play fade effect in modal bootstrap to jquery ui dialog?
I am standardizing the modal visualization effects, in this project I have both bootstrap modal and dialog, it turns out that both have distinct effects. wanted to leave them only with fade in,…
-
4
votes1
answer1544
viewsMulti-threading in PHP applications
There is some Pattern design to perform the execution of multiple processes and the collection of results in it? Scenario: I have a large volume of data (> 200000 entries), have to perform…
-
0
votes0
answers14
viewsWhat is the difference between withApollo and graphql?
In some React projects, I have two situations that seem to have similar purposes, but I don’t know exactly how each reacts to a graphQL call, a Mutation call, or a simple restful API call: Both are…
-
1
votes1
answer554
viewsProblem with reading python files
What is the difference between, make python open and read a file, to pass the read result between áspas? For when I open a file, it contains only the word test and I pass this reading result by a…
-
-1
votes1
answer40
viewsAlgorithm problem in C
Good afternoon, I’m trying to make a program to estimate the contagion from some parameters, but the program is not working properly, it does not create file, and has not printed any of the prints I…
-
1
votes3
answers608
viewsClick on Carousel Materialize
Hi I am a few days looking for the solution to the following problem: I need to create a clickable Carousel (that has a link). I’m using Materialize, in the latest version, just by clicking on…
-
4
votes1
answer161
viewsAdd different scales in matplotlib
I would like a help to configure the Y-axis scale. When trying to plot a bar graph with low and high values, the smaller ones end up not appearing in the scale. I tried some options, but it does not…
-
3
votes1
answer97
viewsHow to align a menu made in Nav HTML+CSS
I try to line up in all ways with text-align: center; but none of it works and when I spacing with left the sub-menus are misaligned from the menu! * { margin: 0; padding: 0; } .menu { width: 100%;…
-
1
votes1
answer193
viewsRepetition system how to store a value
Make a program that receives the age, height and weight of 25 people. Calculate and show: The number of persons over the age of 50; The average height of people between 10 to 20 years; The…
-
0
votes1
answer101
viewsAllow https source access
I developed a Node api using restify only for real-time warnings, but came across a https problem: If the origin of the request comes from an https site the api does not work My Cors on the Node is…
-
1
votes2
answers8101
viewsmask accepting numbers and , with jQuery Mask Plugin
People wanted to know how to create a mask in jQuery Mask Plugin so that the input accepts only numbers and comma. To accept only number I’m doing so: $('#valor').mask('#', { reverse: true });…
-
1
votes2
answers349
viewsChange Bootstrap icon in Mobile version
Guys I have this code: <i class="glyphicon glyphicon-arrow-right"></i> which is a bootstrap icon of an arrow to the side. I want to make sure that when a person connected to the site is…
-
0
votes2
answers1505
viewsObject of a class in another Java class
Hello, There is possibility of having the class Object you instanced in the instantiated class? Ex.: (Incorrect syntax, just an assumption) public class Classe2 { // Metodos e vetores da classe }…
-
1
votes0
answers24
viewsConvert CSV to XLSX with Python Azure Function App
I am trying to create a Functionapp on Azure to convert a csv file to xlsx. My original script that works on windows local is this: import pandas as pd read_file = pd.read_csv…
-
2
votes1
answer79
viewsToggle icon with Jquery
<span class="col-sm-1 text-center"> <i class="taskIcon glyphicon glyphicon-chevron-down" data-toggle="collapse" data-parent="#accordion" href="#collapse1"></i> </span>…
jqueryasked 8 years, 5 months ago Marcelo Batista 1,617 -
1
votes0
answers27
viewsCould not set variable with fetch_object
I’m trying to make a simple query however, although Phpmyadmin perform the query, when I run the code Apache returns the message: Notice: Undefined variable: rprd in D: xampp htdocs final views…
-
1
votes2
answers48
viewsEntity framework 6.2.0 + Find
Hello, I’m using a search method with Entity framework and oracle, and found a problem with dates. In my search I use the following logic: Find(x => x.Data_Intencao >= Periodo.Date, c =>…
-
4
votes0
answers55
viewsHow to test virtual name-based Servers/SNI on a local machine?
I am migrating from Apache pro Nginx, and from a certificate "wildcard" (wildcard Certificate - a single certificate for several domains) for SNI. I would like to test the new configuration locally…
-
1
votes1
answer806
viewsHow can I create my own protocol as well as HTTP?
See this code below. It creates a server with Node.js. But, if I change var http for example: var xyz = require ("xyz"), var server = xyz.createserver... makes a mistake. var http = require("http");…
-
2
votes2
answers4643
viewsHow to remove characters from a certain point with Jquery?
How do I remove everything you have before the ? in that string smartphones?marca=3 or celular?marca=4 presenting only what is after the question mark "?" with Jquery or Javascript?…