Giter Club home page Giter Club logo

resume's Introduction

A command line resume

How to : run it

    npm install
    ./less.sh
    npm start

This work was made by me and Yohann Celerien

You can see mine > here <

This project contain a shell like script (emulate basic programs and builtin)

file structure

The filesystem structure is emulated thanks to public/directory.json

Example, this file :

{
  "name": "",
  "content": [
    {
      "name": "bin",
      "content": [
        {
          "name": "ls",
          "permission": 7,
          "desc": "list directory"
        }
      ]
    }
  ]
}

will give you this

/
├── bin
   └─── ls
  • bin object contain "content" property, this is a folder
  • ls object doesn't contain "content" property, this is an executable

So you can type

$> /bin/ls

This will execute ls

Executables

ls is defined in public/directory.json, but is definition as a program is in public/javascript/binairies.js

This file contain a global object, named binairies, and contain multiple method, each os these represent a binary, like ls

This object permit to do this

var ls_binary = binairies["ls"]; //Retrieve ls function

ls_binary("/bin") //Is like 'ls /bin'

Disclaimer

  • This project is not really responsible (you can use it on mobile at your own risk)
  • This project contain bugs
  • This project is a web project, so it will never end :)

resume's People

Contributors

navispeed avatar yosh971 avatar

Watchers

 avatar  avatar

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.