[ADCES] How to Fail Big at Being a Tech Lead & GPU programming using CUDA

Details

Prezentare 1: How to Fail Big at Being a Tech Lead
Prezentatori: Bogdan Sucaciu , https://bsucaciu.com/
Mihaela-Roxana Ghidersa, https://www.linkedin.com/in/ghidersam/
Descriere:
Although leadership skills have been analyzed for so long, there is something in the way we choose and raise our technical leads that defy all laws. We often think that the brightest and most creative person in the team will eventually become a technical lead, which actually happens in most cases. The exciting part, though, the process of becoming a technical lead starts when we actually take over the role. What seemed to be a gratification for excellent results can become a long list of failures if you don’t really, really prepare for the challenge. Luckily we can learn from each other’s mistakes, so join us to touch some hot spots in the technical leadership journey.

Prezentare 2 : GPU programming using CUDA
Prezentator: Ciprian Apetrei , Ubisoft , https://www.linkedin.com/in/ciprian-apetrei-4472324b
Descriere: In the last few years GPU programming usage has gone beyond just games but writing GPU algorithms is still regarded as a more esoteric pursuit because it requires knowledge about parallel algorithms. We will try to go through some simple code examples that illustrate the mentality difference between parallel and synchronous programming and explain some ways to optimize the code and avoid some pitfalls that affect performance.

Link: https://www.meetup.com/Bucharest-A-D-C-E-S-Meetup/events/282674084/

[NuGet]:Hellang.Middleware.ProblemDetails

This is a Nuget that I use in almost every .NET Core project to get the error details ( 500)

Link: https://www.nuget.org/packages/Hellang.Middleware.ProblemDetails/

Site: https://github.com/khellang/Middleware

What it does:  Gives detailed error when encountering a 500 HTTP Code.

Usage:

services.AddProblemDetails(c=>
             {
                 c.IncludeExceptionDetails = (context, ex) => true;               
             });

app.UseProblemDetails();

[NuGet] : MimeTypeMapOfficial

This is a Nuget that I use in NetCore2Blockly to know the type of the file embedded:

Link: https://www.nuget.org/packages/MimeTypeMapOfficial/

Site: https://github.com/samuelneff/MimeTypeMap

What it does: Provides a huge two-way mapping of file extensions to mime types and mime types to file extensions,

If no mime type is found then the generic “application/octet-stream” is returned.

Usage:

static string contentFromExtension(string file)
{
     var dot = file.IndexOf(“.”);
     if (dot < 1)
         return “text/html”;

    var ext = file.Substring(dot+1).ToLowerInvariant();
     return MimeTypeMap.GetMimeType(ext);

}

Using files in a ASP.NET Core nuget package

To use static (html) files in a NUGET ASP.NET Core package to be displayed I have used the following solution

1. Put the files in a folder ( in my case , blocklyAutomation )

2. Put in the .csproj to embed the files

<ItemGroup>
   <EmbeddedResource Include=”BlocklyAutomation\**\*”>
     <CopyToOutputDirectory>Never</CopyToOutputDirectory>
   </EmbeddedResource>
</ItemGroup>

3.  Create an extension to use it

;

public static void UseBlocklyUI(this IApplicationBuilder appBuilder)
{
    var manifestEmbeddedProvider =
            new ManifestEmbeddedFileProvider(Assembly.GetExecutingAssembly());
    var service = appBuilder.ApplicationServices;
    mapFile("blocklyAutomation", manifestEmbeddedProvider, appBuilder);


}

private static void mapFile(string dirName, IFileProvider provider, IApplicationBuilder appBuilder)
{
    var folder = provider.GetDirectoryContents(dirName);
    foreach (var item in folder)
    {
        if (item.IsDirectory)
        {
            mapFile(dirName + "/" + item.Name, provider, appBuilder);
            continue;
        }
        string map = (dirName + "/" + item.Name).Substring(dirName.Length);
        appBuilder.Map(map, app =>
        {
            var f = item;

            app.Run(async cnt =>
            {
                //TODO: find from extension
                //cnt.Response.ContentType = "text/html";
                using var stream = new MemoryStream();
                using var cs = f.CreateReadStream();
                byte[] buffer = new byte[2048]; // read in chunks of 2KB
                int bytesRead;
                while ((bytesRead = cs.Read(buffer, 0, buffer.Length)) > 0)
                {
                    stream.Write(buffer, 0, bytesRead);
                }
                byte[] result = stream.ToArray();
                var m = new Memory<byte>(result);
                await cnt.Response.BodyWriter.WriteAsync(m);
            });
        });
    }

}

4. That is all

Tools 2021

I do not have time to put in order those, so it is a simple list with all I have used in the year 2021 .

 

Chrome Extensions

  1. Slides
  2. Text Mode
  3. Google Arts & Culture
  4. Kingsquare HTML Validator
  5. Docs
  6. MeasureIt!
  7. Google Drive
  8. Image Checker
  9. RescueTime for Chrome and Chrome OS
  10. Language Immersion for Chrome
  11. Web Developer
  12. Read on reMarkable
  13. Google Optimize
  14. Gliffy Diagrams
  15. Lighthouse
  16. YouTube
  17. Minimal New Tab
  18. Send to Kindle for Google Chrome™
  19. QR Code
  20. JSONVue
  21. Export links of all extensions
  22. REST Console
  23. iMacros for Chrome
  24. Sourcegraph
  25. Just Read
  26. Trellists: Trello Lists Master
  27. Headless Recorder
  28. Trello
  29. Dark Mode
  30. Bookmarks Table
  31. Google Calendar
  32. T-boards
  33. Panic Button
  34. Sheets
  35. Postman
  36. File Icons for GitHub and GitLab
  37. Close Tabs to Left
  38. Chrome Remote Desktop
  39. TheWebMiner Sitemap Generator
  40. Google Docs Offline
  41. Microsoft Power Automate
  42. OneNote Web Clipper
  43. Open SEO Stats(Formerly: PageRank Status)
  44. Advanced REST client
  45. Web Developer Checklist
  46. Resolution Test
  47. Placeholdifier
  48. JavaScript Errors Notifier
  49. TLDR This – Free automatic text summary tool
  50. Cisco Webex Extension
  51. Gestures for Google Chrome™
  52. Request Maker
  53. Viewport Resizer – Responsive Testing Tool
  54. Tag Assistant Legacy (by Google)
  55. Exploratory Testing Chrome Extension
  56. Window Resizer
  57. TrelloExport
  58. StayFocusd
  59. mydlink services plugin
  60. IP Address and Domain Information
  61. Behind The Overlay
  62. Timer
  63. Lazarus: Form Recovery
  64. Timeline Support
  65. SelectorGadget
  66. Ghostery – Privacy Ad Blocker
  67. Project Naptha
  68. Selenium IDE
  69. Google Hangouts
  70. Office
  71. Images ON/OFF
  72. YSlow
  73. Chrome Web Store Payments
  74. Buffer
  75. Microformats
  76. FoxClocks
  77. Trello
  78. Chrome Apps & Extensions Developer Tool
  79. HTML ASCII Codes
  80. diagrams.net Desktop
  81. Gmail
  82. Google Similar Pages
  83. Quick Language Switcher
  84. Neat Bookmarks
  85. Page One – Banish Multipage Articles

VSCode Extensions

  1. Angular Language Service
  2. Debugger for Chrome
  3. Better Comments
  4. vscode-base64
  5. Bookmarks
  6. Cucumber (Gherkin) Full Support
  7. TypeScript + Webpack Problem Matchers
  8. Angular Language Service
  9. HTML End Tag Labels
  10. Turbo Console Log
  11. npm Intellisense
  12. PostgreSQL
  13. Excel to Markdown table
  14. ESLint
  15. Git History
  16. XML Tools
  17. GitLens — Git supercharged
  18. npm
  19. Prettier – Code formatter
  20. Debugger for Firefox
  21. HTTP Server / HTML Preview
  22. Auto Close Tag
  23. Auto Rename Tag
  24. Better Solarized
  25. GitHub Copilot
  26. GitHub Repositories (Insiders)
  27. CodeQL
  28. Todo Tree
  29. Test Explorer UI
  30. VSCode Dimmer
  31. REST Client
  32. Node Dependencies
  33. Path Autocomplete
  34. Document This
  35. Peacock
  36. C# XML Documentation Comments
  37. Diff Folders
  38. Inline Parameters for VSCode
  39. Git Graph
  40. DotENV
  41. MongoDB for VS Code
  42. Azure Pipelines
  43. Azure Functions
  44. Azure Resources
  45. Docker
  46. Tye
  47. C#
  48. .NET Interactive Notebooks
  49. Data Workspace
  50. SQL Server (mssql)
  51. SQL Database Projects
  52. Jupyter
  53. Jupyter Keymap
  54. Jupyter Notebook Renderers
  55. Remote – Containers
  56. Remote – SSH
  57. Remote – SSH: Editing Configuration Files
  58. Remote – WSL
  59. Remote Development
  60. Azure Account
  61. PowerShell
  62. Test Adapter Converter
  63. Visual Studio Keymap
  64. TSLint
  65. Live Share
  66. Live Share Audio
  67. Live Share Extension Pack
  68. Microsoft Office Add-in Debugger
  69. Vetur
  70. indent-rainbow
  71. Version Lens
  72. Polacode
  73. Paste JSON as Code
  74. YAML
  75. Angular Follow Selector
  76. Night Owl
  77. Settings Sync
  78. Markdown Table
  79. HTML Preview
  80. es6-string-html
  81. vscode-pdf
  82. Mermaid Editor
  83. Terminal Here
  84. Highlight Matching Tag
  85. vscode-icons
  86. CodeTour
  87. GistPad
  88. GitDoc
  89. TODO Highlight
  90. Import Cost
  91. Better Align
  92. Markdown PDF
  93. Markdown All in One
  94. IntelliSense for CSS class names in HTML

PowerShell Modules

  1. EPS
  2. FormatMarkdownTable
  3. oh-my-posh
  4. posh-git
  5. PSReadLine
  6. Terminal-Icons
  7. WinGet

Docker Images

  1. node:latest
  2. xabaril_web:latest
  3. jenkins/jenkins:lts
  4. mcr.microsoft.com/dotnet/sdk:5.0
  5. mcr.microsoft.com/mssql/server:2019-latest,mcr.microsoft.com/mssql/server:latest
  6. rnwood/smtp4dev:latest
  7. docker.elastic.co/elasticsearch/elasticsearch:7.11.2
  8. docker.elastic.co/kibana/kibana:7.11.2
  9. jaegertracing/all-in-one:1.22

 

And this is my Powershell Profile:

 

# Install-Module Terminal-Icons
Import-Module -Name Terminal-Icons
Import-Module posh-git
Import-Module oh-my-posh
#Set-PoshPrompt -Theme pararussel
#Set-PoshPrompt -Theme agnosterplus
Set-PoshPrompt -Theme powerlevel10k_lean
# https://ohmyposh.dev/docs/themes
function edit ($file) { & “${env:ProgramFiles}\Notepad++\notepad++.exe” $file }
function explore { “explorer.exe `”$(Get-Location)`”” | Invoke-Expression }
function rdp ($ip) {
Start-Process -FilePath mstsc -ArgumentList “/admin /w:1024 /h:768 /v:$ip”
}
# Install-Module -Name PowerShellGet -RequiredVersion 2.2.5 -Force -AllowClobber
# Install-Module PSReadLine -AllowPrerelease -Force
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView
Set-PSReadLineOption -EditMode Windows
#dotnet tool install –global dotnet-suggest –version 1.1.221601
# dotnet suggest shell start
if (Get-Command “dotnet-suggest” -errorAction SilentlyContinue)
{
$availableToComplete = (dotnet-suggest list) | Out-String
$availableToCompleteArray = $availableToComplete.Split([Environment]::NewLine, [System.StringSplitOptions]::RemoveEmptyEntries)
Register-ArgumentCompleter -Native -CommandName $availableToCompleteArray -ScriptBlock {
param($wordToComplete, $commandAst, $cursorPosition)
$fullpath = (Get-Command $commandAst.CommandElements[0]).Source
$arguments = $commandAst.Extent.ToString().Replace(‘”‘, ‘\”‘)
dotnet-suggest get -e $fullpath –position $cursorPosition — “$arguments” | ForEach-Object {
[System.Management.Automation.CompletionResult]::new($_, $_, ‘ParameterValue’, $_)
}
}
}
else
{
“Unable to provide System.CommandLine tab completion support unless the [dotnet-suggest] tool is first installed.”
“See the following for tool installation: https://www.nuget.org/packages/dotnet-suggest”
}
# PowerShell parameter completion shim for the dotnet CLI
Register-ArgumentCompleter -Native -CommandName dotnet -ScriptBlock {
param($commandName, $wordToComplete, $cursorPosition)
dotnet complete –position $cursorPosition “$wordToComplete” | ForEach-Object {
[System.Management.Automation.CompletionResult]::new($_, $_, ‘ParameterValue’, $_)
}
}
$env:DOTNET_SUGGEST_SCRIPT_VERSION = “1.0.2”
# dotnet suggest script end

 

 

And those are my

Apps:

 

  1. 7-Zip
  2. Anydesk
  3. Azuredatastudio
  4. Bcompare
  5. Bluejeans
  6. Calculator
  7. Camera – Samsung Android Phone
  8. Chrome
  9. Command Prompt
  10. Db Browser For Sqlite
  11. Docker Desktop
  12. Electron
  13. Facebook For Android
  14. Facebook Messenger
  15. Filezilla
  16. Freecommander
  17. Github Desktop
  18. Gmail
  19. Gmail For Android
  20. Google Calendar
  21. Google Documents
  22. Google Forms
  23. Google Maps For Android
  24. Google Presentations
  25. Google Spreadsheets
  26. Inetmgr
  27. Internet Explorer
  28. Kindle For Android
  29. Linkedin – Android
  30. Microsoft Edge
  31. Microsoft Onedrive
  32. Microsoft Teams
  33. Microsoft Word For Tablet
  34. Microsoftedge
  35. Mongodbcompass
  36. Ms Access
  37. Ms Excel
  38. Ms Mgmt Console
  39. Ms Outlook
  40. Ms Paint
  41. Ms Terminal Services Client
  42. Ms Word
  43. Netflix
  44. Newtab
  45. Notepad
  46. Notepad++
  47. Nugetpackageexplorer
  48. Onenote
  49. Oreilly
  50. Outlook For Android
  51. Paintdotnet
  52. Pbidesktop
  53. Plex For Android
  54. Postman
  55. Powerpoint
  56. Powershell
  57. Procexp64
  58. Quicklook
  59. Regedit
  60. Remarkable
  61. Rstudio
  62. S Health
  63. Scnotification
  64. Screenclippinghost
  65. Screensketch
  66. Skype
  67. Skype For Android
  68. Slack
  69. Slack For Android
  70. Snippingtool
  71. Sql Server Mgmt Studio
  72. Starcraft
  73. Teamviewer
  74. Teamviewer For Remote Control
  75. Treesizefree
  76. Trello For Android
  77. Uber
  78. Ubuntu
  79. Visual Studio
  80. Visual Studio Code
  81. Visual Studio Debugger
  82. Vlc Media Player
  83. Whatsapp Messenger Android
  84. Windows Explorer
  85. Windows Installer
  86. Windows Problem Reporting
  87. Windows Store
  88. Windows Terminal
  89. Windowslivewriter
  90. Winmergeu
  91. Yahoo Mail – Android
  92. Yourphone
  93. Youtube For Android
  94. Zoom
  95. Zoomit64

 

And

Sites

  1. alfadrink.ro
  2. andrewlock.net
  3. angular.io
  4. app.powerbi.com
  5. bilete.cfrcalatori.ro
  6. bing.com
  7. carbon.now.sh
  8. codeproject.com
  9. contulmeu.reginamaria.ro
  10. cp.livehosting.ro
  11. datatables.net
  12. dev.to
  13. devblogs.microsoft.com
  14. developer.mozilla.org
  15. developers.google.com
  16. dilemaveche.ro
  17. docs.github.com
  18. docs.microsoft.com
  19. dontpad.com
  20. drive.google.com
  21. elastic.co
  22. emag.ro
  23. en.wikipedia.org
  24. facebook.com
  25. gist.github.com
  26. google.com
  27. google.github.io
  28. hanselman.com
  29. homebank.ro
  30. lichess.org
  31. linkedin.com
  32. localhost:5001
  33. mail.yahoo.com
  34. material.angular.io
  35. medium.com
  36. meet.google.com
  37. meetup.com
  38. mermaid-js.github.io
  39. microservicesportchooser.azurewebsites.net
  40. microsoft.photos
  41. mobile – com.limebike
  42. mobile – eu.hbogo.android
  43. mobile – ro.ing.mobile.banking.android.activity
  44. mobile – ro.raiffeisen.smartmobile
  45. msprogrammer.serviciipeweb.ro
  46. mvp.microsoft.com
  47. my.enel.ro
  48. netcoreblockly.herokuapp.com
  49. npmjs.com
  50. nuget.org
  51. org.videolan.vlc
  52. outlook.office.com
  53. papercall.io
  54. plantuml.com
  55. portal.azure.com
  56. quora.com
  57. rescuetime.com
  58. sessionize.com
  59. somee.com
  60. stackoverflow.com
  61. tabulator.info
  62. takeaway.com
  63. trello.com
  64. twitter.com
  65. us10.admin.mailchimp.com
  66. w3schools.com
  67. web.whatsapp.com
  68. youtube.com

NugetPackages

  1. AdysTech.InfluxDB.Client.Net.Core
  2. Aistant.DocImport
  3. AMSWebAPI
  4. AMS_Base
  5. AndreasDorfer.BaseTypes
  6. AndreasDorfer.BaseTypes.Core
  7. AndreasDorfer.BaseTypes.Generator
  8. AOPEFCommon
  9. AOPEFGenerator
  10. AOPMethodsCommon
  11. AOPMethodsGenerator
  12. Apparatus.AOT.Reflection
  13. appSettingsEditor
  14. appSettingsEditorAPI
  15. AspNetCore.HealthChecks.Sqlite
  16. AspNetCore.HealthChecks.SqlServer
  17. AspNetCore.HealthChecks.System
  18. AspNetCore.HealthChecks.UI
  19. AspNetCore.HealthChecks.UI.Client
  20. AspNetCore.HealthChecks.UI.Core
  21. AspNetCore.HealthChecks.UI.InMemory.Storage
  22. AspNetCore.HealthChecks.Uris
  23. Autofac
  24. AutoMapper
  25. Azure.Core
  26. Azure.Identity
  27. Azure.Monitor.OpenTelemetry.Exporter
  28. Azure.Security.KeyVault.Certificates
  29. Azure.Security.KeyVault.Secrets
  30. Azure.Storage.Blobs
  31. Azure.Storage.Common
  32. BeaKona.AutoInterfaceGenerator
  33. Ben.Demystifier
  34. BenchmarkDotNet
  35. BenchmarkDotNet.Annotations
  36. BenchmarkDotNet.Diagnostics.Windows
  37. BoilerplateFree
  38. Buildalyzer
  39. Buildalyzer.Logger
  40. Buildalyzer.Workspaces
  41. BuilderGenerator
  42. Castle.Core
  43. Cloneable
  44. CommandLineParser
  45. ConfigureAwait.Fody
  46. coveralls.net
  47. coverlet.collector
  48. coverlet.console
  49. coverlet.msbuild
  50. Cronos
  51. CSharpToTypeScript.CLITool
  52. CsvHelper
  53. Dapper
  54. Dapper.AOT
  55. Dapper.Contrib
  56. DasMulli.DataBuilderGenerator
  57. DasMulli.DataBuilderGenerator.Attributes
  58. Dazinator.Extensions.FileProviders
  59. DBreeze
  60. DiamondD1_2
  61. DiffEngine
  62. DnsClient
  63. DotBook
  64. DotLiquid
  65. dotMorten.OmdGenerator
  66. dotnet-ef
  67. dotnet-outdated-tool
  68. dotnet-project-licenses
  69. dotnet-repl
  70. dotnet-reportgenerator-globaltool
  71. dotnet-sonarscanner
  72. dotnet-stryker
  73. dotnet-xunit
  74. DotNet.Glob
  75. DotNetAnalyzers.DocumentationAnalyzers
  76. DotNetAnalyzers.DocumentationAnalyzers.Unstable
  77. DotNetty.Buffers
  78. DotNetty.Codecs
  79. DotNetty.Codecs.Mqtt
  80. DotNetty.Common
  81. DotNetty.Handlers
  82. DotNetty.Transport
  83. DuckInterface
  84. Elastic.Apm
  85. Elastic.Apm.AspNetCore
  86. Elastic.Apm.Elasticsearch
  87. Elastic.Apm.EntityFrameworkCore
  88. Elastic.Apm.Extensions.Hosting
  89. Elastic.Apm.GrpcClient
  90. Elastic.Apm.NetCoreAll
  91. Elastic.Apm.SqlClient
  92. Elasticsearch.Net
  93. EmptyFiles
  94. EWSoftware.SHFB.NETCore
  95. FileExtension
  96. FileHelpers
  97. FirebaseDatabase.net
  98. Fixie
  99. Fixie.Console
  100. FluentAssertions
  101. FluentAssertions.Json
  102. FluentEmail.Core
  103. FluentEmail.Liquid
  104. FluentEmail.Smtp
  105. Fluid.Core
  106. Fody
  107. GeneratedMapper
  108. GitHubActionsTestLogger
  109. Google.Protobuf
  110. GraphQL
  111. GraphQL-Parser
  112. GraphQL.DataLoader
  113. GraphQL.Server.Core
  114. GraphQL.Server.Transports.AspNetCore
  115. GraphQL.Server.Ui.Playground
  116. Grpc.AspNetCore
  117. Grpc.AspNetCore.Server
  118. Grpc.AspNetCore.Server.ClientFactory
  119. Grpc.Core.Api
  120. Grpc.Net.Client
  121. Grpc.Net.ClientFactory
  122. Grpc.Net.Common
  123. Grpc.Tools
  124. Grynwald.ChangeLog
  125. Grynwald.MdDocs
  126. GST.Fake.Authentication.JwtBearer
  127. Hellang.Middleware.ProblemDetails
  128. HostedPowershell
  129. HtmlAgilityPack
  130. HttpClientGenerator
  131. Iced
  132. IdentityModel
  133. IdentityModel.OidcClient
  134. IdentityServer4
  135. IdentityServer4.EntityFramework
  136. IdentityServer4.EntityFramework.Storage
  137. IdentityServer4.Storage
  138. igloo15.MarkdownApi.Tool
  139. Irony.Core
  140. Jaeger
  141. Jaeger.Thrift
  142. Jaeger.Thrift.VendoredThrift
  143. JsonByExampleGenerator
  144. KubernetesClient
  145. Libuv
  146. LightBDD
  147. LightBDD.Core
  148. LightBDD.Framework
  149. LightBDD.XUnit2
  150. LiteDB
  151. LoxSmoke.mddox
  152. MailKit
  153. MapTo
  154. Markdig.Signed
  155. MarkdownCodeEmbed
  156. MarkdownSnippets.Tool
  157. McMaster.NETCore.Plugins
  158. Microsoft.ApplicationInsights
  159. Microsoft.ApplicationInsights.AspNetCore
  160. Microsoft.ApplicationInsights.DependencyCollector
  161. Microsoft.ApplicationInsights.EventCounterCollector
  162. Microsoft.ApplicationInsights.PerfCounterCollector
  163. Microsoft.ApplicationInsights.WindowsServer
  164. Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel
  165. Microsoft.ApplicationInsights.WorkerService
  166. Microsoft.AspNetCore
  167. Microsoft.AspNetCore.All
  168. Microsoft.AspNetCore.Antiforgery
  169. Microsoft.AspNetCore.App.Ref
  170. Microsoft.AspNetCore.App.Runtime.linux-x64
  171. Microsoft.AspNetCore.App.Runtime.win-x64
  172. Microsoft.AspNetCore.App.Runtime.win-x86
  173. Microsoft.AspNetCore.ApplicationInsights.HostingStartup
  174. Microsoft.AspNetCore.Authentication
  175. Microsoft.AspNetCore.Authentication.Abstractions
  176. Microsoft.AspNetCore.Authentication.Cookies
  177. Microsoft.AspNetCore.Authentication.Core
  178. Microsoft.AspNetCore.Authentication.Facebook
  179. Microsoft.AspNetCore.Authentication.Google
  180. Microsoft.AspNetCore.Authentication.JwtBearer
  181. Microsoft.AspNetCore.Authentication.MicrosoftAccount
  182. Microsoft.AspNetCore.Authentication.Negotiate
  183. Microsoft.AspNetCore.Authentication.OAuth
  184. Microsoft.AspNetCore.Authentication.OpenIdConnect
  185. Microsoft.AspNetCore.Authentication.Twitter
  186. Microsoft.AspNetCore.Authorization
  187. Microsoft.AspNetCore.Authorization.Policy
  188. Microsoft.AspNetCore.AzureAppServices.HostingStartup
  189. Microsoft.AspNetCore.AzureAppServicesIntegration
  190. Microsoft.AspNetCore.Components
  191. Microsoft.AspNetCore.Components.Analyzers
  192. Microsoft.AspNetCore.Components.Authorization
  193. Microsoft.AspNetCore.Components.Forms
  194. Microsoft.AspNetCore.Components.Web
  195. Microsoft.AspNetCore.Components.WebAssembly
  196. Microsoft.AspNetCore.Components.WebAssembly.DevServer
  197. Microsoft.AspNetCore.Components.WebAssembly.Server
  198. Microsoft.AspNetCore.Connections.Abstractions
  199. Microsoft.AspNetCore.CookiePolicy
  200. Microsoft.AspNetCore.Cors
  201. Microsoft.AspNetCore.Cryptography.Internal
  202. Microsoft.AspNetCore.Cryptography.KeyDerivation
  203. Microsoft.AspNetCore.DataProtection
  204. Microsoft.AspNetCore.DataProtection.Abstractions
  205. Microsoft.AspNetCore.DataProtection.AzureStorage
  206. Microsoft.AspNetCore.DataProtection.Extensions
  207. Microsoft.AspNetCore.Diagnostics
  208. Microsoft.AspNetCore.Diagnostics.Abstractions
  209. Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
  210. Microsoft.AspNetCore.Hosting
  211. Microsoft.AspNetCore.Hosting.Abstractions
  212. Microsoft.AspNetCore.Hosting.Server.Abstractions
  213. Microsoft.AspNetCore.Html.Abstractions
  214. Microsoft.AspNetCore.Http
  215. Microsoft.AspNetCore.Http.Abstractions
  216. Microsoft.AspNetCore.Http.Extensions
  217. Microsoft.AspNetCore.Http.Features
  218. Microsoft.AspNetCore.HttpOverrides
  219. Microsoft.AspNetCore.Identity
  220. Microsoft.AspNetCore.Identity.EntityFrameworkCore
  221. Microsoft.AspNetCore.JsonPatch
  222. Microsoft.AspNetCore.Localization
  223. Microsoft.AspNetCore.Localization.Routing
  224. Microsoft.AspNetCore.Metadata
  225. Microsoft.AspNetCore.MiddlewareAnalysis
  226. Microsoft.AspNetCore.Mvc
  227. Microsoft.AspNetCore.Mvc.Abstractions
  228. Microsoft.AspNetCore.Mvc.ApiExplorer
  229. Microsoft.AspNetCore.Mvc.Core
  230. Microsoft.AspNetCore.Mvc.Cors
  231. Microsoft.AspNetCore.Mvc.DataAnnotations
  232. Microsoft.AspNetCore.Mvc.Formatters.Json
  233. Microsoft.AspNetCore.Mvc.Formatters.Xml
  234. Microsoft.AspNetCore.Mvc.Localization
  235. Microsoft.AspNetCore.Mvc.NewtonsoftJson
  236. Microsoft.AspNetCore.Mvc.Razor
  237. Microsoft.AspNetCore.Mvc.Razor.Extensions
  238. Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation
  239. Microsoft.AspNetCore.Mvc.Razor.ViewCompilation
  240. Microsoft.AspNetCore.Mvc.RazorPages
  241. Microsoft.AspNetCore.Mvc.TagHelpers
  242. Microsoft.AspNetCore.Mvc.Testing
  243. Microsoft.AspNetCore.Mvc.Versioning
  244. Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer
  245. Microsoft.AspNetCore.Mvc.ViewFeatures
  246. Microsoft.AspNetCore.NodeServices
  247. Microsoft.AspNetCore.OData
  248. Microsoft.AspNetCore.Owin
  249. Microsoft.AspNetCore.Razor
  250. Microsoft.AspNetCore.Razor.Language
  251. Microsoft.AspNetCore.Razor.Runtime
  252. Microsoft.AspNetCore.ResponseCaching
  253. Microsoft.AspNetCore.ResponseCaching.Abstractions
  254. Microsoft.AspNetCore.ResponseCompression
  255. Microsoft.AspNetCore.Rewrite
  256. Microsoft.AspNetCore.Routing
  257. Microsoft.AspNetCore.Routing.Abstractions
  258. Microsoft.AspNetCore.Server.HttpSys
  259. Microsoft.AspNetCore.Server.IISIntegration
  260. Microsoft.AspNetCore.Server.Kestrel
  261. Microsoft.AspNetCore.Server.Kestrel.Core
  262. Microsoft.AspNetCore.Server.Kestrel.Https
  263. Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions
  264. Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv
  265. Microsoft.AspNetCore.Session
  266. Microsoft.AspNetCore.SignalR
  267. Microsoft.AspNetCore.SignalR.Common
  268. Microsoft.AspNetCore.SignalR.Core
  269. Microsoft.AspNetCore.Sockets
  270. Microsoft.AspNetCore.Sockets.Abstractions
  271. Microsoft.AspNetCore.Sockets.Common.Http
  272. Microsoft.AspNetCore.Sockets.Http
  273. Microsoft.AspNetCore.SpaServices
  274. Microsoft.AspNetCore.StaticFiles
  275. Microsoft.AspNetCore.TestHost
  276. Microsoft.AspNetCore.WebSockets
  277. Microsoft.AspNetCore.WebUtilities
  278. Microsoft.Azure.Amqp
  279. Microsoft.Azure.Cosmos
  280. Microsoft.Azure.Devices.Client
  281. Microsoft.Azure.Devices.Shared
  282. Microsoft.Azure.EventHubs
  283. Microsoft.Azure.EventHubs.Processor
  284. Microsoft.Bcl.AsyncInterfaces
  285. Microsoft.Bcl.HashCode
  286. Microsoft.Build
  287. Microsoft.Build.Framework
  288. Microsoft.Build.Tasks.Core
  289. Microsoft.Build.Tasks.Git
  290. Microsoft.Build.Utilities.Core
  291. Microsoft.CodeAnalysis
  292. Microsoft.CodeAnalysis.Analyzers
  293. Microsoft.CodeAnalysis.Common
  294. Microsoft.CodeAnalysis.CSharp
  295. Microsoft.CodeAnalysis.CSharp.Scripting
  296. Microsoft.CodeAnalysis.CSharp.Workspaces
  297. Microsoft.CodeAnalysis.FxCopAnalyzers
  298. Microsoft.CodeAnalysis.PublicApiAnalyzers
  299. Microsoft.CodeAnalysis.Razor
  300. Microsoft.CodeAnalysis.Scripting.Common
  301. Microsoft.CodeAnalysis.VersionCheckAnalyzer
  302. Microsoft.CodeAnalysis.VisualBasic
  303. Microsoft.CodeAnalysis.VisualBasic.Workspaces
  304. Microsoft.CodeAnalysis.Workspaces.Common
  305. Microsoft.CodeCoverage
  306. Microsoft.CodeQuality.Analyzers
  307. Microsoft.CSharp
  308. Microsoft.Data.SqlClient
  309. Microsoft.Data.SqlClient.SNI
  310. Microsoft.Data.SqlClient.SNI.runtime
  311. Microsoft.Data.Sqlite
  312. Microsoft.Data.Sqlite.Core
  313. Microsoft.Diagnostics.NETCore.Client
  314. Microsoft.Diagnostics.Runtime
  315. Microsoft.Diagnostics.Tracing.TraceEvent
  316. Microsoft.dotnet-interactive
  317. Microsoft.dotnet-msidentity
  318. Microsoft.DotNet.Arcade.Sdk
  319. Microsoft.DotNet.PlatformAbstractions
  320. Microsoft.EntityFrameworkCore
  321. Microsoft.EntityFrameworkCore.Abstractions
  322. Microsoft.EntityFrameworkCore.Analyzers
  323. Microsoft.EntityFrameworkCore.Design
  324. Microsoft.EntityFrameworkCore.InMemory
  325. Microsoft.EntityFrameworkCore.Relational
  326. Microsoft.EntityFrameworkCore.Relational.Design
  327. Microsoft.EntityFrameworkCore.Sqlite
  328. Microsoft.EntityFrameworkCore.Sqlite.Core
  329. Microsoft.EntityFrameworkCore.Sqlite.Design
  330. Microsoft.EntityFrameworkCore.SqlServer
  331. Microsoft.EntityFrameworkCore.Tools
  332. Microsoft.Extensions.ApiDescription.Server
  333. Microsoft.Extensions.Caching.Abstractions
  334. Microsoft.Extensions.Caching.Memory
  335. Microsoft.Extensions.Caching.Redis
  336. Microsoft.Extensions.Caching.SqlServer
  337. Microsoft.Extensions.Configuration
  338. Microsoft.Extensions.Configuration.Abstractions
  339. Microsoft.Extensions.Configuration.AzureKeyVault
  340. Microsoft.Extensions.Configuration.Binder
  341. Microsoft.Extensions.Configuration.CommandLine
  342. Microsoft.Extensions.Configuration.EnvironmentVariables
  343. Microsoft.Extensions.Configuration.FileExtensions
  344. Microsoft.Extensions.Configuration.Ini
  345. Microsoft.Extensions.Configuration.Json
  346. Microsoft.Extensions.Configuration.UserSecrets
  347. Microsoft.Extensions.Configuration.Xml
  348. Microsoft.Extensions.DependencyInjection
  349. Microsoft.Extensions.DependencyInjection.Abstractions
  350. Microsoft.Extensions.DependencyModel
  351. Microsoft.Extensions.DiagnosticAdapter
  352. Microsoft.Extensions.Diagnostics.HealthChecks
  353. Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions
  354. Microsoft.Extensions.Features
  355. Microsoft.Extensions.FileProviders.Abstractions
  356. Microsoft.Extensions.FileProviders.Composite
  357. Microsoft.Extensions.FileProviders.Embedded
  358. Microsoft.Extensions.FileProviders.Physical
  359. Microsoft.Extensions.FileSystemGlobbing
  360. Microsoft.Extensions.HostFactoryResolver.Sources
  361. Microsoft.Extensions.Hosting
  362. Microsoft.Extensions.Hosting.Abstractions
  363. Microsoft.Extensions.Http
  364. Microsoft.Extensions.Identity.Core
  365. Microsoft.Extensions.Identity.Stores
  366. Microsoft.Extensions.Localization
  367. Microsoft.Extensions.Localization.Abstractions
  368. Microsoft.Extensions.Logging
  369. Microsoft.Extensions.Logging.Abstractions
  370. Microsoft.Extensions.Logging.ApplicationInsights
  371. Microsoft.Extensions.Logging.AzureAppServices
  372. Microsoft.Extensions.Logging.Configuration
  373. Microsoft.Extensions.Logging.Console
  374. Microsoft.Extensions.Logging.Debug
  375. Microsoft.Extensions.Logging.EventLog
  376. Microsoft.Extensions.Logging.EventSource
  377. Microsoft.Extensions.Logging.TraceSource
  378. Microsoft.Extensions.Options
  379. Microsoft.Extensions.Options.ConfigurationExtensions
  380. Microsoft.Extensions.Primitives
  381. Microsoft.Extensions.WebEncoders
  382. Microsoft.Identity.Client
  383. Microsoft.Identity.Client.Extensions.Msal
  384. Microsoft.Identity.Web
  385. Microsoft.IdentityModel.Clients.ActiveDirectory
  386. Microsoft.IdentityModel.JsonWebTokens
  387. Microsoft.IdentityModel.Logging
  388. Microsoft.IdentityModel.Protocols
  389. Microsoft.IdentityModel.Protocols.OpenIdConnect
  390. Microsoft.IdentityModel.Tokens
  391. Microsoft.JSInterop
  392. Microsoft.JSInterop.WebAssembly
  393. Microsoft.Management.Infrastructure
  394. Microsoft.Management.Infrastructure.CimCmdlets
  395. Microsoft.Management.Infrastructure.Runtime.Unix
  396. Microsoft.Management.Infrastructure.Runtime.Win
  397. Microsoft.Net.Compilers.Toolset
  398. Microsoft.Net.Http.Headers
  399. Microsoft.NET.StringTools
  400. Microsoft.NET.Test.Sdk
  401. Microsoft.NetCore.Analyzers
  402. Microsoft.NETCore.App
  403. Microsoft.NETCore.App.Crossgen2.win-x64
  404. Microsoft.NETCore.App.Host.linux-x64
  405. Microsoft.NETCore.App.Host.win-x64
  406. Microsoft.NETCore.App.Ref
  407. Microsoft.NETCore.App.Runtime.linux-x64
  408. Microsoft.NETCore.App.Runtime.Mono.browser-wasm
  409. Microsoft.NETCore.App.Runtime.win-x64
  410. Microsoft.NETCore.App.Runtime.win-x86
  411. Microsoft.NETCore.DotNetAppHost
  412. Microsoft.NETCore.DotNetHost
  413. Microsoft.NETCore.DotNetHostPolicy
  414. Microsoft.NETCore.DotNetHostResolver
  415. Microsoft.NETCore.Jit
  416. Microsoft.NETCore.Platforms
  417. Microsoft.NETCore.Runtime.CoreCLR
  418. Microsoft.NETCore.Targets
  419. Microsoft.NETCore.Windows.ApiSets
  420. Microsoft.NetFramework.Analyzers
  421. Microsoft.NETFramework.ReferenceAssemblies
  422. Microsoft.NETFramework.ReferenceAssemblies.net452
  423. Microsoft.NETFramework.ReferenceAssemblies.net46
  424. Microsoft.NETFramework.ReferenceAssemblies.net461
  425. Microsoft.OData.Core
  426. Microsoft.OData.Edm
  427. Microsoft.OData.ModelBuilder
  428. Microsoft.OpenApi
  429. Microsoft.OpenApi.Readers
  430. Microsoft.Packaging.Tools
  431. Microsoft.PowerShell.Commands.Diagnostics
  432. Microsoft.PowerShell.Commands.Management
  433. Microsoft.PowerShell.Commands.Utility
  434. Microsoft.PowerShell.ConsoleHost
  435. Microsoft.PowerShell.CoreCLR.Eventing
  436. Microsoft.PowerShell.MarkdownRender
  437. Microsoft.PowerShell.Native
  438. Microsoft.PowerShell.SDK
  439. Microsoft.PowerShell.Security
  440. Microsoft.SourceLink.AzureRepos.Git
  441. Microsoft.SourceLink.Common
  442. Microsoft.SourceLink.GitHub
  443. Microsoft.Spatial
  444. Microsoft.TestPlatform.ObjectModel
  445. Microsoft.TestPlatform.TestHost
  446. Microsoft.UI.Xaml
  447. Microsoft.VisualBasic
  448. Microsoft.VisualStudio.Azure.Containers.Tools.Targets
  449. Microsoft.VisualStudio.Web.BrowserLink
  450. Microsoft.VisualStudio.Web.CodeGeneration
  451. Microsoft.VisualStudio.Web.CodeGeneration.Contracts
  452. Microsoft.VisualStudio.Web.CodeGeneration.Core
  453. Microsoft.VisualStudio.Web.CodeGeneration.Design
  454. Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
  455. Microsoft.VisualStudio.Web.CodeGeneration.Templating
  456. Microsoft.VisualStudio.Web.CodeGeneration.Tools
  457. Microsoft.VisualStudio.Web.CodeGeneration.Utils
  458. Microsoft.VisualStudio.Web.CodeGenerators.Mvc
  459. Microsoft.VisualStudioEng.MicroBuild.Core
  460. Microsoft.Web.WebView2
  461. Microsoft.Web.WebView2.DevToolsProtocolExtension
  462. Microsoft.Win32.Registry
  463. Microsoft.Win32.Registry.AccessControl
  464. Microsoft.Win32.SystemEvents
  465. Microsoft.Windows.Compatibility
  466. Microsoft.Windows.ImplementationLibrary
  467. Microsoft.WindowsDesktop.App.Ref
  468. Microsoft.WindowsDesktop.App.Runtime.win-x64
  469. Microsoft.WindowsDesktop.App.Runtime.win-x86
  470. Microsoft.WSMan.Management
  471. Microsoft.WSMan.Runtime
  472. Microsoft.XmlSerializer.Generator
  473. MimeKit
  474. MiniRazor
  475. MinVer
  476. minver-cli
  477. Mocklis.MockGenerator
  478. MockSourceGenerator
  479. mod_spatialite
  480. Mongo2Go
  481. MongoDB.Bson
  482. MongoDB.Driver
  483. MongoDB.Driver.Core
  484. MongoDB.Driver.Core.Extensions.DiagnosticSources
  485. MongoDB.Driver.Core.Extensions.OpenTelemetry
  486. MongoDB.Libmongocrypt
  487. Mono.Cecil
  488. Moq
  489. MSBuild.Sdk.Extras
  490. MSBuild.StructuredLogger
  491. MsBuildPipeLogger.Server
  492. MsgPack.Cli
  493. MSTest.TestAdapter
  494. MSTest.TestFramework
  495. MySql.Data
  496. MySql.Data.EntityFrameworkCore
  497. MySqlConnector
  498. MysticMind.PostgresEmbed
  499. Namotion.Reflection
  500. nbgv
  501. Nerdbank.GitVersioning
  502. NEST
  503. NETCore.MailKit
  504. NetCore2Blockly
  505. NetCore2BlocklyStorage.Sqlite
  506. NETStandard.Library
  507. NetTopologySuite
  508. NetTopologySuite.IO.SpatiaLite
  509. NetTopologySuite.IO.SqlServerBytes
  510. Newtonsoft.Json
  511. Newtonsoft.Json.Bson
  512. NJsonSchema
  513. NJsonSchema.CodeGeneration
  514. NJsonSchema.CodeGeneration.CSharp
  515. NJsonSchema.Yaml
  516. NLog
  517. Npgsql
  518. Npgsql.EntityFrameworkCore.PostgreSQL
  519. NPOI
  520. NServiceBus
  521. NServiceBus.Extensions.Diagnostics
  522. NServiceBus.Extensions.Diagnostics.OpenTelemetry
  523. NServiceBus.Extensions.Hosting
  524. NServiceBus.Extensions.IntegrationTesting
  525. NServiceBus.Json
  526. NServiceBus.MicrosoftLogging
  527. NServiceBus.MicrosoftLogging.Hosting
  528. NServiceBus.RabbitMQ
  529. NServiceBus.SagaAudit
  530. NSwag.Annotations
  531. NSwag.AspNetCore
  532. NSwag.Core
  533. NSwag.Core.Yaml
  534. NSwag.Generation
  535. NSwag.Generation.AspNetCore
  536. NuGet.Frameworks
  537. NuGetizer
  538. Nullable
  539. NUnit
  540. NUnit3TestAdapter
  541. OdataToEntity
  542. OdataToEntity.AspNetCore
  543. OdataToEntity.EfCore
  544. OdataToEntity.EfCore.DynamicDataContext
  545. OpenTelemetry
  546. OpenTelemetry.Adapter.AspNetCore
  547. OpenTelemetry.Api
  548. OpenTelemetry.Contrib.Instrumentation.EntityFrameworkCore
  549. OpenTelemetry.Exporter.Console
  550. OpenTelemetry.Exporter.Jaeger
  551. OpenTelemetry.Exporter.Zipkin
  552. OpenTelemetry.Extensions.Hosting
  553. OpenTelemetry.Hosting
  554. OpenTelemetry.Instrumentation.AspNetCore
  555. OpenTelemetry.Instrumentation.Http
  556. OpenTelemetry.Instrumentation.SqlClient
  557. OpenTK
  558. OpenTK.GLControl
  559. OpenTracing
  560. PartiallyApplied
  561. Perfolizer
  562. Polly
  563. Portable.BouncyCastle
  564. PostgreSql.Binaries.Lite
  565. PowerShell
  566. QueryGenerator
  567. RabbitMQ.Client
  568. RavenDB.Client
  569. RavenDB.Database
  570. release-notes
  571. Remotion.Linq
  572. repo-version
  573. RestSharp
  574. Rnwood.Smtp4dev
  575. RSCG_AMS
  576. RSCG_Static
  577. RSCG_TimeBombComment
  578. runtime.any.System.Collections
  579. runtime.any.System.Diagnostics.Tools
  580. runtime.any.System.Diagnostics.Tracing
  581. runtime.any.System.Globalization
  582. runtime.any.System.Globalization.Calendars
  583. runtime.any.System.IO
  584. runtime.any.System.Reflection
  585. runtime.any.System.Reflection.Extensions
  586. runtime.any.System.Reflection.Primitives
  587. runtime.any.System.Resources.ResourceManager
  588. runtime.any.System.Runtime
  589. runtime.any.System.Runtime.Handles
  590. runtime.any.System.Runtime.InteropServices
  591. runtime.any.System.Text.Encoding
  592. runtime.any.System.Text.Encoding.Extensions
  593. runtime.any.System.Threading.Tasks
  594. runtime.any.System.Threading.Timer
  595. runtime.aot.System.Globalization
  596. runtime.aot.System.IO
  597. runtime.aot.System.Reflection
  598. runtime.aot.System.Reflection.Primitives
  599. runtime.aot.System.Resources.ResourceManager
  600. runtime.aot.System.Runtime
  601. runtime.aot.System.Text.Encoding
  602. runtime.aot.System.Text.Encoding.Extensions
  603. runtime.aot.System.Threading.Tasks
  604. runtime.linux-arm.runtime.native.System.IO.Ports
  605. runtime.linux-arm64.runtime.native.System.IO.Ports
  606. runtime.linux-x64.runtime.native.System.IO.Ports
  607. runtime.native.System.Data.SqlClient.sni
  608. runtime.native.System.IO.Ports
  609. runtime.native.System.Net.Security
  610. runtime.osx-x64.Microsoft.NETCore.App
  611. runtime.osx-x64.Microsoft.NETCore.DotNetAppHost
  612. runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy
  613. runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver
  614. runtime.osx-x64.runtime.native.System.IO.Ports
  615. runtime.ubuntu.14.04-x64.runtime.native.System
  616. runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression
  617. runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http
  618. runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security
  619. runtime.win-x64.Microsoft.NETCore.App
  620. runtime.win-x64.Microsoft.NETCore.DotNetAppHost
  621. runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy
  622. runtime.win-x64.Microsoft.NETCore.DotNetHostResolver
  623. runtime.win-x86.Microsoft.NETCore.App
  624. runtime.win-x86.Microsoft.NETCore.DotNetAppHost
  625. runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy
  626. runtime.win-x86.Microsoft.NETCore.DotNetHostResolver
  627. runtime.win.Microsoft.Win32.Primitives
  628. runtime.win.System.Console
  629. runtime.win.System.Diagnostics.Debug
  630. runtime.win.System.IO.FileSystem
  631. runtime.win.System.Net.Primitives
  632. runtime.win.System.Net.Sockets
  633. runtime.win.System.Runtime.Extensions
  634. runtime.win7-x64.runtime.native.System.Data.SqlClient.sni
  635. runtime.win7-x86.runtime.native.System.Data.SqlClient.sni
  636. Scriban
  637. Serilog
  638. Serilog.Enrichers.Thread
  639. Serilog.Extensions.Logging
  640. Serilog.Sinks.Async
  641. Serilog.Sinks.Console
  642. Serilog.Sinks.File
  643. Serilog.Sinks.Literate
  644. Serilog.Sinks.RollingFile
  645. SharpCompress
  646. SharpYaml
  647. SharpZipLib
  648. Shouldly
  649. SixLabors.Core
  650. SixLabors.Fonts
  651. SixLabors.ImageSharp
  652. SixLabors.ImageSharp.Drawing
  653. SixLabors.Shapes
  654. SkiaSharp
  655. SkiaSharp.Views
  656. SkiaSharp.Views.Forms
  657. SkinnyControllersCommon
  658. SkinnyControllersGenerator
  659. SmallSharp
  660. SourceInject
  661. SpeedyGenerators
  662. sqlite-net-pcl
  663. SQLitePCLRaw.bundle_e_sqlcipher
  664. SQLitePCLRaw.bundle_e_sqlite3
  665. SQLitePCLRaw.bundle_green
  666. SQLitePCLRaw.bundle_sqlite3
  667. SQLitePCLRaw.bundle_winsqlite3
  668. SQLitePCLRaw.core
  669. SQLitePCLRaw.lib.e_sqlcipher
  670. SQLitePCLRaw.lib.e_sqlite3
  671. SQLitePCLRaw.lib.e_sqlite3.linux
  672. SQLitePCLRaw.lib.e_sqlite3.osx
  673. SQLitePCLRaw.lib.e_sqlite3.v110_xp
  674. SQLitePCLRaw.provider.dynamic_cdecl
  675. SQLitePCLRaw.provider.e_sqlcipher
  676. SQLitePCLRaw.provider.e_sqlite3
  677. SQLitePCLRaw.provider.e_sqlite3.netstandard11
  678. SQLitePCLRaw.provider.sqlite3
  679. SQLitePCLRaw.provider.winsqlite3
  680. StructRecordGenerator
  681. StyleCop.Analyzers
  682. Swashbuckle.AspNetCore
  683. Swashbuckle.AspNetCore.Swagger
  684. Swashbuckle.AspNetCore.SwaggerGen
  685. Swashbuckle.AspNetCore.SwaggerUI
  686. System.Binary
  687. System.Buffers.Primitives
  688. System.CodeDom
  689. System.Collections.Immutable
  690. System.CommandLine
  691. System.ComponentModel.Annotations
  692. System.ComponentModel.Composition
  693. System.ComponentModel.Composition.Registration
  694. System.ComponentModel.EventBasedAsync
  695. System.Configuration.ConfigurationManager
  696. System.Console
  697. System.Data.Common
  698. System.Data.DataSetExtensions
  699. System.Data.Odbc
  700. System.Data.OleDb
  701. System.Data.SqlClient
  702. System.Data.SQLite.Core
  703. System.Diagnostics.DiagnosticSource
  704. System.Diagnostics.EventLog
  705. System.Diagnostics.PerformanceCounter
  706. System.Diagnostics.StackTrace
  707. System.DirectoryServices
  708. System.DirectoryServices.AccountManagement
  709. System.DirectoryServices.Protocols
  710. System.Drawing.Common
  711. System.Formats.Asn1
  712. System.Globalization
  713. System.IdentityModel.Tokens.Jwt
  714. System.Interactive.Async
  715. System.IO
  716. System.IO.Abstractions
  717. System.IO.Abstractions.TestingHelpers
  718. System.IO.FileSystem.AccessControl
  719. System.IO.FileSystem.Primitives
  720. System.IO.FileSystem.Watcher
  721. System.IO.MemoryMappedFiles
  722. System.IO.Packaging
  723. System.IO.Pipelines
  724. System.IO.Pipes
  725. System.IO.Pipes.AccessControl
  726. System.IO.Ports
  727. System.IO.UnmanagedMemoryStream
  728. System.Linq.Async
  729. System.Linq.Queryable
  730. System.Management
  731. System.Management.Automation
  732. System.Memory
  733. System.Memory.Data
  734. System.Net.Http
  735. System.Net.Http.Json
  736. System.Net.Http.WinHttpHandler
  737. System.Net.NetworkInformation
  738. System.Net.Requests
  739. System.Net.Security
  740. System.Net.WebHeaderCollection
  741. System.Net.WebSockets
  742. System.Net.WebSockets.Client
  743. System.Numerics.Vectors
  744. System.Private.ServiceModel
  745. System.Private.Uri
  746. System.Reactive
  747. System.Reactive.Core
  748. System.Reactive.PlatformServices
  749. System.Reflection
  750. System.Reflection.Context
  751. System.Reflection.DispatchProxy
  752. System.Reflection.Emit
  753. System.Reflection.Emit.ILGeneration
  754. System.Reflection.Emit.Lightweight
  755. System.Reflection.Metadata
  756. System.Reflection.Primitives
  757. System.Resources.Extensions
  758. System.Resources.ResourceManager
  759. System.Runtime
  760. System.Runtime.Caching
  761. System.Runtime.CompilerServices.Unsafe
  762. System.Runtime.InteropServices.RuntimeInformation
  763. System.Runtime.Loader
  764. System.Security.AccessControl
  765. System.Security.Cryptography.Cng
  766. System.Security.Cryptography.Pkcs
  767. System.Security.Cryptography.ProtectedData
  768. System.Security.Cryptography.Xml
  769. System.Security.Permissions
  770. System.Security.Principal.Windows
  771. System.Security.SecureString
  772. System.ServiceModel.Duplex
  773. System.ServiceModel.Http
  774. System.ServiceModel.NetTcp
  775. System.ServiceModel.Primitives
  776. System.ServiceModel.Security
  777. System.ServiceModel.Syndication
  778. System.ServiceProcess.ServiceController
  779. System.Text.Encoding
  780. System.Text.Encoding.CodePages
  781. System.Text.Encoding.Extensions
  782. System.Text.Encodings.Web
  783. System.Text.Json
  784. System.Threading
  785. System.Threading.AccessControl
  786. System.Threading.Channels
  787. System.Threading.Overlapped
  788. System.Threading.Tasks
  789. System.Threading.Tasks.Channels
  790. System.Threading.Tasks.Dataflow
  791. System.Threading.Tasks.Extensions
  792. System.Threading.Tasks.Parallel
  793. System.ValueTuple
  794. System.Windows.Extensions
  795. Teronis.MSBuild.Packaging.ProjectBuildInPackage
  796. Thanks.NET
  797. ThisAssembly
  798. ThisAssembly.AssemblyInfo
  799. ThisAssembly.Constants
  800. ThisAssembly.Metadata
  801. ThisAssembly.Prerequisites
  802. ThisAssembly.Project
  803. ThisAssembly.Strings
  804. TimeZoneConverter
  805. Tizen.NET
  806. Tizen.NET.API4
  807. Tizen.NET.API6
  808. Tizen.NET.Sdk
  809. Transplator
  810. Ubiety.VersionIt
  811. Vaeyori.ConventionalCommitChangelogGenerator
  812. Validation
  813. WindowsAzure.Storage
  814. Xamarin.AndroidX.Activity
  815. Xamarin.AndroidX.Annotation
  816. Xamarin.AndroidX.Annotation.Experimental
  817. Xamarin.AndroidX.AppCompat
  818. Xamarin.AndroidX.AppCompat.AppCompatResources
  819. Xamarin.AndroidX.Arch.Core.Common
  820. Xamarin.AndroidX.Arch.Core.Runtime
  821. Xamarin.AndroidX.AsyncLayoutInflater
  822. Xamarin.AndroidX.Browser
  823. Xamarin.AndroidX.CardView
  824. Xamarin.AndroidX.Collection
  825. Xamarin.AndroidX.Concurrent.Futures
  826. Xamarin.AndroidX.ConstraintLayout
  827. Xamarin.AndroidX.ConstraintLayout.Core
  828. Xamarin.AndroidX.CoordinatorLayout
  829. Xamarin.AndroidX.Core
  830. Xamarin.AndroidX.CursorAdapter
  831. Xamarin.AndroidX.CustomView
  832. Xamarin.AndroidX.DocumentFile
  833. Xamarin.AndroidX.DrawerLayout
  834. Xamarin.AndroidX.DynamicAnimation
  835. Xamarin.AndroidX.Fragment
  836. Xamarin.AndroidX.Interpolator
  837. Xamarin.AndroidX.Legacy.Support.Core.UI
  838. Xamarin.AndroidX.Legacy.Support.Core.Utils
  839. Xamarin.AndroidX.Legacy.Support.V4
  840. Xamarin.AndroidX.Lifecycle.Common
  841. Xamarin.AndroidX.Lifecycle.LiveData
  842. Xamarin.AndroidX.Lifecycle.LiveData.Core
  843. Xamarin.AndroidX.Lifecycle.Runtime
  844. Xamarin.AndroidX.Lifecycle.ViewModel
  845. Xamarin.AndroidX.Lifecycle.ViewModelSavedState
  846. Xamarin.AndroidX.Loader
  847. Xamarin.AndroidX.LocalBroadcastManager
  848. Xamarin.AndroidX.Media
  849. Xamarin.AndroidX.Migration
  850. Xamarin.AndroidX.MultiDex
  851. Xamarin.AndroidX.Navigation.Common
  852. Xamarin.AndroidX.Navigation.Runtime
  853. Xamarin.AndroidX.Navigation.UI
  854. Xamarin.AndroidX.Preference
  855. Xamarin.AndroidX.Print
  856. Xamarin.AndroidX.RecyclerView
  857. Xamarin.AndroidX.SavedState
  858. Xamarin.AndroidX.SlidingPaneLayout
  859. Xamarin.AndroidX.SwipeRefreshLayout
  860. Xamarin.AndroidX.Tracing.Tracing
  861. Xamarin.AndroidX.Transition
  862. Xamarin.AndroidX.VectorDrawable
  863. Xamarin.AndroidX.VectorDrawable.Animated
  864. Xamarin.AndroidX.VersionedParcelable
  865. Xamarin.AndroidX.ViewPager
  866. Xamarin.AndroidX.ViewPager2
  867. Xamarin.Essentials
  868. Xamarin.Forms
  869. Xamarin.Forms.DualScreen
  870. Xamarin.Forms.PancakeView
  871. Xamarin.Forms.Platform.WPF
  872. Xamarin.Google.Android.Material
  873. xmldocmd
  874. xunit
  875. xunit-cli
  876. xunit.abstractions
  877. xunit.analyzers
  878. xunit.assert
  879. xunit.core
  880. xunit.extensibility.core
  881. xunit.extensibility.execution
  882. xunit.runner.console
  883. xunit.runner.visualstudio
  884. XunitContext
  885. YamlDotNet

NPM packages

  1. |@ampproject/remapping
  2. @ampproject/remapping
  3. @angular-devkit/architect
  4. @angular-devkit/build-angular
  5. @angular-devkit/build-webpack
  6. @angular-devkit/core
  7. @angular-devkit/schematics
  8. @angular/animations
  9. @angular/cdk
  10. @angular/cli
  11. @angular/common
  12. @angular/compiler-cli
  13. @angular/compiler
  14. @angular/core
  15. @angular/forms
  16. @angular/material
  17. @angular/platform-browser-dynamic
  18. @angular/platform-browser
  19. @angular/router
  20. @api-platform/api-doc-parser
  21. @apidevtools/json-schema-ref-parser
  22. @apidevtools/openapi-schemas
  23. @apidevtools/swagger-methods
  24. @apidevtools/swagger-parser
  25. @assemblyscript/loader
  26. @babel/code-frame
  27. @babel/compat-data
  28. @babel/core
  29. @babel/generator
  30. @babel/helper-annotate-as-pure
  31. @babel/helper-builder-binary-assignment-operator-visitor
  32. @babel/helper-compilation-targets
  33. @babel/helper-create-class-features-plugin
  34. @babel/helper-create-regexp-features-plugin
  35. @babel/helper-define-polyfill-provider
  36. @babel/helper-explode-assignable-expression
  37. @babel/helper-function-name
  38. @babel/helper-get-function-arity
  39. @babel/helper-hoist-variables
  40. @babel/helper-member-expression-to-functions
  41. @babel/helper-module-imports
  42. @babel/helper-module-transforms
  43. @babel/helper-optimise-call-expression
  44. @babel/helper-plugin-utils
  45. @babel/helper-remap-async-to-generator
  46. @babel/helper-replace-supers
  47. @babel/helper-simple-access
  48. @babel/helper-skip-transparent-expression-wrappers
  49. @babel/helper-split-export-declaration
  50. @babel/helper-validator-identifier
  51. @babel/helper-validator-option
  52. @babel/helper-wrap-function
  53. @babel/helpers
  54. @babel/highlight
  55. @babel/parser
  56. @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression
  57. @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
  58. @babel/plugin-proposal-async-generator-functions
  59. @babel/plugin-proposal-class-properties
  60. @babel/plugin-proposal-class-static-block
  61. @babel/plugin-proposal-dynamic-import
  62. @babel/plugin-proposal-export-namespace-from
  63. @babel/plugin-proposal-json-strings
  64. @babel/plugin-proposal-logical-assignment-operators
  65. @babel/plugin-proposal-nullish-coalescing-operator
  66. @babel/plugin-proposal-numeric-separator
  67. @babel/plugin-proposal-object-rest-spread
  68. @babel/plugin-proposal-optional-catch-binding
  69. @babel/plugin-proposal-optional-chaining
  70. @babel/plugin-proposal-private-methods
  71. @babel/plugin-proposal-private-property-in-object
  72. @babel/plugin-proposal-unicode-property-regex
  73. @babel/plugin-syntax-async-generators
  74. @babel/plugin-syntax-class-properties
  75. @babel/plugin-syntax-class-static-block
  76. @babel/plugin-syntax-dynamic-import
  77. @babel/plugin-syntax-export-namespace-from
  78. @babel/plugin-syntax-json-strings
  79. @babel/plugin-syntax-logical-assignment-operators
  80. @babel/plugin-syntax-nullish-coalescing-operator
  81. @babel/plugin-syntax-numeric-separator
  82. @babel/plugin-syntax-object-rest-spread
  83. @babel/plugin-syntax-optional-catch-binding
  84. @babel/plugin-syntax-optional-chaining
  85. @babel/plugin-syntax-private-property-in-object
  86. @babel/plugin-syntax-top-level-await
  87. @babel/plugin-transform-arrow-functions
  88. @babel/plugin-transform-async-to-generator
  89. @babel/plugin-transform-block-scoped-functions
  90. @babel/plugin-transform-block-scoping
  91. @babel/plugin-transform-classes
  92. @babel/plugin-transform-computed-properties
  93. @babel/plugin-transform-destructuring
  94. @babel/plugin-transform-dotall-regex
  95. @babel/plugin-transform-duplicate-keys
  96. @babel/plugin-transform-exponentiation-operator
  97. @babel/plugin-transform-for-of
  98. @babel/plugin-transform-function-name
  99. @babel/plugin-transform-literals
  100. @babel/plugin-transform-member-expression-literals
  101. @babel/plugin-transform-modules-amd
  102. @babel/plugin-transform-modules-commonjs
  103. @babel/plugin-transform-modules-systemjs
  104. @babel/plugin-transform-modules-umd
  105. @babel/plugin-transform-named-capturing-groups-regex
  106. @babel/plugin-transform-new-target
  107. @babel/plugin-transform-object-super
  108. @babel/plugin-transform-parameters
  109. @babel/plugin-transform-property-literals
  110. @babel/plugin-transform-regenerator
  111. @babel/plugin-transform-reserved-words
  112. @babel/plugin-transform-runtime
  113. @babel/plugin-transform-shorthand-properties
  114. @babel/plugin-transform-spread
  115. @babel/plugin-transform-sticky-regex
  116. @babel/plugin-transform-template-literals
  117. @babel/plugin-transform-typeof-symbol
  118. @babel/plugin-transform-unicode-escapes
  119. @babel/plugin-transform-unicode-regex
  120. @babel/preset-env
  121. @babel/preset-modules
  122. @babel/runtime-corejs3
  123. @babel/runtime
  124. @babel/template
  125. @babel/traverse
  126. @babel/types
  127. @blockly/workspace-content-highlight
  128. @csstools/convert-colors
  129. @discoveryjs/json-ext
  130. @gar/promisify
  131. @istanbuljs/load-nyc-config
  132. @istanbuljs/schema
  133. @jridgewell/resolve-uri
  134. @jsdevtools/ono
  135. @ngtools/webpack
  136. @nodelib/fs.scandir
  137. @nodelib/fs.stat
  138. @nodelib/fs.walk
  139. @npmcli/fs
  140. @npmcli/git
  141. @npmcli/installed-package-contents
  142. @npmcli/move-file
  143. @npmcli/node-gyp
  144. @npmcli/promise-spawn
  145. @npmcli/run-script
  146. @schematics/angular
  147. @tootallnate/once
  148. @types/component-emitter
  149. @types/cookie
  150. @types/cors
  151. @types/eslint-scope
  152. @types/eslint
  153. @types/estree
  154. @types/http-proxy
  155. @types/intro.js
  156. @types/jasmine
  157. @types/json-schema
  158. @types/node
  159. @types/parse-json
  160. @types/retry
  161. @types/tabulator-tables
  162. @webassemblyjs/ast
  163. @webassemblyjs/floating-point-hex-parser
  164. @webassemblyjs/helper-api-error
  165. @webassemblyjs/helper-buffer
  166. @webassemblyjs/helper-numbers
  167. @webassemblyjs/helper-wasm-bytecode
  168. @webassemblyjs/helper-wasm-section
  169. @webassemblyjs/ieee754
  170. @webassemblyjs/leb128
  171. @webassemblyjs/utf8
  172. @webassemblyjs/wasm-edit
  173. @webassemblyjs/wasm-gen
  174. @webassemblyjs/wasm-opt
  175. @webassemblyjs/wasm-parser
  176. @webassemblyjs/wast-printer
  177. @xtuc/ieee754
  178. @xtuc/long
  179. @yarnpkg/lockfile
  180. abab
  181. abbrev
  182. accepts
  183. acorn-globals
  184. acorn-import-assertions
  185. acorn-walk
  186. acorn
  187. adjust-sourcemap-loader
  188. agent-base
  189. agentkeepalive
  190. aggregate-error
  191. ajv-formats
  192. ajv-keywords
  193. ajv
  194. ansi-colors
  195. ansi-escapes
  196. ansi-html-community
  197. ansi-regex
  198. ansi-styles
  199. anymatch
  200. aproba
  201. are-we-there-yet
  202. argparse
  203. array-equal
  204. array-flatten
  205. array-union
  206. asn1
  207. assert-plus
  208. async
  209. asynckit
  210. atob
  211. autoprefixer
  212. aws-sign2
  213. aws4
  214. babel-loader
  215. babel-plugin-dynamic-import-node
  216. babel-plugin-istanbul
  217. babel-plugin-polyfill-corejs2
  218. babel-plugin-polyfill-corejs3
  219. babel-plugin-polyfill-regenerator
  220. balanced-match
  221. base64-arraybuffer
  222. base64-js
  223. base64id
  224. batch
  225. bcrypt-pbkdf
  226. big.js
  227. binary-extensions
  228. bl
  229. blockly
  230. body-parser
  231. bonjour
  232. boolbase
  233. brace-expansion
  234. braces
  235. browser-process-hrtime
  236. browserslist
  237. btoa
  238. buffer-from
  239. buffer-indexof
  240. buffer
  241. builtins
  242. bytes
  243. cacache
  244. call-bind
  245. call-me-maybe
  246. callsites
  247. camelcase
  248. caniuse-lite
  249. canonical-path
  250. canonicalize
  251. caseless
  252. chalk
  253. chardet
  254. chart.js
  255. chokidar
  256. chownr
  257. chrome-trace-event
  258. circular-dependency-plugin
  259. classlist-polyfill
  260. clean-stack
  261. cli-cursor
  262. cli-spinners
  263. cli-width
  264. cliui
  265. clone-deep
  266. clone
  267. code-point-at
  268. color-convert
  269. color-name
  270. color-support
  271. colorette
  272. colors
  273. combined-stream
  274. commander
  275. commondir
  276. component-emitter
  277. compressible
  278. compression
  279. concat-map
  280. connect-history-api-fallback
  281. connect
  282. console-control-strings
  283. content-disposition
  284. content-type
  285. convert-source-map
  286. cookie-signature
  287. cookie
  288. copy-anything
  289. copy-webpack-plugin
  290. core-js-compat
  291. core-js-pure
  292. core-js
  293. core-util-is
  294. cors
  295. cosmiconfig
  296. critters
  297. cross-fetch
  298. cross-spawn
  299. css-blank-pseudo
  300. css-has-pseudo
  301. css-loader
  302. css-prefers-color-scheme
  303. css-select
  304. css-what
  305. css
  306. cssdb
  307. cssesc
  308. cssom
  309. cssstyle
  310. custom-event
  311. dashdash
  312. data-urls
  313. date-format
  314. debug
  315. decode-uri-component
  316. deep-clone-simple
  317. deep-equal
  318. deep-extend
  319. deep-is
  320. default-gateway
  321. defaults
  322. define-lazy-prop
  323. define-properties
  324. del
  325. delayed-stream
  326. delegates
  327. depd
  328. dependency-graph
  329. destroy
  330. detect-node
  331. di
  332. dir-glob
  333. dns-equal
  334. dns-packet
  335. dns-txt
  336. dom-serialize
  337. dom-serializer
  338. domelementtype
  339. domexception
  340. domhandler
  341. domify
  342. domutils
  343. ecc-jsbn
  344. ee-first
  345. electron-to-chromium
  346. emoji-regex
  347. emojis-list
  348. encodeurl
  349. encoding
  350. engine.io-parser
  351. engine.io
  352. enhanced-resolve
  353. ent
  354. entities
  355. env-paths
  356. err-code
  357. errno
  358. error-ex
  359. es-abstract
  360. es-module-lexer
  361. es-to-primitive
  362. es6-object-assign
  363. esbuild-wasm
  364. esbuild-windows-64
  365. esbuild
  366. escalade
  367. escape-html
  368. escape-string-regexp
  369. escodegen
  370. eslint-scope
  371. esprima
  372. esrecurse
  373. estraverse
  374. esutils
  375. etag
  376. eventemitter-asyncresource
  377. eventemitter3
  378. events
  379. execa
  380. express
  381. extend
  382. external-editor
  383. extsprintf
  384. fast-deep-equal
  385. fast-glob
  386. fast-json-patch
  387. fast-json-stable-stringify
  388. fast-levenshtein
  389. fastq
  390. faye-websocket
  391. figures
  392. file-saver
  393. fill-range
  394. finalhandler
  395. find-cache-dir
  396. find-up
  397. flatted
  398. flatten
  399. follow-redirects
  400. forever-agent
  401. form-data-encoder
  402. form-data
  403. form-serialize
  404. formdata-node
  405. forwarded
  406. fresh
  407. fs-extra
  408. fs-minipass
  409. fs-monkey
  410. fs.realpath
  411. function-bind
  412. gauge
  413. gensync
  414. get-caller-file
  415. get-intrinsic
  416. get-package-type
  417. get-stream
  418. get-symbol-description
  419. getpass
  420. #VALUE!

  421. glob-parent
  422. glob-to-regexp
  423. glob
  424. globals
  425. globby
  426. graceful-fs
  427. graphql
  428. handle-thing
  429. har-schema
  430. har-validator
  431. has-bigints
  432. has-flag
  433. has-symbols
  434. has-tostringtag
  435. has-unicode
  436. has
  437. hdr-histogram-js
  438. hdr-histogram-percentiles-obj
  439. hosted-git-info
  440. hpack.js
  441. html-encoding-sniffer
  442. html-entities
  443. html-escaper
  444. http-cache-semantics
  445. http-deceiver
  446. http-errors
  447. http-parser-js
  448. http-proxy-agent
  449. http-proxy-middleware
  450. http-proxy
  451. http-signature
  452. https-proxy-agent
  453. human-signals
  454. humanize-ms
  455. iconv-lite
  456. icss-utils
  457. ieee754
  458. ignore-walk
  459. ignore
  460. image-size
  461. immutable
  462. import-fresh
  463. imurmurhash
  464. indent-string
  465. indexes-of
  466. infer-owner
  467. inflight
  468. inherits
  469. ini
  470. inquirer
  471. install
  472. internal-ip
  473. internal-slot
  474. intro.js
  475. ip-regex
  476. ip
  477. ipaddr.js
  478. is-arguments
  479. is-arrayish
  480. is-bigint
  481. is-binary-path
  482. is-boolean-object
  483. is-callable
  484. is-core-module
  485. is-date-object
  486. is-docker
  487. is-extglob
  488. is-fullwidth-code-point
  489. is-glob
  490. is-interactive
  491. is-ip
  492. is-lambda
  493. is-negative-zero
  494. is-number-object
  495. is-number
  496. is-path-cwd
  497. is-path-inside
  498. is-plain-obj
  499. is-plain-object
  500. is-regex
  501. is-shared-array-buffer
  502. is-stream
  503. is-string
  504. is-symbol
  505. is-typedarray
  506. is-unicode-supported
  507. is-weakref
  508. is-what
  509. is-wsl
  510. isarray
  511. isbinaryfile
  512. isexe
  513. isobject
  514. isstream
  515. istanbul-lib-coverage
  516. istanbul-lib-instrument
  517. istanbul-lib-report
  518. istanbul-lib-source-maps
  519. istanbul-reports
  520. jasmine-core
  521. jest-worker
  522. js-interpreter
  523. js-tokens
  524. js-yaml
  525. jsbn
  526. jsdom
  527. jsesc
  528. json-parse-better-errors
  529. json-parse-even-better-errors
  530. json-schema-traverse
  531. json-schema
  532. json-stringify-safe
  533. json5
  534. jsonc-parser
  535. jsonfile
  536. jsonld
  537. jsonparse
  538. jsprim
  539. karma-chrome-launcher
  540. karma-coverage
  541. karma-jasmine-html-reporter
  542. karma-jasmine
  543. karma-source-map-support
  544. karma
  545. kind-of
  546. klona
  547. less-loader
  548. less
  549. levn
  550. license-webpack-plugin
  551. lines-and-columns
  552. loader-runner
  553. loader-utils
  554. locate-path
  555. lodash.debounce
  556. lodash.get
  557. lodash.isequal
  558. lodash.sortby
  559. lodash
  560. log-symbols
  561. log4js
  562. lru-cache
  563. magic-string
  564. make-dir
  565. make-fetch-happen
  566. media-typer
  567. memfs
  568. merge-descriptors
  569. merge-stream
  570. merge2
  571. methods
  572. micromatch
  573. mime-db
  574. mime-types
  575. mime
  576. mimic-fn
  577. mini-css-extract-plugin
  578. minimalistic-assert
  579. minimatch
  580. minimist
  581. minipass-collect
  582. minipass-fetch
  583. minipass-flush
  584. minipass-json-stream
  585. minipass-pipeline
  586. minipass-sized
  587. minipass
  588. minizlib
  589. mkdirp
  590. monaco-editor
  591. ms
  592. multicast-dns-service-types
  593. multicast-dns
  594. mute-stream
  595. nanoid
  596. needle
  597. negotiator
  598. neo-async
  599. ngx-monaco-editor
  600. node-addon-api
  601. node-domexception
  602. node-fetch
  603. node-forge
  604. node-gyp-build
  605. node-gyp
  606. node-releases
  607. nopt
  608. normalize-path
  609. normalize-range
  610. npm-bundled
  611. npm-install-checks
  612. npm-normalize-package-bin
  613. npm-package-arg
  614. npm-packlist
  615. npm-pick-manifest
  616. npm-registry-fetch
  617. npm-run-path
  618. npm
  619. npmlog
  620. nth-check
  621. num2fraction
  622. number-is-nan
  623. nwsapi
  624. oauth-sign
  625. object-assign
  626. object-inspect
  627. object-is
  628. object-keys
  629. object.assign
  630. object.fromentries
  631. obuf
  632. on-finished
  633. on-headers
  634. once
  635. onetime
  636. open
  637. openapi-types
  638. optionator
  639. ora
  640. os-tmpdir
  641. p-event
  642. p-finally
  643. p-limit
  644. p-locate
  645. p-map
  646. p-retry
  647. p-timeout
  648. p-try
  649. pacote
  650. pako
  651. parent-module
  652. parse-json
  653. parse-node-version
  654. parse5-html-rewriting-stream
  655. parse5-htmlparser2-tree-adapter
  656. parse5-sax-parser
  657. parse5
  658. parseurl
  659. path-exists
  660. path-is-absolute
  661. path-key
  662. path-parse
  663. path-to-regexp
  664. path-type
  665. performance-now
  666. picocolors
  667. picomatch
  668. pify
  669. piscina
  670. pkg-dir
  671. pn
  672. portfinder
  673. postcss-attribute-case-insensitive
  674. postcss-color-functional-notation
  675. postcss-color-gray
  676. postcss-color-hex-alpha
  677. postcss-color-mod-function
  678. postcss-color-rebeccapurple
  679. postcss-custom-media
  680. postcss-custom-properties
  681. postcss-custom-selectors
  682. postcss-dir-pseudo-class
  683. postcss-double-position-gradients
  684. postcss-env-function
  685. postcss-focus-visible
  686. postcss-focus-within
  687. postcss-font-variant
  688. postcss-gap-properties
  689. postcss-image-set-function
  690. postcss-import
  691. postcss-initial
  692. postcss-lab-function
  693. postcss-loader
  694. postcss-logical
  695. postcss-media-minmax
  696. postcss-modules-extract-imports
  697. postcss-modules-local-by-default
  698. postcss-modules-scope
  699. postcss-modules-values
  700. postcss-nesting
  701. postcss-overflow-shorthand
  702. postcss-page-break
  703. postcss-place
  704. postcss-preset-env
  705. postcss-pseudo-class-any-link
  706. postcss-replace-overflow-wrap
  707. postcss-selector-matches
  708. postcss-selector-not
  709. postcss-selector-parser
  710. postcss-value-parser
  711. postcss-values-parser
  712. postcss
  713. prelude-ls
  714. pretty-bytes
  715. process-nextick-args
  716. promise-inflight
  717. promise-retry
  718. proxy-addr
  719. prr
  720. psl
  721. punycode
  722. qjobs
  723. qs
  724. querystring
  725. queue-microtask
  726. randombytes
  727. range-parser
  728. raw-body
  729. rdf-canonize
  730. read-cache
  731. read-package-json-fast
  732. readable-stream
  733. readdirp
  734. reflect-metadata
  735. regenerate-unicode-properties
  736. regenerate
  737. regenerator-runtime
  738. regenerator-transform
  739. regex-parser
  740. regexp.prototype.flags
  741. regexpu-core
  742. regjsgen
  743. regjsparser
  744. request-promise-core
  745. request-promise-native
  746. request
  747. require-directory
  748. require-from-string
  749. requires-port
  750. resolve-from
  751. resolve-url-loader
  752. resolve
  753. restore-cursor
  754. retry
  755. reusify
  756. rfdc
  757. rimraf
  758. run-async
  759. run-parallel
  760. rxjs
  761. safe-buffer
  762. safer-buffer
  763. sass-loader
  764. sass
  765. sax
  766. saxes
  767. schema-utils
  768. select-hose
  769. selfsigned
  770. semver
  771. send
  772. serialize-javascript
  773. serve-index
  774. serve-static
  775. set-blocking
  776. setimmediate
  777. setprototypeof
  778. shallow-clone
  779. shebang-command
  780. shebang-regex
  781. side-channel
  782. signal-exit
  783. slash
  784. smart-buffer
  785. socket.io-adapter
  786. socket.io-parser
  787. socket.io
  788. sockjs
  789. socks-proxy-agent
  790. socks
  791. source-map-js
  792. source-map-loader
  793. source-map-resolve
  794. source-map-support
  795. source-map
  796. sourcemap-codec
  797. spdy-transport
  798. spdy
  799. sprintf-js
  800. sshpk
  801. ssri
  802. statuses
  803. stealthy-require
  804. streamroller
  805. string_decoder
  806. string-width
  807. string.prototype.trimend
  808. string.prototype.trimstart
  809. strip-ansi
  810. strip-final-newline
  811. stylus-loader
  812. stylus
  813. supports-color
  814. swagger-client
  815. swagger-parser
  816. symbol-observable
  817. symbol-tree
  818. tabulator-tables
  819. tapable
  820. tar
  821. terser-webpack-plugin
  822. terser
  823. test-exclude
  824. text-table
  825. through
  826. thunky
  827. tmp
  828. to-fast-properties
  829. to-regex-range
  830. toidentifier
  831. tough-cookie
  832. tr46
  833. traverse
  834. tree-kill
  835. tslib
  836. tunnel-agent
  837. tweetnacl
  838. type-check
  839. type-fest
  840. type-is
  841. typed-assert
  842. typescript
  843. ua-parser-js
  844. unbox-primitive
  845. unicode-canonical-property-names-ecmascript
  846. unicode-match-property-ecmascript
  847. unicode-match-property-value-ecmascript
  848. unicode-property-aliases-ecmascript
  849. uniq
  850. unique-filename
  851. unique-slug
  852. universalify
  853. unpipe
  854. uri-js
  855. url
  856. util-deprecate
  857. utils-merge
  858. uuid
  859. validate-npm-package-name
  860. validator
  861. vary
  862. verror
  863. vex-dialog
  864. vex-js
  865. vex
  866. vm
  867. void-elements
  868. w3c-hr-time
  869. w3c-xmlserializer
  870. watchpack
  871. wbuf
  872. wcwidth
  873. web-streams-polyfill
  874. webidl-conversions
  875. webpack-dev-middleware
  876. webpack-dev-server
  877. webpack-merge
  878. webpack-sources
  879. webpack-subresource-integrity
  880. webpack
  881. websocket-driver
  882. websocket-extensions
  883. whatwg-encoding
  884. whatwg-mimetype
  885. whatwg-url
  886. which-boxed-primitive
  887. which
  888. wide-align
  889. wildcard
  890. word-wrap
  891. wrap-ansi
  892. wrappy
  893. ws
  894. xml-name-validator
  895. xmlchars
  896. xmldom
  897. y18n
  898. yallist
  899. yaml
  900. yargs-parser
  901. yargs
  902. yocto-queue
  903. z-schema
  904. zone.js

Andrei Ignat weekly software news(mostly .NET)

* indicates required

Please select all the ways you would like to hear from me:

You can unsubscribe at any time by clicking the link in the footer of our emails. For information about our privacy practices, please visit our website.

We use Mailchimp as our marketing platform. By clicking below to subscribe, you acknowledge that your information will be transferred to Mailchimp for processing. Learn more about Mailchimp's privacy practices here.