Skip to content
View ppolyzos's full-sized avatar

Organizations

@ng-lightning
Block or Report

Block or report ppolyzos

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. azureheads-gab-athens azureheads-gab-athens Public

    C# 1

  2. dev-tools dev-tools Public

    A collection of tools that runs in docker, to help you during development

    Shell 4

  3. C#: Sort one collection based on ano... C#: Sort one collection based on another
    1
    /// <summary>
    2
    /// Sort one collection based on keys defined in another
    3
    /// </summary>
    4
    /// <returns>Items sorted</returns>
    5
    public static IEnumerable<TResult> SortBy<TResult, TKey>(
  4. TSQL: Generate Random String of desi... TSQL: Generate Random String of desired length
    1
    DECLARE @DesiredLength AS INT = 10;
    2
    select Lower(substring(replace(newID(), '-', ''), cast(RAND() * (31 - @DesiredLength) AS INT),
    3
                      @DesiredLength)) AS randomString;