Interesting questions
-
1
votes0
answers41
viewsWhy can’t find_packages() find one of my code packages?
I’m trying to generate a distribution package for Pypi by setuptools. The problem is that the function find_packages cannot find one of my packet folders, called win32. The directory tree is as…
-
1
votes0
answers55
viewsPassing "this" to classes initialized within another class in Typescript
INTRO: I’m relatively new to Typescript (a few weeks of practice), I’m slowly learning superset and using it in conjunction with Electron. I was making a extend class Browserwindow to create extra…
-
0
votes1
answer1109
viewsString for HTML
Good afternoon, I’m not sure if that’s the most appropriate title... I’m using Meteor and mongodb. I have 2 input, one where I type the name of the site and the other I type the site…
-
2
votes2
answers238
viewsmanipulating csv file
good people. I need to use a csv file, which has more than ten columns and two thousand lines. I’m not sure how to get a single column. this program below, I took on the internet. separador = ','…
-
0
votes0
answers204
viewsUpload files to Sharepoint in a specific folder using Python
I am uploading file from my machine to Sharepoint using python with lib Office-REST-Python-Client, but I can only upload the file to the Sharepoint root and not to a certain folder. Code I’m using…
-
0
votes0
answers8
viewsTransform Image into Map to use with Pathfinder Algorithm
I want to develop a kind of AI that will go a shorter way (Walkable part is just where it is gray) on the map and for that I will use the Pathfinder algorithm. For this I am using the following…
-
0
votes0
answers775
viewsChange image height by associating to navbar
I implemented a navbar with a logo at the top, inspired by this site: http://www.fentonandfenton.com.au/. It turns out that the customer’s logo has another ratio and has bigger height than the…
-
3
votes2
answers446
viewsRegain marker latitude and longitude (Marker)
Follows the code: function initAutocomplete() { debugger; var map = new google.maps.Map(document.getElementById('map-create'), { center: { lat: -23.5505199, lng: -46.6333094 }, zoom: 11,…
-
0
votes1
answer50
viewsFilling missing result index of a select with 0
I make a select in the database from which I get a array data. With this, I do the following foreach in the same: foreach ($resultado4 as $key => $value7) { $array6[$value7['carteira'].'flores']…
-
1
votes0
answers64
viewsNullpointer Exception when using the @Before and @After notations in Selenium
When using the ratings @Before and @After, is giving nullpointer error. Does anyone know what it is? Follows the code: import org.junit.After; import org.junit.Assert; import org.junit.Before;…
-
6
votes5
answers737
viewsHow to save data from a changed grid?
My system has a grid with order items, coming from the dice. Well, I need to change the requested items, add one more item or even remove. You get the information in json and I’ll put it on the…
-
1
votes2
answers147
viewsProblem with a Count in Asp.Net MVC
My application manages courses, on my registration screen I have a field "amounts of vacancies", where, this is decreasing every time a student enrolls in a course. The problem now is that my Count…
-
1
votes1
answer28
viewsHow to make a shell file create a php page
I’d like to make a MIB (Management Information Base), which is created, and I have to create the manager and the agent. I am using shell to do this, in the agent I have to create a page in PHP, to…
-
2
votes1
answer714
viewsMysql - Update to null Unique column
Good afternoon, you guys. I would like to know if there is a possibility of UPDATE for NULL where the field allows only values UNIQUE. I tried that way: update FUNCIONARIO set codigocartao = NULL…
mysqlasked 11 years ago Iago Correia Guimarães 799 -
1
votes2
answers3539
viewsListing folder files with PHP
Hello I made this program that lists the photos of my directory , only I wanted that when clicking on the list of the photo appears the photo on screen with php. <?php $path = "C:\FOTOS…
phpasked 9 years, 9 months ago allan araujo 541 -
-1
votes2
answers36
viewsArchive being written in several lists!
I am developing a simple program in python, where I need to manage the stock of a store. When I try to have the products saved in a single list, they end up being saved in several, making it…
pythonasked 5 years, 10 months ago PedroPoiate 11 -
2
votes1
answer83
viewsJoin to Linq c#
I have the following query in Sql Sevrer SELECT PT.id, P.nome AS Codigo, PT.topologiaid, TE.id AS TipoEntidadeId FROM [dbo].[propriedade] P INNER JOIN [dbo].[propriedadetopologia] PT ON P.id =…
-
2
votes1
answer5848
viewsHow to install a previous version in Angular
Good evening, my question is very simple, but I did not find the answer, as I install a version 4 of Angular, if the current one is in the 6? I tried to npm install -g @angular/cli@4 or npm install…
angularasked 7 years, 8 months ago Priscila Neu 121 -
0
votes2
answers101
viewsHow to show loading indicator on Swift 4 with Wkviewweb
Hi, I’m trying to show the loading indicator while my page is being read, but it didn’t work. I searched the internet, but it doesn’t have the full code and I’m a beginner on Swift. You can help?…
swiftasked 8 years, 2 months ago Roberto Luiz Teixeira Rocha 71 -
2
votes1
answer1048
viewsPass an input value to an object array
I’m trying to pass on the value of one input text for an array of objects, via jQuery but not understood how to insert it in array. I tried to wear something like: var usuario =…