Skip to content
View toastsandwich's full-sized avatar
:electron:
Developing
:electron:
Developing
  • student at PCCOE,Pune,India
  • Pune,IN
  • 23:58 (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 (
    "fmt"
    "toastsandwich/experience"
    "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: Completing my degree :_)`
    work.Done <- struct{}{} // Signal that the current work is done

    work.Add <- `Previous Projects:
        1. KeyLogger                  [stack : C++ and NodeJS]
        2. ChatServer                 [stack : Golang]
        3. Database from scratch      [stack : Golang] {work in progress}
        4. LCP                        [stack: HTML, CSS, JS, Golang]
        5. toastsandwich.snippet.box  [stack: "HTML, CSS, GOHTML, Golang]`
    work.Done <- struct{}{} // Signal that the project list is done
}

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

func init() {
    experience.Load("intern @TSYS")
    skills.Load("golang", "templ", "react", "html", "css", "mysql", "docker")
}

func main() {
    introduce()

    // Start working in a goroutine
    go currentWork()

    // Wait for the work to be done before proceeding
    <-work.Done

    // After the work is done, proceed to connect
    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