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

Organizations

@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 Public

    File Konfigurasi untuk melakukan provision Kubernetes Cluster dengan menggunakan Ansible

    4

  2. Gate2Up/rabbitmq-go Public

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

    Go 1

  3. morse-gen Public

    CLI Tools for generating Morse

    Go

  4. lab-security-setup Public

    Dockerfile

  5. cheatsheet Public

    A curated list of My Cheatsheet

    1

  6. ctf-writeup Public

    A collection of My own Write Up of Capture The Flag

17,998 contributions in the last year

Contribution Graph
Day of Week April May June July August September October November December January February March April
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Less
No contributions.
Low contributions.
Medium-low contributions.
Medium-high contributions.
High contributions.
More

Activity overview

Loading A graph representing restuhaqza's contributions from April 21, 2024 to April 25, 2025. The contributions are 100% commits, 0% pull requests, 0% issues, 0% code review.   Code review   Issues   Pull requests 100% Commits

Contribution activity

April 2025

Created an issue in myugan/firecracker-python that received 2 comments

Enable internet access for microVM

Hi maintainers, First of all, thanks for the great work on the firecracker-python project! It really simplifies managing Firecracker microVMs progr…

2 comments
7 contributions in private repositories Apr 8 – Apr 21
Loading