mirror of
https://github.com/Stone-Red-Code/Stone-Red-Code.github.io.git
synced 2026-09-04 09:06:28 +02:00
Projects bow sync with my GH profile
- Projects bow sync with my GH profile - Updated about me
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.0 MiB |
@@ -1 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 210 107"><title>DVD logo</title><path d="M118.895,20.346c0,0-13.743,16.922-13.04,18.001c0.975-1.079-4.934-18.186-4.934-18.186s-1.233-3.597-5.102-15.387H81.81H47.812H22.175l-2.56,11.068h19.299h4.579c12.415,0,19.995,5.132,17.878,14.225c-2.287,9.901-13.123,14.128-24.665,14.128H32.39l5.552-24.208H18.647l-8.192,35.368h27.398c20.612,0,40.166-11.067,43.692-25.288c0.617-2.614,0.53-9.185-1.054-13.053c0-0.093-0.091-0.271-0.178-0.537c-0.087-0.093-0.178-0.722,0.178-0.814c0.172-0.092,0.525,0.271,0.525,0.358c0,0,0.179,0.456,0.351,0.813l17.44,50.315l44.404-51.216l18.761-0.092h4.579c12.424,0,20.09,5.132,17.969,14.225c-2.29,9.901-13.205,14.128-24.75,14.128h-4.405L161,19.987h-19.287l-8.198,35.368h27.398c20.611,0,40.343-11.067,43.604-25.288c3.347-14.225-11.101-25.293-31.89-25.293h-18.143h-22.727C120.923,17.823,118.895,20.346,118.895,20.346L118.895,20.346z"/><path d="M99.424,67.329C47.281,67.329,5,73.449,5,81.012c0,7.558,42.281,13.678,94.424,13.678c52.239,0,94.524-6.12,94.524-13.678C193.949,73.449,151.664,67.329,99.424,67.329z M96.078,85.873c-11.98,0-21.58-2.072-21.58-4.595c0-2.523,9.599-4.59,21.58-4.59c11.888,0,21.498,2.066,21.498,4.59C117.576,83.801,107.966,85.873,96.078,85.873z"/><polygon points="182.843,94.635 182.843,93.653 177.098,93.653 176.859,94.635 179.251,94.635 178.286,102.226 179.49,102.226 180.445,94.635 182.843,94.635"/><polygon points="191.453,102.226 191.453,93.653 190.504,93.653 187.384,99.534 185.968,93.653 185.013,93.653 182.36,102.226 183.337,102.226 185.475,95.617 186.917,102.226 190.276,95.617 190.504,102.226 191.453,102.226"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,46 @@
|
||||
const request = new XMLHttpRequest();
|
||||
const main = document.getElementById("projectslist");
|
||||
request.open('GET', 'https://api.github.com/search/repositories?q=user:stone-red-code');
|
||||
request.responseType = 'text';
|
||||
request.onload = function() {
|
||||
console.log(request.response);
|
||||
let jsonData = JSON.parse(request.response);
|
||||
for (let i = 0; i < jsonData.items.length; i++) {
|
||||
let item = jsonData.items[i];
|
||||
console.log(item.name);
|
||||
addItem(item);
|
||||
}
|
||||
};
|
||||
|
||||
function addItem (item)
|
||||
{
|
||||
let row = document.createElement("div");
|
||||
let col = document.createElement("div");
|
||||
let jumbotron = document.createElement("div");
|
||||
let heading = document.createElement("h2");
|
||||
let description = document.createElement("p");
|
||||
let repo = document.createElement("a");
|
||||
|
||||
row.classList.add("row");
|
||||
col.classList.add("col");
|
||||
jumbotron.classList.add("jumbotron");
|
||||
jumbotron.classList.add("p-5");
|
||||
|
||||
jumbotron.appendChild(heading);
|
||||
jumbotron.appendChild(description);
|
||||
jumbotron.appendChild(repo);
|
||||
col.appendChild(jumbotron);
|
||||
row.appendChild(col);
|
||||
|
||||
|
||||
let head = document.createTextNode(item.name);
|
||||
let desc = document.createTextNode(item.description);
|
||||
repo.innerHTML = "GitHub";
|
||||
repo.href = item.html_url;
|
||||
|
||||
heading.appendChild(head);
|
||||
description.appendChild(desc);
|
||||
|
||||
main.appendChild(row);
|
||||
}
|
||||
request.send();
|
||||
+1
-5
@@ -17,11 +17,7 @@
|
||||
<div class="row m-0 p-3 justify-content-start bg-dark ">
|
||||
<div class="col col-sm-4">
|
||||
<h3>About me</h3>
|
||||
<p class="text-white-50">Lorem ipsum dolor sit amet consectetur adipisicing elit. A quia nihil
|
||||
fugit<br>
|
||||
repellendus, aut officia libero. Magnam nobis, cumque sint ea laudantium sequi illum saepe
|
||||
harum<br>
|
||||
voluptas excepturi aspernatur eveniet?</p>
|
||||
<p class="text-white-50">I'm just a random guy who likes programming and watching anime.</p>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<h3>Languages & Tools:</h3>
|
||||
|
||||
+2
-96
@@ -22,102 +22,7 @@
|
||||
<!--end of Navigation bar-->
|
||||
|
||||
<!--Main-->
|
||||
<div class="container main">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="jumbotron p-5">
|
||||
<h2>Discord_Simple-Embed-Bot</h2>
|
||||
<p>A bot that makes it very simple to post custom embeds.</p>
|
||||
<ul style="list-style-type: none; padding: 0; margin: 0;">
|
||||
<li><a href="https://github.com/Stone-Red-Code/Discord_Simple-Embed-Bot">GitHub</a></li>
|
||||
<li><a
|
||||
href="https://discord.com/api/oauth2/authorize?client_id=808830741546008577&permissions=26624&scope=bot">Invite</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="jumbotron p-5">
|
||||
<h2>Stone_Red-C-Sharp-Utilities</h2>
|
||||
<p>Adds useful C# methods.</p>
|
||||
<br>
|
||||
<p>Example: .Print() (Prints all elements of array or list)</p>
|
||||
<ul style="list-style-type: none; padding: 0; margin: 0;">
|
||||
<li><a href="https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities">GitHub</a></li>
|
||||
<li><a href="https://www.nuget.org/packages/Stone_Red-C-Sharp-Utilities">NuGet</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="jumbotron p-5">
|
||||
<h2>Helfer V4</h2>
|
||||
<p>Helfer allows you to improve the looks of your Desktop. You can add useful elements to your
|
||||
desktop like a clock, a audio visualizer or even your own mods!</p>
|
||||
<ul style="list-style-type: none; padding: 0; margin: 0;">
|
||||
<li><a href="https://sites.google.com/view/helfer-desktop">Website</a></li>
|
||||
<li><a href="https://stone-red.itch.io/helferv4">Itch.io</a></li>
|
||||
<li><a href="https://discord.gg/euzy387dpu">Discord</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div id="carouselControls" class="carousel slide" data-ride="carousel">
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<img src="Images/HelferV4/fkIank.png" class="d-block w-100" alt="image">
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="Images/HelferV4/rf45TZ.png" class="d-block w-100" alt="image">
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="Images/HelferV4/Yq11s3.png" class="d-block w-100" alt="image">
|
||||
</div>
|
||||
</div>
|
||||
<a class="carousel-control-prev" href="#carouselControls" role="button" data-slide="prev">
|
||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||
<span class="sr-only">Previous</span>
|
||||
</a>
|
||||
<a class="carousel-control-next" href="#carouselControls" role="button" data-slide="next">
|
||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||
<span class="sr-only">Next</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="jumbotron p-5">
|
||||
<h2>SimpleWinformsAudioVisualizer</h2>
|
||||
<p>This is a small and simple side project i made. It displays an audio spectrum based on the
|
||||
system sounds.</p>
|
||||
<ul style="list-style-type: none; padding: 0; margin: 0;">
|
||||
<li><a href="https://github.com/Stone-Red-Code/SimpleWinformsAudioVisualizer">GitHub</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="jumbotron p-5">
|
||||
<h2>AutoBackup</h2>
|
||||
<p>AutoBackup is backup software that backs up your files at specific time intervals.
|
||||
</p>
|
||||
<ul style="list-style-type: none; padding: 0; margin: 0;">
|
||||
<li><a href="https://github.com/Stone-Red-Code/AutoBackup">GitHub</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container main" id="projectslist"></div>
|
||||
|
||||
<!--end Main-->
|
||||
|
||||
@@ -132,6 +37,7 @@
|
||||
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="Scripts/loadNavBarAndFooter.js"></script>
|
||||
<script src="Scripts/loadProjects.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user