Wednesday, July 31, 2019

Octopus is single-threaded.

One job can't kick off if another one is running. Lame.

Libra

It is a blockchain cryptocurrency‎ like Bitcoin. It is proposed by Facebook.

Tuesday, July 30, 2019

throughput

...is the amount of stuff, bytes, packets, etc. passing through a process.

BlueCielo

It is document management stuff. Headhunters could keep all of their word doucments for résumés in here and the like.

fast follow

This is a release to production hot on the heels of a release to production.

One or more errors occurred. (Cannot create a DbSet for 'AppleSauce' because this type is not included in the model for the context.)'

At your implementation of Microsoft.EntityFrameworkCore.DbContext in your C# you will need to add your type to the OnModelCreating method as shown here to beat this "because this type is not included in the model for the context." problem when working with .NET Core's Database First Entity Framework approach.

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
   modelBuilder.Entity<AppleSauce>().ToTable("AppleSauce");
}

 
 

Note that the "AppleSauce" magic string does not have to correspond to the name of a database table. As best as I can tell it can be anything you like. It should not be the same across two line items in the OnModelCreating method however.

DAST is dynamic application security testing while SAST is static application security testing.

DAST tests from the outside. Think pen testing, etc. SAST is inside testing, stuff like HP Fortify scans and that ilk. DAST is also referred to as black box and SAST white box. See: this