Skip to content
View Crazy3lf's full-sized avatar
👹
Always evil sometimes.
👹
Always evil sometimes.
  • Selangor, Malaysia

Block or report Crazy3lf

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Crazy3lf/README.md


Hi, I am FX, a backend developer. I am learning, always.

Pinned Loading

  1. colorconv colorconv Public

    Library to support RGB conversion to HSL, HSV and Hex value for Golang.

    Go 9 3

  2. Crazy3lf Crazy3lf Public

    Github profile

  3. Test cases for email validation for ... Test cases for email validation for Go based on https://blogs.msdn.microsoft.com/testing123/2009/02/06/email-address-test-cases/
    1
    package email
    2
    
                  
    3
    import (
    4
    	"testing"
    5
    )
  4. email validation code for Go. For te... email validation code for Go. For test cases, refer https://gist.github.com/Crazy3lf/5cd87ae25fb21c92284b04201f1ffc5e
    1
    func isValidEmail(Value string) (result bool) {
    2
    	result = false
    3
    	var checkAllowed = regexp.MustCompile(`^[a-zA-z0-9_\-.+]+$`).MatchString
    4
    
                  
    5
    	i := strings.Index(Value, `@`)