portfolio
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: lakamada
- Language: HTML
- Default Branch: master
- Size: 533 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: lakamada
- Kind: user
- Repositories: 1
- Profile: https://github.com/lakamada
Citation (citation.html)
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Citations & Inspirations - Tracy Maurice</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: #f0f4f8;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 30px;
}
.quote-container {
background: white;
border-radius: 15px;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
max-width: 600px;
width: 100%;
overflow: hidden;
text-align: center;
}
.quote-image {
width: 100%;
height: 250px;
object-fit: cover;
}
.quote-text {
padding: 25px;
}
blockquote {
font-size: 1.4rem;
font-style: italic;
color: #333;
margin: 0 0 10px;
}
.author {
font-size: 1rem;
color: #555;
}
.new-btn {
background: #0078d4;
color: white;
border: none;
padding: 12px 20px;
font-size: 1rem;
margin: 20px 0;
cursor: pointer;
border-radius: 8px;
transition: background 0.3s ease;
}
.new-btn:hover {
background: #005fa3;
}
</style>
</head>
<body>
<div class="quote-container">
<img src="https://picsum.photos/600/250?random=1" alt="Image aléatoire" class="quote-image" id="quoteImage" />
<div class="quote-text">
<blockquote id="quote">"Le code est poésie."</blockquote>
<div class="author" id="author">– Tracy Maurice</div>
<button class="new-btn" onclick="loadQuote()">Nouvelle citation</button>
</div>
</div>
<script>
const quoteEl = document.getElementById("quote");
const authorEl = document.getElementById("author");
const imageEl = document.getElementById("quoteImage");
async function loadQuote() {
try {
const res = await fetch('https://dummyjson.com/quotes/random');
const data = await res.json();
quoteEl.textContent = `"${data.quote}"`;
authorEl.textContent = `– ${data.author}`;
const randomNum = Math.floor(Math.random() * 1000);
imageEl.src = `https://picsum.photos/600/250?random=${randomNum}`;
} catch (err) {
quoteEl.textContent = `"Une erreur s'est produite..."`;
authorEl.textContent = "– Inconnu";
}
}
</script>
</body>
</html>
GitHub Events
Total
- Member event: 1
- Create event: 1
Last Year
- Member event: 1
- Create event: 1