All Questions

1
answer

SSL Cloud app with SHA-2

Good morning, I have a certificate created by GoDaddy for a site I've already created the configuration to load it to coudapp in azure , this certificate has a thumbprintAlgorithm sha2 , but in all the guides azure works o...
asked on 22.01.2016 / 17:42
3
answers

Swift iOS prepareForSegue

I'm just starting with Swift and I have a doubt. I have a controlador_uno : UIViewController and another controlador_dos : UITableViewController . The thing is that I send a varible by segue from controlador_uno...
asked on 08.02.2016 / 05:17
2
answers

Problem when retrieving data on Google Sheet using RegexExtract

I have a database in Google Spreadsheet where there are cells that have more than one e-mail address. I am occupying the function RegexExtract , but it only extracts the first address of the e-mail that it finds. How can I make a loop o...
asked on 01.02.2016 / 20:15
1
answer

How to select 'onclick' with random 'id'?

I am extracting data from a web with a series of tables that are loaded with data according to the tab that you select and I can not do the corresponding 'onclick'. The id of the element changes randomly and also the property of the onclick attr...
asked on 19.03.2018 / 16:00
1
answer

Make the circle of Google Maps do not affect a click on the map

I have a Google map where I can put a marker, drag it and with it goes a circle that is the search radius. My problem is that if I click inside the radio it does not call me to the event that makes the marker move to the position of the point...
asked on 21.01.2016 / 00:48
2
answers

Extract XML data using Python

I have this code and I need to extract the comment counts from the XML data, calculate ( link ) the sum of the numbers in the file and write the sum. I would like to know which part of the code I need to enter because I had already used diffe...
asked on 25.01.2016 / 22:37
1
answer

What is the best way to store data in Unity3D?

I have been working on a project where I generate a procedural terrain divided by meshes , now my idea is to save these meshes in a folder and then load only the ones I need. I've seen that I can do it with FileStream but...
asked on 17.01.2016 / 01:29
2
answers

NHibernate, Antlr and Antlr3 Exception from HRESULT: 0x80131040

I have the following situation: I have NHibernate 2.1.2.4000 that requires yes or yes Antlr 3.1.1 I did an optimization of the entire web application using minification and bundling techniques with WebGrase that uses Antlr (> = 3.4.1...
asked on 08.03.2017 / 20:51
1
answer

Drawn of polylines in Google Maps Api

I have managed to trace the routes on the map, what I want to achieve is that the union between the polylines is rounded, or that there are no sharp cuts between strokes. Stroke achieved: Stroke to which you wish to arrive: public...
asked on 05.01.2017 / 01:38
2
answers

returns null in regular expressions

I build a regular expression to locate a piece of text: var re = /Incident:(.*)\tDescriptio/gm; var m; while ((m = re.exec(resultados_texto)) !== null) { if (m.index === re.lastIndex) { re.lastIndex++; } } where result...
asked on 18.01.2016 / 14:37