alchemistsimulator.github.io

Alchemist website

https://github.com/alchemistsimulator/alchemistsimulator.github.io

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 links in README
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (0.2%) to scientific vocabulary
Last synced: 9 months ago · JSON representation ·

Repository

Alchemist website

Basic Info
  • Host: GitHub
  • Owner: AlchemistSimulator
  • Language: HTML
  • Default Branch: master
  • Size: 722 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 7
  • Open Issues: 0
  • Releases: 0
Created about 10 years ago · Last pushed 9 months ago
Metadata Files
License Citation

Owner

  • Name: Alchemist
  • Login: AlchemistSimulator
  • Kind: organization
  • Location: Cesena, Italy

A chemical inspired simulator for engineering complex ecosystems

Citation (citations.js)

async function fetchCitation(doi, style) {
  const url = `https://doi.org/${doi}`;
  const headers = {
    'Accept': style === 'bibtex' ? 'application/x-bibtex' : `text/x-bibliography; style=${style}`
  };
  const response = await fetch(url, { headers });
  return response.text();
}

function renderCitation(doi, style, elementId) {
  fetchCitation(doi, style).then(citation => {
    const container = document.getElementById(elementId);
    if (style === 'bibtex') {
      const pre = document.createElement('pre');
      pre.textContent = citation.trim()
          .replace(/,\s(\w+\s*=\s*)/g, ',\n  $1')
          .replace(/\s+}$/g, '\n}');
      container.appendChild(pre);
    } else {
      const link = document.createElement('a');
      link.href = `https://doi.org/${doi}`;
      link.innerHTML = citation;
      container.appendChild(link);
    }
  });
}

GitHub Events

Total
  • Push event: 76
Last Year
  • Push event: 76