Interesting questions
-
3
votes3
answers1392
viewsGrab content from div, a, select
I have a problem implementing this simulation, is the following, the user chooses the package by clicking on one of these boxes (monthly, quarterly, semi-annual or annual) then choose in select the…
-
1
votes0
answers9
viewsAssign CSS to a div with that div’s id
Can you help me with this Since i have two Carousel in same page and mess Around with the other one. #patrocionadores { .carousel-inner .active, .carousel-inner .active+.carousel-item,…
-
1
votes1
answer180
viewsdiv is not centered on mobile
I have the following modal and inside it basically there’s an image in the upper left area and a text on the right side of the image and then a form. Everything is working perfectly well, but when…
-
7
votes3
answers1552
viewsHow to download an image from the internet with C#?
For example, I need to download a sequence of images: http://www.simepar.br/site/fragmentos/radar/simepar_24.gif http://www.simepar.br/site/fragmentos/radar/simepar_23.gif…
-
0
votes0
answers26
viewsProblem with cloudfront aws with Nuxt
I have a problem that I have no idea how to solve. I’m hosting a site made with Vue and nuxt in the cloudfront of aws, so far everything normal When I am on some internal page and reload pressing…
-
1
votes0
answers30
viewsDifference between using COUNT in column and COUNT with "*"
I accomplished 2 querys in a bank where I needed to know the amount of records based on a column but if I change the parameter of COUNT() the results are different. SELECT COUNT(`time`) as 'tempo'…
-
0
votes1
answer374
viewsVIACEP did not find the cep variable to return to the result in PHP
Hello, Only the zip code search to find the city and state works, but the city and state search [and neighborhood] to find the zip code does not work because in JSON, the zip code variable…
-
1
votes1
answer139
viewsTo configure the resolution of modules in the tsconfig.json file to use the ts-Node library in Typescript
Hello, I am creating an API in typescript and the structure of my project is as follows:: api | - src | - index.ts | - server.ts | - package.json | - tsconfig.json Within api/src/server.ts I have a…
-
2
votes1
answer86
viewsDoes not accept Enum parameter with non-zero integer
Follows code: class Program { public enum Enum { Casa = 0, Apartamento = 5 } public static string MinhaFuncao(Enum @enum) => "MinhaFuncao"; static void Main(string[] args) { var r =…
-
2
votes1
answer593
viewsHow to use LEAD and LAG using a condition
My question is, if I can use LAG and LEAD, using a condition in the query, for example: I have the spine cep.. I want to take the value of the next row, and the value of the previous row of that…
-
0
votes0
answers24
viewsmicrosoft-Graph getting only Scope user.read
Hello! If anyone can help. I’m trying to get emails from some of our organization’s 365 accounts to integrate with a CRM application. The program is in PHP and I’m trying to access in microsoft…
-
4
votes3
answers214
viewsError: "Return should not be followed by an object expression"
I have this function that has a simple registration but is not registering My doubt would be on that return RES; which gives the error message below the code. //botao para cadastrar OS private void…
-
5
votes2
answers180
viewsIncorrect value in vector when binary search
import java.util.Arrays; /** * @author Vinicius * */ public class Vetor04 { /** * @param args */ public static void main(String[] args) { int vet[] = {3, 7, 6, 1, 9, 4, 5}; int s =…
-
0
votes1
answer94
viewsHow to import CSV files from a same level folder (and/or above) in Python?
I have already searched several topics here, unsuccessfully however. So, if there is already an equal question, please forgive me and indicate a solution. My project is articulated as follows:…
-
1
votes0
answers99
views"Outofmemoryerror" error using Volley
I’m making an application where I have a URL that returns a JSON, through the Volley library, I’m taking the content of this URL and turning into string, this process shall be carried out on each 5…
-
0
votes0
answers22
viewsRails does not install in Centos
I have a VPS with Centos running, and I can’t get out of this mistake: [athos@athoscastro bin]$ gem install rails Fetching: nokogiri-1.6.6.2.gem (100%) Building native extensions. This could take a…
-
1
votes2
answers215
viewsError in php if, login authentication system
Hello, then, I’m trying to make a simple login system with php and mysql, but it’s giving error in my if. I’ve moved... too much and nothing, when it seems right it does not authenticate you put any…
-
0
votes0
answers110
viewsPersist child objects with parent id 1:N
Guys I’m having difficulty in relationships with Hibernate, I have a 1:N relationship between Provider and Address (1 provider may have N addresses). My problem is this, when I try to persist a…
-
0
votes0
answers833
viewsOutdated version when looking for vehicle by the plate in the SINESP web service
Looking for about consulting vehicles by board in Git, I found a client made by Victor Torres updated with the latest version of SINESP, tried to convert to PHP and got the following code: <?php…
phpasked 7 years, 9 months ago Gustavo Dias 460 -
-1
votes2
answers109
viewsHow can I view BD (Mysql) images(url) in Android Studio
How can I show images (url) of the Database (Mysql) in Android Studio? Mainactivity.java package com.example.APP; import android.os.Bundle; import android.os.StrictMode; import…