Skip to content
View abhay-khandwekar's full-sized avatar
:octocat:
:octocat:
  • Vivo Collaboration Solutions Pvt. Ltd.
  • India
Block or Report

Block or report abhay-khandwekar

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

Pinned

  1. react-hooka react-hooka Public

    "react-hooka" is React-hook based state management library. "react-hooka" supports both synchronous and queued-asynchronous (FIFO) actions. All asynchronous state update operations are guaranteed t…

    JavaScript

  2. A Tour of Go - Exercise: Fibonacci c... A Tour of Go - Exercise: Fibonacci closure - Implementation of a fibonacci function that returns a function (a closure) that returns successive fibonacci numbers (0, 1, 1, 2, 3, 5, ...)
    1
    package main
    2
    
                  
    3
    import "fmt"
    4
    
                  
    5
    // fibonacci is a function that returns
  3. A Tour of Go - Exercise: Loops and F... A Tour of Go - Exercise: Loops and Functions - Square Root implementation based on "Newton's method"
    1
    package main
    2
    
                  
    3
    import (
    4
    	"fmt"
    5
    	"math"
  4. A Tour of Go - Exercise: Readers - I... A Tour of Go - Exercise: Readers - Implement a Reader type that emits an infinite stream of the ASCII character 'A'
    1
    package main
    2
    
                  
    3
    import "golang.org/x/tour/reader"
    4
    
                  
    5
    type MyReader struct{}