Skip to content
View AlexRasch's full-sized avatar
Block or Report

Block or report AlexRasch

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 Loading

  1. VirusTotal-Desktop-Widget VirusTotal-Desktop-Widget Public

    VirusTotal Desktop Widget: A VirusTotal desktop widget for Windows that performs file scans and displays system information such as RAM and CPU usage. Note: An API key is required to use the VirusT…

    C# 2

  2. OdinCMS OdinCMS Public

    Basic webshop

    C# 1

  3. digitalt-visitkort-bsa digitalt-visitkort-bsa Public

    Digitalt visitkort för personal på Brandskyddsarbeten AB

    PHP

  4. Basic-responsive-website Basic-responsive-website Public

    HTML

  5. Convert byte[] to bitmap Convert byte[] to bitmap
    1
            public static Bitmap CreateBitmapFromData(byte[] binaryData)
    2
            {
    3
                // calc padding amount
    4
                int iPaddedSize = binaryData.Length + (3 - binaryData.Length % 3) + 6;
    5
                int iPixelCount = iPaddedSize / 3;
  6. MouseDistance MouseDistance Public

    Measure the distance the cursor have been moved to bypass sandboxes

    C# 1 1