WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
View ppolyzos's full-sized avatar

Organizations

@ng-lightning

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  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 3

  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;