Skip to content

Commit

Permalink
add github pages stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
bozp-pzob committed Jan 22, 2025
1 parent baaaa0c commit 39553c0
Show file tree
Hide file tree
Showing 2 changed files with 128 additions and 0 deletions.
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JSON Viewer</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; }
pre { background-color: #f4f4f4; padding: 15px; border: 1px solid #ddd; }
</style>
</head>
<body>
<h1>GitHub Actions JSON Viewer</h1>
<select id="jsonSelector"></select>
<pre id="jsonDisplay">Select a file to view JSON content...</pre>
<script>
async function fetchJSONFiles() {
const response = await fetch('./'); // Adjust this path if files are in subfolders
const text = await response.text();
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(text, 'text/html');
const files = Array.from(htmlDoc.querySelectorAll('a')).map(link => link.href).filter(link => link.endsWith('.json'));

const selector = document.getElementById('jsonSelector');
files.forEach(file => {
const option = document.createElement('option');
option.value = file;
option.textContent = file.split('/').pop();
selector.appendChild(option);
});

selector.addEventListener('change', async (e) => {
const file = e.target.value;
const jsonContent = await (await fetch(file)).json();
document.getElementById('jsonDisplay').textContent = JSON.stringify(jsonContent, null, 2);
});
}

fetchJSONFiles();
</script>
</body>
</html>
86 changes: 86 additions & 0 deletions json/01-20-2025.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
[
{
"title": "ElizaOS Plugin and Tools Development",
"content": [
{
"text": "Development updates highlight significant progress on ElizaOS plugins and tools.",
"sources": [
"https://github.com/elizaOS/elizaos/commit/5514e08f3c896f4e4df6e1bb4e08643e5e342bc5",
"https://github.com/elizaOS/elizaos/pull/2549",
"https://github.com/elizaOS/elizaos/commit/8cdcb97e9e892f2180f3e8155c93839b27e9a062",
"https://github.com/elizaOS/elizaos/commit/02a4b61570b7fc54d21a74651a50ecef1103b64c"
],
"images": [
"https://avatars.githubusercontent.com/u/188117230?u=424cd5b834584b3799da288712b3c4158c8032a1&v=4"
],
"videos": []
}
]
},
{
"title": "Technical and Documentation Updates",
"content": [
{
"text": "Additions to the technical documentation and README files for multiple projects enhance understanding and usability.",
"sources": [
"https://github.com/elizaOS/elizaos/pull/2517",
"https://github.com/elizaOS/elizaos/commit/1c3da82d3ee413ac3a9840ffe6f7867a5f60e4f1",
"https://github.com/elizaOS/elizaos/pull/2542",
"https://github.com/elizaOS/elizaos/commit/adace37d4d8c8ada3679d74bdaee331518e51cc9"
],
"images": [
"https://avatars.githubusercontent.com/u/22633385?u=29190f6c8aed91fa9574b064a9995f1e49944acf&v=4",
"https://avatars.githubusercontent.com/u/19585240?u=4a4465656050747dee79f5f97a8b61cf2fbc97e1&v=4"
],
"videos": []
}
]
},
{
"title": "Market Conditions",
"content": [
{
"text": "Market analysis reveals fluctuations in key cryptocurrencies, with Bitcoin seeing notable increases and Solana facing a decline.",
"sources": [
"https://www.coingecko.com/en/coins/bitcoin",
"https://www.coingecko.com/en/coins/ethereum",
"https://www.coingecko.com/en/coins/solana",
"https://dexscreener.com/solana/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC"
],
"images": [],
"videos": []
}
]
},
{
"title": "Community Engagement and Events",
"content": [
{
"text": "ElizaOS community members and partners make exciting announcements, including partnerships and important events.",
"sources": [
"https://twitter.com/ai16zdao/status/1881391270230405239",
"https://twitter.com/ai16zdao/status/1881413622288810351",
"https://github.com/elizaOS/elizaos/pull/2564"
],
"images": [
"https://pbs.twimg.com/media/GhdSW_makAAgdOm.jpg"
],
"videos": []
}
]
},
{
"title": "System and Infrastructure Improvements",
"content": [
{
"text": "System enhancements implemented for better efficiency and functionality across various domains within the ElizaOS ecosystem.",
"sources": [
"https://github.com/elizaOS/elizaos/commit/a5dccdb30d1f204ab5567763620e25a1e86c81a7",
"https://github.com/elizaOS/elizaos/commit/9c84c37cdaf2b219e6782f9275b5816052243f94"
],
"images": [],
"videos": []
}
]
}
]

0 comments on commit 39553c0

Please sign in to comment.