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

Block or report ilovechai

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. Configure SSL certificates MS SQL se... Configure SSL certificates MS SQL server on Windows Server
    1
    ## Enable SSL connection MSSQL 
    2
    
                  
    3
    - Search Windows Feature in Start
    4
    - Enable IIS - Followed https://stackoverflow.com/questions/30901434/iis-manager-in-windows-10
    5
    - Open IIS and create self signed certificate
  2. egeria egeria Public

    Forked from odpi/egeria

    Egeria core

    Java 1

  3. A terrible way to connect to MS SQL ... A terrible way to connect to MS SQL Server and dump the certificate as a PEM
    1
    import sys
    2
    import pprint
    3
    import struct
    4
    import socket
    5
    import ssl
  4. Python snippet to create frozen sets... Python snippet to create frozen sets of nested dictionaries.
    1
    def freeze(o):
    2
        if isinstance(o, dict):
    3
            return frozenset({k: freeze(v) for k, v in o.items()}.items())
    4
        if isinstance(o, list):
    5
            return frozenset([freeze(v) for v in o])
  5. SPECCPU-extractlog SPECCPU-extractlog Public

    Extracts all benchmark information and calculates min, max, standard deviation, mean, median from the log generated from speccpu2006

    Python 1

  6. benchmarks benchmarks Public

    Forked from tensorflow/benchmarks

    Benchmark code

    Python 1