Pinned Loading
-
A simple Go variadic fan-in function
A simple Go variadic fan-in function 1func FanInStringType(chans ...<-chan string) <-chan string { // This function is for string type channels, but can be changed easily
2newOutChannel := make(chan string)
3for _, channelIn := range chans { // For each channel passed in...
4go func(cOut chan string, cIn <-chan string) { // Start a go routine that will take in *a* channel and listen to it
5for val := range cIn { // Will keep going until the channel is closed by the sender
-
coding-lessons
coding-lessons PublicSome lessons to help learning to code. Based in Python and starting from the absolute basics and working up from there.
Python
-
-
-
sockets-chat
sockets-chat PublicA group instant messenger using web sockets to connect all user to the server at all times.
JavaScript
-
react-wptheme
react-wptheme PublicA 100% custom Wordpress theme integrated with React utilizing Wordpress' REST API for a single page front-end Wordpress experience
SCSS
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.