projet-javascript
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
Unable to calculate vocabulary similarity
Last synced: 8 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: Laurane1999
- Language: HTML
- Default Branch: master
- Size: 1.95 KB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Created 10 months ago
· Last pushed 10 months ago
Metadata Files
Citation
Owner
- Login: Laurane1999
- Kind: user
- Repositories: 1
- Profile: https://github.com/Laurane1999
Citation (citations/index.html)
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Générateur de Citations</title>
<style>
body { font-family: Arial; text-align: center; padding-top: 50px; }
p { font-style: italic; margin: 20px auto; max-width: 600px; }
</style>
</head>
<body>
<h1>Citation aléatoire</h1>
<button onclick="nouvelleCitation()">Nouvelle citation</button>
<p id="citation">Chargement...</p>
<script>
async function nouvelleCitation() {
const res = await fetch('https://dummyjson.com/quotes/random');
const data = await res.json();
document.getElementById('citation').textContent = `"${data.quote}" — ${data.author}`;
}
nouvelleCitation();
</script>
</body>
</html>
GitHub Events
Total
- Create event: 1
Last Year
- Create event: 1