Coder Social home page Coder Social logo

portfolio's Introduction

Dependences

Node : sudo apt-get install nodejs

Premier démarrage

A la racine du projet, pour installer les packages :

npm install

Pour démarrer le serveur :

npm start

Ajout de documents dans le portfolio

Créer un fichier dans app/entries/myentry.ts.

import * as common from './common'

let entry : common.Entry = {
    name: "Sigfox LPWAN phy and mac analysis",
    experienceType: common.ExperienceType.Academic,
    category: "Wireless Networks",
    
    // Ici les tags correspondant à cette entrée.
    // Il peut s'agir de compétences de la matrice de compétence,
    // ou de mots clés.
    tags: ["Wireless Networks", "Sigfox", "LORA", "LPWAN"],

    // ----------------------------------------------------------
    // Ici, un résumé du travail présenté.
    // On peut y insérer du *markdown*. 
    // ----------------------------------------------------------
    abstract: `
# Titre
blablabla
## Sous Titre
blablablabla
`,
    // ----------------------------------------------------------
    // Ici, c'est la phase d'analyse : les enseignements retirés
    // de l'expérience. 
    // C'est l'argumentaire qui prouve qu'on a acquis certaines 
    // compétences de la matrice.
    // On peut y insérer du *markdown*.
    // ----------------------------------------------------------
    conclusion: `
# Titre
bmabmabmabma
## SOus Titre
balbablababl
`,

    // ----------------------------------------------------------
    // Ici, Le contenu de l'entrée du portfolio. 
    // Cela peut être un document PDF, markdown ou un simple lien.
    // ----------------------------------------------------------
    content: {
        contentType: common.ContentType.PDFDocumentURL,
        contentValue: 
        `static/sigfox-analysis.pdf`
    }
};

common.library.entries.push(entry)

Pour ajouter cette entrée au portfolio, il suffit d'importer le fichier dans àpp/entries/index.ts :

import './myentry'

Contenu des documents

Document PDF

Permet d'intégrer un lecteur PDF embarqué dans la page de contenu :

    content: {
        contentType: common.ContentType.PDFDocumentURL,
        contentValue: 
        `static/sigfox-analysis.pdf`
    }

Document markdown

Permet d'intégrer un document markdown embarqué dans la page de contenu.

    content: {
        contentType: common.ContentType.RawMarkdownDocumentURL,
        contentValue: 
`
# Du markdown 
`
    }

Lien simple

    content: {
        contentType: common.ContentType.Link,
        contentValue: 
        `http://example.com`
    }

portfolio's People

Contributors

scriptopathe avatar papay0 avatar

Watchers

James Cloos 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.