Skip to content
View toastsandwich's full-sized avatar
:electron:
Developing
:electron:
Developing
  • student at PCCOE,Pune,India
  • Pune,IN
  • 16:11 (UTC +05:30)

Block or report toastsandwich

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

import (
    "toastsandwich/introduction"
    "toastsandwich/skills"
    "toastsandwich/socials"
    "toastsandwich/work"
)

func introduce() {
    fmt.Println("Hello everyone, I am Shreyas Mali")
    fmt.Println("I am a GoLang Developer and a Competitive Programmer")
}

func currentWork() {             
	work.add <- `Currently working on :
			 Liver Cirrosis Prediction System using Random Forest
			 as a web application [stack : Golang, HTML, CSS]`
	work.done <- struct{}{}

	work.add <-`Previous Projects :
			 1. KeyLogger            [stack : C++ and NodeJS]
			 2. ChatServer 		  [stack : Golang]
			 3. Database from scratch [stack : Golang] {incomplete}`
	work.done <- struct{}{}
}

func connect() {
    connectWithMe := map[socials.links]string {
		Instagram: "this.shrys",
		LinkedIn:  "Shreyas Mali",
    }
	fmt.Println(connectWithMe)
}

func init() {
	skills.Load()
}

func main() {
	introduct()
	go work()
	for {
		_,  ok := <-work.done
		select ok {
		case true:
		// go to next work
		case false:
		// do work until complete
		}
	}
	connect()
}

Pinned Loading

  1. book-management-system-api book-management-system-api Public

    Go

  2. LCP LCP Public

    Welcome to the Liver Cirrhosis Prediction System!

    HTML

  3. chat-app chat-app Public

    Go

  4. gorilla-mux-api-server gorilla-mux-api-server Public

    this is my first api server from scratch :)

    Go