Posts by ISFO • 185 points
11 posts
-
1
votes1
answer83
viewsQ: Application continues to be executed even after closure
I’m having a problem with my application. The same continues in the list of processes even after its completion, besides it, also appears in the list the application Clickonce. Setting My…
-
2
votes1
answer485
viewsQ: Conversion from Enum to string
Good afternoon! I have the following situation, as return of a request I receive a json with various information. In c# convert this information to objects using Jsonconvert.Deserialize().. Look at…
-
5
votes1
answer3741
viewsQ: How do I convert formdata to json?
I have the following code: var form = new FormData(); form.append('user',$("#user").val()); form.append('password',$("#password").val()); var data = JSON.stringify($(form).serialize()); but var…
-
0
votes2
answers35
viewsA: How to Catch Variable Macros in a String
You can use regex.match Follow example in jsfiddle: https://jsfiddle.net/nvrkah5e/
javascriptanswered ISFO 185 -
1
votes2
answers1508
viewsA: Can you install ssl certificate on 2 or more servers?
Answering this question, yes it is possible to install the same certificate on multiple servers, in this case I could install the certificate on the linux server where the hosted the main site and…
-
2
votes2
answers1508
viewsQ: Can you install ssl certificate on 2 or more servers?
Good morning, I have two web servers being a linux hosted on Ocaweb, which hosts the company’s main website, and the other windows hosted on Azure, the latter being specific to Asp.net applications.…
-
0
votes1
answer27
viewsA: Changing object value inserted in an array
It was enough to use JSON.parse(JSON.stringify()) to create a copy of the object. Demo of the fix: https://jsfiddle.net/b4w6jqgf/2/…
-
0
votes1
answer27
viewsQ: Changing object value inserted in an array
Take a look at this example: https://jsfiddle.net/b4w6jqgf/1/ In it I have two arrays: __options e __defaultOptions; When starting push __options by inserting the __defaultOptions object. Later I…
-
5
votes1
answer555
viewsQ: Some questions about socket
I’m taking a look at an example of microsoft itself and I’m having some doubts. Example taken from this link: https://msdn.microsoft.com/pt-br/library/bew39x2a(v=vs.110). aspx Let’s imagine a chat…
-
1
votes2
answers1310
viewsA: how to check the time of a select in mysql with php
I believe it’s more or less like this: $timeInicial = time(); $consulta = $mysqli->query(" SELECT id, nome FROM produtos "); $timeFinal = time(); $intervalo = $timeInicial->diff($timeFinal);…
-
-1
votes1
answer89
viewsQ: Protected methods of a DLL
I have a DLL that has several internal methods, I want to protect these internal methods so that they are called only by the DLL itself. Is there any way to define which methods may or may not be…