Skip to content
View corehello's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report corehello

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
corehello/README.md

Pinned Loading

  1. golang simple http proxy @ https://m... golang simple http proxy @ https://medium.com/@mlowicki/http-s-proxy-in-golang-in-less-than-100-lines-of-code-6a51c2f2c38c
    1
    package main
    2
    
                  
    3
    import (
    4
    	"crypto/tls"
    5
    	"flag"
  2. lisp-gists lisp-gists Public

    common-lisp gists

    Common Lisp

  3. 8 queen puzzle solver 8 queen puzzle solver
    1
    #include <stdio.h>
    2
    
                  
    3
    /*
    4
      You can define the size of Queens
    5
    */
  4. terraform_gists terraform_gists Public

    Terraform syntax learning summary

    HCL 1

  5. sqrt function(concept of proof) in p... sqrt function(concept of proof) in python 3
    1
    def sqrt(n, p):
    2
        # any number can be writen as n = a*10 +b, where a >=0, b is 0~9
    3
        # for example 123 = 12 * 10 + 3
    4
        # so then any number N = (a*10 + b)^2 + remainer = a^2*100 + b*(b+20*a) + remainer
    5
        # then b*(b+20*a) <= N - a^2*100