Skip to content
View super-Colin's full-sized avatar

Block or report super-Colin

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 Loading

  1. A simple Go variadic fan-in function A simple Go variadic fan-in function
    1
    func FanInStringType(chans ...<-chan string) <-chan string { // This function is for string type channels, but can be changed easily
    2
    	newOutChannel := make(chan string)
    3
    	for _, channelIn := range chans { // For each channel passed in...
    4
    		go func(cOut chan string, cIn <-chan string) { // Start a go routine that will take in *a* channel and listen to it
    5
    			for val := range cIn { // Will keep going until the channel is closed by the sender
  2. coding-lessons coding-lessons Public

    Some lessons to help learning to code. Based in Python and starting from the absolute basics and working up from there.

    Python

  3. node-express-site node-express-site Public

    A site made with the express library for node.js

    CSS

  4. 100_days 100_days Public

    100 solid days of coding and learning something new!

    JavaScript

  5. sockets-chat sockets-chat Public

    A group instant messenger using web sockets to connect all user to the server at all times.

    JavaScript

  6. react-wptheme react-wptheme Public

    A 100% custom Wordpress theme integrated with React utilizing Wordpress' REST API for a single page front-end Wordpress experience

    SCSS