Skip to content
View SuezDevelopment's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report SuezDevelopment

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

Hi there πŸ‘‹, I'm Gideon. Welcome to my GitHub Profile!

Success Alaska Development

Profile views


πŸ› οΈ Languages and tools


Languages and Tools



πŸ‘¨β€πŸ’» LOC

Lines of Code


SuezDevelopment

SuezDevelopment

Β SuezDevelopment

SuezDevelopment


2023 ToDo List

  • Create Tutorials in GoLang

  • Create Tutorials in Ruby

  • Python

def my_function(x: int, y: int) -> int:
    return x / y

result = my_function(360, 30)
print(result) 
  • Go
/*
The "Feature" function creates a goroutine to execute the wrapped function asynchronously, 
while the returned function waits for the execution to complete before returning the result.
*/
func Feature(f func(interface{}, error)) func() (interface{}, error) {
	var result interface{}
	var err error

	c := make(chan struct{}, 1)
	go func() {
		defer close(c)

		result, err = f()
	}()

	return func() (interface{}, error) {
		<-c
		return result, err
	}
}

Gideon Olayode

Pinned Loading

  1. 50-days-of-GoLang 50-days-of-GoLang Public

    A variety of real life use-cases functions written in Go

    Go

  2. spl-token-faucet spl-token-faucet Public

    Forked from credix-finance/spl-token-faucet

    JavaScript

  3. src-server src-server Public

    mobile app server built with deno typescript

    TypeScript

  4. turn-service turn-service Public

    Forked from pion/turn

    Pion TURN, an API for building TURN clients and servers

    Go

  5. 50-days-of-Ruby-on-rails 50-days-of-Ruby-on-rails Public

    Ruby

  6. security-scorecard security-scorecard Public

    A system that evaluates the security posture of an application or infrastructure based on various security criteria. 🚧🚧

    Go