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

Block or report Crazy3lf

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
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 6 1

  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, `@`)