Hello, I am having doubts on how to make fun calls (about 100) simultaneous on a REST service.
The code example I have is the following:
using (var http = new HttpClient { BaseAddress = new Uri("some url") })
{
using (var httpContent =...
In C ++, what you observe in a quick internet search is the guideline that only ".h" files should be included. A sample of this can be seen here and especially here .
In Visual Studio, adding only ".h" with #include ... is not a pr...
I have some card images in size 140x190 and I'm using the pygame.trnasform.scale method to resize to 105x143 which is a proportional value. But it is losing quality, whereas the images of verses that are basically a background color and a...
public class Equacao2Grau {
int a, b, c;
public int CalculoDelta(){
return (int) (Math.pow(b, 2) - 4*a*c);
}
public int FormulaQuadratica(){
int x1 = (int) (-b + Math.sqrt(CalculoDelta(...
I'm using Syncfusion to create graphics in Xamarin Forms .
By studying the documentation , I could not find a way to format the values in my chart, example:
IwantthesevaluesformattedforBraziliancurrency:October-R$14,421.52Doesanyonek...
I'm trying to generate a wrong password alert in JavaScript.
It is for a web application that works in .NET.
This alert works in IE, but we're porting the system and wanted it to work in both IE and Firefox and Chrome.
ClientScript.RegisterSta...
I have two servers running PHP, one in the 5.4.45 version and another 7.1.10 .
When running the files below in the same url, only the older version of PHP shows the values of the "Test" session. In the 7.1.10 version the Array is empty....
I would like to know if you can bind the parameters by position instead of the name using mssql in NodeJS.
Ex:
//Por nome
return pool.request()
.input('input_parameter1', sql.Int, 10)
.input('input_parameter2', sql.Int, 20)
.query('select *...