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

Block or report fmerlin

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. Memory timings with C code to test Memory timings with C code to test
    1
    #define buf_size 64*1024*1024
    2
    #define step 1
    3
    
                  
    4
    /* Memory Timings
    5
     * Compiling the two programs and changing the step from 1 to 16 has little impact on the performance while much more memory is changed
  2. This pool is used to keep only one v... This pool is used to keep only one version of an object when they are equal
    1
    import java.lang.ref.WeakReference;
    2
    import java.util.WeakHashMap;
    3
    
                  
    4
    /*
    5
     * This pool is used to keep only one version of an object when they are equal
  3. List all the ports opened by process... List all the ports opened by processes on the local machine
    1
    #!/usr/bin/python
    2
    import psutil
    3
    
                  
    4
    """
    5
    List all the ports opened by processes on the local machine