Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Unable to calculate vocabulary similarity
Last synced: 7 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: rreho
  • Language: HTML
  • Default Branch: main
  • Size: 73.6 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 2
  • Releases: 0
Created almost 2 years ago · Last pushed 8 months ago
Metadata Files
Readme Citation

README.md

Riccardo Reho Portfolio

Owner

  • Login: rreho
  • Kind: user

Citation (citations.js)

fetch('publications.html')
  .then(res => res.text())
  .then(html => {
    const parser = new DOMParser();
    const doc = parser.parseFromString(html, 'text/html');
    const refItems = Array.from(doc.querySelectorAll('ol > li'));

    const refMap = {};
    refItems.forEach((li, i) => {
      if (li.id) refMap[li.id] = i + 1;
    });

    document.querySelectorAll('.citation').forEach(el => {
      const refId = el.dataset.ref;
      if (refMap[refId]) {
        el.innerHTML = `<a href="publications.html#${refId}" target="_blank">[${refMap[refId]}]</a>`;
      } else {
        el.textContent = `[?]`;
      }
    });
  });

GitHub Events

Total
  • Issues event: 2
  • Issue comment event: 4
  • Push event: 52
Last Year
  • Issues event: 2
  • Issue comment event: 4
  • Push event: 52