Giter Site home page Giter Site logo

Hey 👋, I'm Mike

A Software engineer from Uganda

mike.go

Welcome to my GitHub repository

package main

import (
	"fmt"
	"time"
)

// Contact information
type Contact struct {
	Email    string
	LinkedIn string
	GitHub   string
}

type Skills struct {
	JavaScript     bool
	NextJS         bool
	ReactNative    bool
	Python         bool
	Django         bool
	Kotlin         bool
	JetpackCompose bool
}

func introduction(name string) {
	fmt.Printf("Hello, my name is %s!\n", name)
}


func showSkills(skills Skills) {
	fmt.Println("Here are my skills:")
	if skills.JavaScript {
		fmt.Println("- JavaScript")
	}
	if skills.NextJS {
		fmt.Println("- Next.js (a framework of JavaScript)")
	}
	if skills.ReactNative {
		fmt.Println("- React Native")
	}
	if skills.Python {
		fmt.Println("- Python")
	}
	if skills.Django {
		fmt.Println("- Django")
	}
	if skills.Kotlin {
		fmt.Println("- Kotlin")
	}
	if skills.JetpackCompose {
		fmt.Println("- Jetpack Compose")
	}
}

func funFacts() {
	facts := []string{
		"I love coding!",
		"I'm a coffee enthusiast.",
		"I enjoy solving complex problems.",
		"I'm a lifelong learner.",
	}

	for _, fact := range facts {
		go func(f string) {
			fmt.Println(f)
		}(fact)
	}

	time.Sleep(1 * time.Second)
}

func main() {
	name := "Mike"

	skills := Skills{
		JavaScript:     true,
		NextJS:         true,
		ReactNative:    true,
		Python:         true,
		Django:         true,
		Kotlin:         true,
		JetpackCompose: true,
	}

	introduction(name)
	showSkills(skills)
	funFacts()
}

Mike

Matovu Mike's Projects

android-compose-template icon android-compose-template

🚀 Android Jetpack Compose template with MVVM, Hilt, clean architecture,Material3,Paging3,Room,offline caching

computer-science icon computer-science

:mortar_board: Path to a free self-taught education in Computer Science!

eduass icon eduass

local files search engine program

example-voting-app icon example-voting-app

Example distributed app composed of multiple containers for Docker, Compose, Swarm, and Kubernetes

fantasypremierleague icon fantasypremierleague

Fantasy Premier League Kotlin Multiplatform sample using Jetpack Compose, Compose for Desktop and SwiftUI (and Room for local persistence)

jetpack-compose-template icon jetpack-compose-template

Welcome to the Jetpack Compose Template! This template offers a structured starting point for Android app development using the Jetpack Compose UI toolkit.

missingpersons icon missingpersons

This is a possible list of Ugandans who might get arrested, detained, kidnapped, or go missing following the planned #March2Parliament protests on July 23, 2024

sickler_aid icon sickler_aid

A mobile app to help in the management of sickle cell disease

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.