GithubHelp home page GithubHelp logo

profiles's Introduction

.github

Learning the magical literacy of the future

profiles's People

Contributors

serapath avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

profiles's Issues

AMA

{
    "username": "yesthisisjose",
    "name":"José Topete",
    "projects": [
    ],
    "background": [
        "English tutor",
        "Salesperson",
        "Social researcher 5 years"
    ],
    "interests":[
        "MEAN Full-stack",
        "blockchain",
        "mining",
        "remote work"
    ],
    "github": "https://github.com/yesthisisjose"
}
  

[feature] user activity feed from github

to retrieve all recent user activities of the projects a user lists in his config.json and display it as a list of links to click and open the user activity on github in a new tab

[feature] animated card gallery component

the searchbar filters and searches and does all kinds of stuff ... and then gives updated filtered data to the "gallery component" so that the user can see a nice result
...

example code from brainstorming:

var wizard_gallery = require('wizard_gallery')
var wizard_searchbar = require('wizard_searchbar')
var get_github_data = require('get-github-data')
var bel = require('bel')

// usage example
get_github_data(function (data) {
   var searchbar = wizard_searchbar(data)
   var gallery = wizard_gallery()
   

   // gallery.update(data)

   searchbar.on(gallery)
   
   var app = bel`
     <div class="wizardpage">
       ${searchbar.render()}
       ${gallery.render()}
     </div>
   `
   document.body.appendChild(app)
})

/**********************************************************************
  gallery.js (module internals) [example]
**********************************************************************/
module.exports = gallery

var _data
var dom

function gallery (data) {
   _data = data
   var api = {
     update: function (newdata) {
       _data = newdata
        var tmp = template(_data)
        dom.parentElement.replaceElement(tmp, dom)
        dom = tmp
     }
     render: function () {
        dom = template(_data)
        return dom
     }
   }
   return api
}
/**********************************************************************
  searchbar.js (module internals) [example]
**********************************************************************/
var _data = {}
var listteners = []
var searchbar = {
   on: function (gallery) {
      listeners.push(gallery)
   },
   trigger: function (data) {
     listeners.forEach(gallery => gallery.update(_data)
   }
}


input.addEventListener('change', function (event) {
   var userinput = event.target.value
   _data.selection = userinput
   searchbar.trigger(_data)
})

[feature] profile card

v1.0.0 (next)

http://wizardamigos.com/profiles/

TODOs for version 1.0.0

(if you want to work on an issue - just got to the issue and assign it to you 👍

[feature] profiles page design concept

I have a idea to improve the layout which could recognize everyone more easily. ( maybe add everyone's photo or other methods. )
And create a group view to see everyone in which group and do what project now.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.