MOVED to https://github.com/dotnet/aspire/blob/main/docs/specs/appmodel.md
Executive Summary Report
The purpose of this report is to align our stakeholders and executive team on the current status of the NextGen Project. This project aims to accelerate our transition into cutting-edge tech solutions, and significantly boost productivity and efficiency across departments.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Type | INET | CMS | Bloomberg | Y! Finance | Composite RIC | Notes | |
---|---|---|---|---|---|---|---|
Class Shares | BRK.B | BRK B | BRK/B | BRK-B | BRKb | ||
Preferred Shares | TY- | TY PR | n/a | TY-P | TY_p | Bloomberg: TY Pfd | |
Preferred Class Shares | BAC-L | BAC PRL | n/a | BAC-PL | BAC_pl | Bloomberg: BAC Pfd | |
Warrants | OXY+ | OXY WS | OXY/WS | OXY-WT | OXY_t | ||
Warrants Class A | TDW+A | TDW WSA | TDW/WS/A | TDW-WTA | TDW_ta | ||
Rights | CELG^ | CELG RT | CELG-R | CELG-RI | CELG_r.K | 4-letter root ⇒ .K suffix | |
Units | GRP= | GRP U | GRP/U | GRP-UN | GRP_u | ||
When Issued | POST# | POST WI | POST-W | POST-WI | POST_w.K | ||
Rights When Issued | GLO^# | GLO RTWI | GLO-R-W | GLO-RIWI | GLO_rw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using DemoGrpc.Domain.Entities; | |
using DemoGrpc.Protobufs; | |
using Grpc.Core; | |
using Microsoft.Extensions.DependencyInjection; | |
using Polly; | |
using System; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using static DemoGrpc.Protobufs.CountryService; |
Various search databases and backends as alternatives to Elasticsearch.
- Sonic - github.com/valeriansaliou/sonic - lightweight & schema-less search backend
- Tantivy - github.com/quickwit-oss/tantivy - full-text search engine library inspired by Apache Lucene
- Toshi - github.com/toshi-search/Toshi - search engine built on top of Tantivy
- Bayard - github.com/mosuka/bayard - search engine built on top of Tantivy
- Meilisearch - github.com/meilisearch/meilisearch - fast and full-featured search engine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.CodeDom.Compiler; | |
using System.Reflection; | |
using System.Threading.Tasks; | |
/* | |
To execute, run | |
string code = "your code here"; | |
if (!code.Contains("return")) code = "return " + code; | |
code = code.Trim().TrimEnd(';') + ";"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using FSharp.Data; | |
using FSharp.Data.Runtime; | |
using FSharp.Data.Runtime.StructuralTypes; | |
using Microsoft.FSharp.Collections; | |
using System; | |
using System.Globalization; | |
using System.Linq; | |
class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<Target Name="NpmInstall" Condition="Exists('package.json')"> | |
<Exec Command="npm install" /> | |
</Target> | |
<Target Name="NpmCiTest" Condition="Exists('package.json')"> | |
<Exec Command="npm run ci-test" /> | |
<ItemGroup Condition="'$(TestResultsOutputPath)' != ''"> | |
<TestResultFiles Include="obj\karma-testresults\**" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Org.BouncyCastle.Crypto; | |
using Org.BouncyCastle.Crypto.Parameters; | |
using Org.BouncyCastle.OpenSsl; | |
using Org.BouncyCastle.Security; | |
using System; | |
using System.IO; | |
using System.Security.Cryptography; | |
namespace MyProject.Data.Encryption | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-strictmode -version 'latest' | |
$erroractionpreference = 'stop' | |
function main() { | |
$a = 'foo' | |
$f = { | |
$g = {$a}.getnewclosure() | |
& $g # "variable '$a' cannot be retrieved because it has not been set." | |
}.getnewclosure() | |
& $f |
NewerOlder