Skip to content
View imjma's full-sized avatar
💻
Coding
💻
Coding

Organizations

@go-community
Block or Report

Block or report imjma

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
imjma/README.md
package main

import (
	"fmt"
)

type About struct {
	Name     string
	Role     string
	Pronouns string
	Code     []string
	Social   map[string]string
}

func main() {
	me := About{
		Name:     "Jie Ma",
		Role:     "Software Engineer",
		Pronouns: "he/him",
		Code:     []string{"golang", "php"},
		Social: map[string]string{
			"twitter":  "https://twitter.com/imjma",
			"email":    "hi@jma.dev",
			"www":      "https://jma.dev",
			"blog":     "https://jma.im",
			"ins":      "https://www.instagram.com/filmape/",
			"insfilm":  "https://www.instagram.com/negativeso/",
			"linkedin": "https://www.linkedin.com/in/jiema/",
		},
	}
	fmt.Println(me)
}

Pinned

  1. dotfiles dotfiles Public

    Vim Script 16 2

  2. my-mac-os my-mac-os Public

    List of applications and tools on my macOS

    1

  3. graphqb graphqb Public

    GraphQL Query Builder

    Go 1