Packages:
FluentNHibernate
Mono.Data.Sqlite.Portable
NHibernate
Fluently.Configure()| var client = new HttpClient(); | |
| var request = new HttpRequestMessage(HttpMethod.Get, <URL>) { }; | |
| var response = await client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead); | |
| response.EnsureSuccessStatusCode(); | |
| var content = await response.Content.ReadAsStreamAsync(); |
| var response = await webDavClient.GetProcessedFile(uri, new GetFileParameters { CancellationToken = cancellationTokenSource.Token }); | |
| var size = response.ContentLength(); | |
| var destination = new MemoryStream(); | |
| byte[] buffer = new byte[bufferSize]; | |
| int read; | |
| long totalRead = 0; | |
| while ((read = await response.Stream.ReadAsync(buffer, 0, buffer.Length, cancellationTokenSource.Token)) != 0) |
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> | |
| <xsl:output method="xml" doctype-public="XSLT-compat" omit-xml-declaration="yes" encoding="UTF-8" indent="yes" /> | |
| <xsl:template match="@*|node()"> | |
| <xsl:copy> | |
| <xsl:apply-templates select="@*|node()" /> | |
| </xsl:copy> | |
| </xsl:template> | |
| #include <sys/time.h> | |
| struct timespec begin; | |
| clock_gettime(CLOCK_MONOTONIC, &begin); | |
| { | |
| //RODAR METODO AQUI | |
| } | |
| struct timespec end; | |
| clock_gettime(CLOCK_MONOTONIC, &end); |
| //include | |
| #include <bits/stdc++.h> | |
| //configure | |
| ifstream cin("input.txt"); | |
| ofstream cout("output.txt"); | |
| //Use cin and cout normally: | |
| cin >> N; |
| Download the binary from https://github.com/sass/node-sass/releases | |
| Choose your node version build! | |
| Open CMD: | |
| > export SASS_BINARY_PATH=<BINARY FILE PATH> | |
| > npm install node-sass |
Packages:
FluentNHibernate
Mono.Data.Sqlite.Portable
NHibernate
Fluently.Configure()| import pandas as pd | |
| import math | |
| df = pd.read_excel("tabela3218.xlsx") | |
| DADOS = {} | |
| COLUNA1 = [] | |
| COLUNA2 = [] |
| protected void MaskedOnKeyUp(object sender, KeyEventArgs e) | |
| { | |
| textBox.Text = Mascara(textBox.Text, "#.##0,00"); | |
| textBox.Select(textBox.Text.Length, 0); | |
| } | |
| static string Mascara(string valor, string mascara) | |
| { | |
| var translations = new Dictionary<char, Tuple<string, bool>> | |
| { |
REPO => https://github.com/twbs/bootstrap
git clone https://github.com/twbs/bootstrap.git
cd bootstrap
npm install
If you use Visual Code!