New-Old | Old | New | Url |
---|---|---|---|
00:05.352 | 00:02.387 | 00:07.739 | https://api.apis.guru/v2/specs/squareup.com/2.0/swagger.json |
00:05.020 | 00:01.519 | 00:06.539 | https://api.apis.guru/v2/specs/azure.com/arm-apimanagement/2016-07-07/swagger.json |
00:04.645 | 00:05.328 | 00:09.973 | https://api.apis.guru/v2/specs/azure.com/arm-devtestlabs/2016-05-15/swagger.json |
00:03.474 | 00:03.753 | 00:07.227 | https://api.apis.guru/v2/specs/googleapis.com/sheets/v4/swagger.json |
00:02.771 | 00:02.613 | 00:05.384 | https://api.apis.guru/v2/specs/googleapis.com/slides/v1/swagger.json |
00:02.733 | 00:09.653 | 00:12.386 | https://api.apis.guru/v2/specs/apacta.com/0.0.1/swagger.json |
00:02.334 | 00:07.656 | 00:09.990 | https://api.apis.guru/v2/specs/epa.gov/dfr/0.0.0/swagger.json |
00:02.051 | 00:05.068 | 00:07.119 | https://api.apis.guru/v2/specs/googleapis.com/dataflow/v1b3/swagger.json |
View New-SPApplicationPool.ps1
asnp *SharePoint* -ErrorAction SilentlyContinue | |
// URL of the Web App to change the Application Pool of. | |
$WebAppURL = "http://WebApp" | |
// name of the name Application Pool that will be created. | |
$NewAppPoolName = "NewAppPool" | |
//the user account that the Application Pool will run under the context of. | |
$NewAppPoolUserName = "contoso\apppool" |
View data.txt
the -0.071549 0.093459 0.023738 -0.090339 0.056123 0.32547 -0.39796 -0.092139 0.061181 -0.1895 0.13061 0.14349 0.011479 0.38158 0.5403 -0.14088 0.24315 0.23036 -0.55339 0.048154 0.45662 3.2338 0.020199 0.049019 -0.014132 0.076017 -0.11527 0.2006 -0.077657 0.24328 0.16368 -0.34118 -0.06607 0.10152 0.038232 -0.17668 -0.88153 -0.33895 -0.035481 -0.55095 -0.016899 -0.43982 0.039004 0.40447 -0.2588 0.64594 0.26641 0.28009 -0.024625 0.63302 -0.317 0.10271 0.30886 0.097792 -0.38227 0.086552 0.047075 0.23511 -0.32127 -0.28538 0.1667 -0.0049707 -0.62714 -0.24904 0.29713 0.14379 -0.12325 -0.058178 -0.001029 -0.082126 0.36935 -0.00058442 0.34286 0.28426 -0.068599 0.65747 -0.029087 0.16184 0.073672 -0.30343 0.095733 -0.5286 -0.22898 0.064079 0.015218 0.34921 -0.4396 -0.43983 0.77515 -0.87767 -0.087504 0.39598 0.62362 -0.26211 -0.30539 -0.022964 0.30567 0.06766 0.15383 -0.11211 -0.09154 0.082562 0.16897 -0.032952 -0.28775 -0.2232 -0.090426 1.2407 -0.18244 -0.0075219 -0.041388 -0.011083 0.078186 0.38511 0.23334 0.14414 -0. |
View packet.lock
STORAGE: NONE | |
RESTRICTION: == netstandard2.0 | |
NUGET | |
remote: https://www.nuget.org/api/v2 | |
BlackFox.VsWhere (1.0) | |
FSharp.Core (>= 4.2.3) | |
Fake.Core.CommandLineParsing (5.16.1) | |
FParsec (>= 1.0.3) | |
FSharp.Core (>= 4.7) | |
Fake.Core.Context (5.16.1) |
View OpenNlp.NET-CustomNER-Trains.fsx
#load "common.fsx" | |
open java.nio.charset | |
open java.io | |
#I "../packages/OpenNLP.NET/lib/" | |
#r "opennlp-tools-1.8.4.dll" | |
#r "opennlp-uima-1.8.4.dll" | |
open opennlp.tools.util | |
open opennlp.tools.namefind |
View swaggerprovider-typenames-changed.csv
DefinitionName | TypeName | Schema | |
---|---|---|---|
#/definitions/ODataQueryOptions[AccountApi] | ODataQueryOptionsAccountApi | https://eaccountingapi-sandbox.test.vismaonline.com/swagger/docs/v2 | |
#/definitions/ODataQueryOptions[AccountBalanceAPI] | ODataQueryOptionsAccountBalanceApi | https://eaccountingapi-sandbox.test.vismaonline.com/swagger/docs/v2 | |
#/definitions/ODataQueryOptions[AccountTypesAPI] | ODataQueryOptionsAccountTypesApi | https://eaccountingapi-sandbox.test.vismaonline.com/swagger/docs/v2 | |
#/definitions/ODataQueryOptions[AllocationPeriodApi] | ODataQueryOptionsAllocationPeriodApi | https://eaccountingapi-sandbox.test.vismaonline.com/swagger/docs/v2 | |
#/definitions/ODataQueryOptions[ArticleAccountCodingAPI] | ODataQueryOptionsArticleAccountCodingApi | https://eaccountingapi-sandbox.test.vismaonline.com/swagger/docs/v2 | |
#/definitions/ODataQueryOptions[ArticleApi] | ODataQueryOptionsArticleApi | https://eaccountingapi-sandbox.test.vismaonline.com/swagger/docs/v2 | |
#/definitions/ODataQueryOptions[ArticleLabelApi] | ODataQueryOptionsArticleLabelApi | htt |
View perfDiff.md
View ExecuteInParallel.cs
public static class TplHelpers | |
{ | |
public static async Task<List<T2>> ExecuteInParallel<T1,T2>(this IEnumerable<T1> collection, | |
Func<T1, Task<T2>> processor, | |
int degreeOfParallelism) | |
{ | |
var queue = new ConcurrentQueue<T1>(collection); | |
var result = new ConcurrentBag<T2>(); | |
var tasks = Enumerable.Range(0, degreeOfParallelism).Select(async _ => | |
{ |
View gist:02fc4c680a545b807394d81b4bea5028
Binding session to 'D:\Projects\xxxxx\packages\DynamicsCRMProvider\../Microsoft.CrmSdk.CoreAssemblies/lib/net40\Microsoft.Xrm.Sdk.dll'... | |
CRM.fs(47,20): error FS3033: The type provider 'FSharp.Data.TypeProviders.XrmProvider.XrmTypeProvider' reported an error: Could not load file or assembly 'Microsoft.VisualStudio.Shell.15.0, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. | |
> |
View output.txt
Paket version 4.0.0-alpha045 | |
Downloading fsharp/FAKE:749fbad6f6808c569e542ee5eaf3c4cc7275c029 modules/Octokit/Octokit.fsx to d:\GitHub\Paket\paket-files\build\fsharp\FAKE\modules\Octokit\Octokit.fsx | |
Resolving packages for group Build: | |
- Octokit 0.23.0 | |
- FAKE 4.48.0 | |
- FSharp.Formatting 2.14.4 | |
- ILRepack 2.0.12 | |
- Microsoft.Net.Http 2.2.29 | |
- FSharpVSPowerTools.Core 2.3.0 | |
- FSharp.Compiler.Service 2.0.0.6 |
View gist:8d4486a8e3c0ce50d7f38dee910c039b
Microsoft (R) F# Interactive version 14.0.23413.0 | |
Copyright (c) Microsoft Corporation. All Rights Reserved. | |
For help type #help;; | |
> | |
--> Referenced 'D:\GitHub\FsProjectsAdmin\src\../.paket/paket.exe' |
NewerOlder