Skip to content
View pankkor's full-sized avatar

Block or report pankkor

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. screensavers screensavers Public

    C, nostdlib, OpenGL playground

    C

  2. pap pap Public

    Performance-Aware-Programming Course Playground

    C

  3. ld42_rams ld42_rams Public

    Ludum Dare 42 Entry (August 2018)

    C#

  4. SwiftHeap SwiftHeap Public

    Heap in Swift

    Swift 1

  5. Windows large pages, Linux huge page... Windows large pages, Linux huge pages, macOS super pages support
    1
    # Large, Huge, Super Pages
    2
    
                  
    3
    ## Linux Huge Pages
    4
    ### Transparent Huge Pages (THP) via `madvice`
    5
    Not covered here, see https://www.kernel.org/doc/Documentation/vm/transhuge.txt
  6. Reverse char string in place using simd Reverse char string in place using simd
    1
    // Reverse char string in place
    2
    //
    3
    // Build:
    4
    // clang -O2 -DTEST -mavx2 -Wall -Wpedantic -Wextra str_reverse.c -o str_reverse
    5
    // or