Skip to content
View restuhaqza's full-sized avatar
Platform Engineer
Platform Engineer

Organizations

@BugHunterID @fossildev @kode-space @Gate2Up @denoland-id @Firebase-ID

Block or report restuhaqza

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

Hello there, Restu here! 😎

package main

import (
	"encoding/json"
	"fmt"
	"log"
)

type MySelf struct {
	Name         string       `json:"name"`
	Pronoun      []string     `json:"pronoun"`
	Code         []string     `json:"code"`
	Architecture []string     `json:"architecture"`
	Technologies Technologies `json:"technologies"`
	Skills       []string     `json:"skills"`
	CurrentFocus string       `json:"currentFocus"`
	AskMeAbout   []string     `json:"askMeAbout"`
	Hobbies      []string     `json:"hobbies"`
}

type Technologies struct {
	Backend   []string `json:"backend"`
	Frontend  []string `json:"frontend"`
	Mobile    []string `json:"mobile"`
	Databases []string `json:"databases"`
	DevOps    []string `json:"devops"`
	Misc      []string `json:"misc"`
}

func SetProfile() *MySelf {
	return &MySelf{
		Name:         "Restu Muzakir",
		Pronoun:      []string{"He", "Him"},
		Code:         []string{"TypeScript", "JavaScript", "Go", "Java", "PHP"},
		Architecture: []string{"Serverless", "Monolith App", "Microservices"},
		Technologies: Technologies{
			Backend:   []string{"Node: Express, NestJS", "Go: Gin"},
			Frontend:  []string{"ReactJS"},
			Mobile:    []string{"React Native"},
			Databases: []string{"MySQL", "PostgreSQL", "MongoDB"},
			DevOps:    []string{"Docker", "Kubernetes", "AWS/Azure/GoogleCloud"},
			Misc:      []string{"Firebase", "SocketIO"},
		},
		Skills:       []string{"Team Lead", "System Analyst", "Coder", "Maintainer"},
		CurrentFocus: "Core Engineering",
		AskMeAbout:   []string{"Tech", "Business"},
		Hobbies:      []string{"YoYo Player", "Hypnosis"},
	}
}

func (m *MySelf) Hello() string {
	return fmt.Sprintf("Hello there, %s is here", m.Name)
}

func main() {
	profile := SetProfile()
	output, err := json.Marshal(profile)
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println(profile.Hello())
	fmt.Println(string(output))
}

Pinned Loading

  1. kode-space/ansible-for-k8s kode-space/ansible-for-k8s Public

    File Konfigurasi untuk melakukan provision Kubernetes Cluster dengan menggunakan Ansible

    4

  2. Gate2Up/rabbitmq-go Gate2Up/rabbitmq-go Public

    RabbitMQ Library to using Event Driven Application based on Publish/Subscribe

    Go 1

  3. morse-gen morse-gen Public

    CLI Tools for generating Morse

    Go

  4. lab-security-setup lab-security-setup Public

    Dockerfile

  5. cheatsheet cheatsheet Public

    A curated list of My Cheatsheet

    1

  6. ctf-writeup ctf-writeup Public

    A collection of My own Write Up of Capture The Flag