Compare commits

..

No commits in common. "main" and "v1.2.1" have entirely different histories.
main ... v1.2.1

10 changed files with 1154 additions and 533 deletions

735
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -7,18 +7,6 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
<meta property="og:title" content="Jonas_Jones's Homepage">
<meta name="application-name" content="Jonas_Jones's Homepage">
<meta property="og:description" content="The Home of all creations by Jonas_Jones!">
<meta name="description" content="The Home of all creations by Jonas_Jones!">
<meta name="author" content="Jonas_Jones">
<meta property="og:image" content="/icon_800x800.png">
<meta property="og:url" content="./">
<meta name="url" content="./">
<meta property="og:type" content="website">
<meta name="theme-color" content="#008080">
%sveltekit.head%
</head>

View file

@ -1,5 +1,5 @@
<div class="footer">
<p>Website by Jonas_Jones 2021 - 2024</p>
<p>Website by Jonas_Jones 2021 - 2023</p>
</div>
<script>

View file

@ -1,21 +1,4 @@
<script>
import { onMount } from 'svelte';
import { afterNavigate } from '$app/navigation';
import { recordRequest } from './analytics';
// Function to handle navigation events
function handleNavigation() {
recordRequest();
}
// Call the analytics function on initial page load and after each navigation
onMount(() => {
handleNavigation();
afterNavigate(() => {
handleNavigation();
});
});
let showMenu = false;
function toggleMenu() {
@ -27,8 +10,7 @@
let navLinks = [
{ name: "Home", url: "/" },
{ name: "Projects", url: "/projects" },
{ name: "Docs", url: "https://docs.jonasjones.dev" },
{ name: "Blog", url: "https://blog.jonasjones.dev" },
{ name: "Wiki", url: "https://wiki.jonasjones.dev" },
// just removed this cause it bothered me
//{ name: 'For The Based™', url: '/based'},
//{ name: 'Status', url: '/status'},

View file

@ -128,10 +128,4 @@
display: flex;
align-items: center;
}
@media only screen and (max-width: 620px) {
.project-topline {
flex-direction: column;
}
}
</style>

View file

@ -1,34 +0,0 @@
// Function to record the request with analytics
export async function recordRequest() {
const analyticsData = {
timestamp: Date.now(),
domain: window.location.hostname,
method: 'GET', // Assuming the request method is GET; adjust as necessary
path: window.location.pathname,
};
console.log('Recording request:', analyticsData);
const ANALYTICS_URL = 'https://analytics.jonasjones.dev/requests/record/ipunknown';
const ANALYTICS_API_KEY = import.meta.env.VITE_ANALYTICS_API_KEY;
try {
const response = await fetch(ANALYTICS_URL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': ANALYTICS_API_KEY,
},
body: JSON.stringify(analyticsData),
});
if (response.ok) {
console.log('Request recorded successfully');
} else {
console.error('Failed to record request:', response.status, await response.text());
}
} catch (error) {
console.error('Error recording request:', error);
}
}

View file

@ -10,6 +10,7 @@
<title>Jonas_Jones</title>
<Padding />
<div class="image-wrapper">
<div class="card-front">
<!-- svelte-ignore a11y-img-redundant-alt -->
<img
src="/icon_800x800_transparent.webp"
@ -17,6 +18,11 @@
class="picture"
/>
</div>
<div class="card-back">
<!-- svelte-ignore a11y-img-redundant-alt -->
<img src="/root_logo.webp" alt="My Picture" class="picture" />
</div>
</div>
<div class="line">
<hr />
</div>
@ -25,7 +31,7 @@
</div>
<div class="social-media">
<div class="row">
<a href="https://github.com/JonasunderscoreJones"><i class="fab fa-github" /></a>
<a href="https://github.com/J-onasJones"><i class="fab fa-github" /></a>
<a href="https://www.youtube.com/channel/UCVIxvKBIMSMgurYS8pK7fSg"
><i class="fab fa-youtube" /></a
>

View file

@ -3,8 +3,6 @@
import NavBar from "../../components/NavBar.svelte";
import ParallaxBg from "../../components/ParallaxBg.svelte";
import Padding from "../../components/padding.svelte";
let audioSrc = "https://cdn.jonasjones.dev/mp3/Jonas_Jones-bigger-banger.mp3";
</script>
<ParallaxBg>
@ -62,10 +60,6 @@
Also, I like K-Pop.<br />
I uSe ArCh BtW.
</p>
<audio controls>
<source src={audioSrc} type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<h1>Useful Links</h1>
<a href="https://builds.jonasjones.dev">Old Builds</a><br />
<a href="https://wiki.jonasjones.dev">Wiki</a><br />

View file

@ -1,6 +1,4 @@
<script lang="ts">
import { onMount } from "svelte";
import FontAwesome from "../../components/FontAwesome.svelte";
import Footer from "../../components/Footer.svelte";
import NavBar from "../../components/NavBar.svelte";
@ -8,18 +6,15 @@
import Padding from "../../components/padding.svelte";
import ProjectComponent from "../../components/ProjectComponent.svelte";
//import projects from "./projects.json";
import projects from "./projects.json";
import "../../routes/+page.css";
let projects = [];
import { construct_svelte_component } from "svelte/internal";
var searchResults = projects.filter((project) => {
return project.visible === true;
});
let projects_loading = "block";
var searchtext = "";
var searchcategory = "";
var searchlanguage = "";
@ -65,18 +60,6 @@
);
});
}
// use onmount to fetch projects from https://cdn.jonasjones.dev/api/projects/projects.json
onMount(async () => {
const res = await fetch(
"https://cdn.jonasjones.dev/api/projects/projects.json"
);
const data = await res.json();
projects = data.slice(1); // remove first element as it is the last_update timestamp of the file
searchResults = projects.filter((project) => {
return project.visible === true;
});
projects_loading = "none";
});
</script>
<FontAwesome />
@ -144,7 +127,6 @@
>
</div>
<div class="project-container">
<h1 style="display:{projects_loading}">Loading...</h1>
{#each searchResults as project}
<div class="project">
<ProjectComponent {project} />
@ -165,7 +147,7 @@
.project-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(530px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 20px;
width: 100%;
}
@ -176,7 +158,7 @@
overflow: hidden;
cursor: pointer;
border: 2px solid var(--project-border-color);
min-width: 530px;
min-width: 200px;
background-color: var(--background-color);
}
@ -213,9 +195,5 @@
.project-container {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.project {
min-width: 200px;
}
}
</style>

View file

@ -0,0 +1,824 @@
[
{
"title": "",
"description": "",
"status": "",
"statuscolor": "",
"categories": [
""
],
"languages": {
"": 0
},
"gh_api": "",
"version": "",
"backgroud": "",
"links": {
"GH": "",
"WB": "",
"MR": ""
},
"visible": "",
"last_update": ""
},
{
"title": "Bash Command Alias Editor",
"description": "This program helps you to create and edit command aliases on the Bash shell",
"status": "discontinued",
"statuscolor": "gray",
"categories": [
"tools"
],
"languages": {
"Python": 2558
},
"gh_api": "J-onasJones/BashCommandAliasEditor",
"version": "2.0.1",
"backgroud": "/bashcmdaliaseditor.png",
"links": {
"GH": "https://github.com/J-onasJones/BashCommandAliasEditor"
},
"visible": true,
"last_update": 1663678509
},
{
"title": "Better ConsoleMC",
"description": "A more controlable and safer successor to the ConsoleMC mod",
"status": "release",
"statuscolor": "green",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 26624
},
"gh_api": "J-onasJones/BetterConsoleMC",
"version": "1.0.0",
"backgroud": "/betterconsolemc.png",
"links": {
"GH": "https://github.com/J-onasJones/BetterConsoleMC",
"MR": "https://modrinth.com/mod/betterconsolemc",
"CF": "https://www.curseforge.com/minecraft/mc-mods/betterconsolemc"
},
"visible": true,
"last_update": 1695758182
},
{
"title": "Better Simple Config",
"description": "An upgrade of magistermaks's fabric-simplelibs simple-config system with MC Mod integration",
"status": "release",
"statuscolor": "green",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"forge",
"quilt",
"lib"
],
"languages": {
"Java": 9776
},
"gh_api": "J-onasJones/BetterSimpleConfig",
"version": "1.0",
"backgroud": "/bettersimpleconfig.png",
"links": {
"GH": "https://github.com/J-onasJones/BetterSimpleConfig"
},
"visible": true,
"last_update": 1670967961
},
{
"title": "ConsoleMC",
"description": "A mod that allows console commands to be executed over the ingame Minecraft chat",
"status": "release",
"statuscolor": "green",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 14706
},
"gh_api": "J-onasJones/ConsoleMC",
"version": "0.1.1",
"backgroud": "/consolemc.png",
"links": {
"GH": "https://github.com/J-onasJones/ConsoleMC",
"MR": "https://modrinth.com/mod/consolemc",
"CF": "https://www.curseforge.com/minecraft/mc-mods/consolemc"
},
"visible": true,
"last_update": 1695316595
},
{
"title": "DayZ Linux GUI Launcher",
"description": "DayZ Linux GUI Launcher",
"status": "release",
"statuscolor": "green",
"categories": [
"tools",
"game"
],
"languages": {
"Rust": 25928,
"Shell": 8803
},
"gh_api": "J-onasJones/dayz-linux-gui-launcher",
"version": "0.1.0",
"backgroud": "/dayzlauncher.png",
"links": {
"GH": "https://github.com/J-onasJones/dayz-linux-gui-launcher"
},
"visible": true,
"last_update": 1682450521
},
{
"title": "Image Converter",
"description": "A Python based Image converter supporting a bunch of image formats.",
"status": "discontinued",
"statuscolor": "gray",
"categories": [
"tools",
"bazinga"
],
"languages": {
"Python": 8729
},
"gh_api": "J-onasJones/ImageConverter",
"version": "ImageConerter-1.2",
"backgroud": "/imageconverter.png",
"links": {
"GH": "https://github.com/J-onasJones/ImageConverter"
},
"visible": true,
"last_update": 1642718415
},
{
"title": "J2 Technologies",
"description": "A lua based Whiteboard program inspired by i3-technologies",
"status": "discontinued",
"statuscolor": "gray",
"categories": [
"tools",
"bazinga"
],
"languages": {
"Lua": 100
},
"gh_api": "J-onasJones/j2-technologies",
"version": "0.2.1ALPHA",
"backgroud": "/j2tech.png",
"links": {
"GH": "https://github.com/J-onasJones/j2-technologies"
},
"visible": true,
"last_update": 1642248415
},
{
"title": "Jonas_Jones API",
"description": "api used for my website",
"status": "planned",
"statuscolor": "yellow",
"categories": [
"api",
"tools"
],
"languages": {
"JavaScript": 0
},
"gh_api": "J-onasJones/jonas_jones-api",
"version": "---",
"backgroud": "/jjapi.png",
"links": {
"GH": "https://github.com/J-onasJones/jonas_jones-api"
},
"visible": false,
"last_update": 1677884400
},
{
"title": "MC Webserver",
"description": "A simple webserver that runs alongside the Minecraft Server",
"status": "release",
"statuscolor": "green",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 51381
},
"gh_api": "J-onasJones/McWebserver",
"version": "0.3.1",
"backgroud": "/mcwebserver.png",
"links": {
"GH": "https://github.com/J-onasJones/McWebserver",
"MR": "https://modrinth.com/mod/mcwebserver",
"CF": "https://www.curseforge.com/minecraft/mc-mods/mcwebserver"
},
"visible": true,
"last_update": 1695459555
},
{
"title": "MC Webserver Forge",
"description": "A simple webserver that runs alongside the Minecraft Server (Forge version).",
"status": "discontinued",
"statuscolor": "gray",
"categories": [
"minecraft",
"mcmodding",
"forge"
],
"languages": {
"Java": 24337
},
"gh_api": "J-onasJones/McWebserver-forge",
"version": "0.2",
"backgroud": "/mcwebserver.png",
"links": {
"GH": "https://github.com/J-onasJones/McWebserver-forge",
"MR": "https://modrinth.com/mod/mcwebserver",
"CF": "https://www.curseforge.com/minecraft/mc-mods/mcwebserver"
},
"visible": true,
"last_update": 1675010407
},
{
"title": "Make ZIP less compact",
"description": "With this program You will be able to make any zip archive less compact AND make it safe without the need of any encryption what soever",
"status": "discontinued",
"statuscolor": "gray",
"categories": [
"tools",
"bazinga"
],
"languages": {
"Python": 100
},
"gh_api": "J-onasJones/Make-ZIP-less-compact",
"version": "1.1",
"backgroud": "/mkzplsscmpct.png",
"links": {
"GH": "https://github.com/J-onasJones/Make-ZIP-less-compact"
},
"visible": true,
"last_update": 1641250800
},
{
"title": "Markdown Compiler",
"description": "A cheap compiler to turn markdown into html/svelte",
"status": "beta",
"statuscolor": "orange",
"categories": [
"tools"
],
"languages": {
"Python": 3798,
"Shell": 189
},
"gh_api": "J-onasJones/Markdown-Compiler",
"version": "0.1",
"backgroud": "/j2tech.png",
"links": {
"GH": "https://github.com/J-onasJones/Markdown-Compiler"
},
"visible": true,
"last_update": 1694793692
},
{
"title": "Microcraft",
"description": "A Minecraft mod that allows for Microcontroller and Singleboard computer control",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 55421
},
"gh_api": "J-onasJones/Microcraft",
"version": "0.1+alpha1",
"backgroud": "/microcraft.png",
"links": {
"GH": "https://github.com/J-onasJones/Microcraft"
},
"visible": true,
"last_update": 1687716436
},
{
"title": "Minecraft Server Status",
"description": "A Python based program that displays Your Minecraft Server's Status Infos",
"status": "release",
"statuscolor": "green",
"categories": [
"minecraft",
"tools"
],
"languages": {
"Python": 5350
},
"gh_api": "J-onasJones/Minecraft-server-Status",
"version": "1.3",
"backgroud": "/mcserverstatus.png",
"links": {
"GH": "https://github.com/J-onasJones/Minecraft-server-Status"
},
"visible": true,
"last_update": 1693493323
},
{
"title": "Moddah",
"description": "A cli tool that allows for easy client and server installation of the FabricMC modloader for Minecraft",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"tools"
],
"languages": {
"Rust": 4062,
"Shell": 580
},
"gh_api": "J-onasJones/moddah",
"version": "0.1+alpha1",
"backgroud": "/moddah.png",
"links": {
"GH": "https://github.com/J-onasJones/moddah"
},
"visible": true,
"last_update": 1666039028
},
{
"title": "Mystery Core Mod",
"description": "The core mod of all Mystery Mods",
"status": "planned",
"statuscolor": "yellow",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 100
},
"gh_api": "J-onasJones/Mystery-core-mod",
"version": "---",
"backgroud": "/mysterymod.png",
"links": {
"GH": "https://github.com/J-onasJones/Mystery-core-mod"
},
"visible": false,
"updated": 1641337200
},
{
"title": "Mystery Dimensions",
"description": "A mod that is port of the MysteryMod mod-family with the focus of enhancing and adding Dimensions",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 100
},
"gh_api": "J-onasJones/MysteryDimensions",
"version": "0.1+alpha1",
"backgroud": "/mysterymod.png",
"links": {
"GH": "https://github.com/J-onasJones/MysteryDimensions"
},
"visible": false,
"last_update": 1661464800
},
{
"title": "Mystery Dungeons",
"description": "A mod that is part of the MysteryMod mod-family and focuses on Dungeons",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 100
},
"gh_api": "J-onasJones/MysteryDungeons",
"version": "0.1+alpha1",
"backgroud": "/mysterymod.png",
"links": {
"GH": "https://github.com/J-onasJones/MysteryDungeons"
},
"visible": false,
"last_update": 1661464800
},
{
"title": "MysteryMod",
"description": "The base mod of the Mystery Mod mod-family. It includes the Mystery-API that is required for all other Mystery Mods to work",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 1243
},
"gh_api": "J-onasJones/MysteryMod",
"version": "0.1+alpha1",
"backgroud": "/mysterymod.png",
"links": {
"GH": "https://github.com/J-onasJones/MysteryMod"
},
"visible": true,
"last_update": 1682021093
},
{
"title": "MysteryRPG",
"description": "An RPG related mod for the Mystery Mod mod-family. Adds content containing what the name implies.",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 100
},
"gh_api": "J-onasJones/MysteryRPG",
"version": "0.1+alpha1",
"backgroud": "/mysterymod.png",
"links": {
"GH": "https://github.com/J-onasJones/MysteryRPG"
},
"visible": false,
"last_update": 1658872800
},
{
"title": "Not Enough Cursedness",
"description": "A Minecraft mod introducing every little bit of cursed items/behavior into the game",
"status": "release",
"statuscolor": "green",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 15096
},
"gh_api": "J-onasJones/NotEnoughCursedness",
"version": "0.2",
"backgroud": "/notenoughcursedness.png",
"links": {
"GH": "https://github.com/J-onasJones/NotEnoughCursedness",
"MR": "https://modrinth.com/mod/not-enough-cursedness",
"CF": "https://www.curseforge.com/minecraft/mc-mods/not-enough-cursedness"
},
"visible": true,
"last_update": 1695317123
},
{
"title": "PI Server Rack",
"description": "A system that allows Monitoring of Raspberry PI('s) and it's running Minecraft Server(s)",
"status": "dev",
"statuscolor": "purple",
"categories": [
"tools"
],
"languages": {
"C++": 40828,
"Rust": 3278,
"C": 130
},
"gh_api": "J-onasJones/PI-server-rack",
"version": "0.1+alpha1",
"backgroud": "/pi-server-rack.png",
"links": {
"GH": "https://github.com/J-onasJones/PI-server-rack"
},
"visible": true,
"last_update": 1662319681
},
{
"title": "PinBoardBot",
"description": "A discord bot that sends messages that you want to pin in a dedicated channel to avoid the pinned-messages limit per text-channel",
"status": "release",
"statuscolor": "green",
"categories": [
"bot",
"dcbot"
],
"languages": {
"JavaScript": 4282
},
"gh_api": "J-onasJones/PinBoardBot",
"version": "0.1",
"backgroud": "/pinboardbot.png",
"links": {
"GH": "https://github.com/J-onasJones/PinBoardBot"
},
"visible": true,
"last_update": 1662197814
},
{
"title": "PyTerm2D",
"description": "A 2d Python module for easier terminal object rendering",
"status": "planned",
"statuscolor": "yellow",
"categories": [
"lib"
],
"languages": {
"Python": 100
},
"gh_api": "J-onasJones/pyterm2d",
"version": "---",
"backgroud": "/pyterm2d.png",
"links": {
"GH": "https://github.com/J-onasJones/pyterm2d"
},
"visible": false,
"last_update": 1668034800
},
{
"title": "QR Generator",
"description": "A QR code generator written in rust",
"status": "dev",
"statuscolor": "purple",
"categories": [
"lib",
"tools"
],
"languages": {
"Rust": 100
},
"gh_api": "J-onasJones/Qr-generator",
"version": "---",
"backgroud": "/qrgen.png",
"links": {
"GH": "https://github.com/J-onasJones/Qr-generator"
},
"visible": false,
"last_update": 1669935600
},
{
"title": "Resourcepack Editor",
"description": "A python based Editor for Minecraft Resourcepacks. It was designed to help with the structure of Resourcepacks when creating them",
"status": "discontinued",
"statuscolor": "gray",
"categories": [
"minecraft",
"tools",
"bazinga"
],
"languages": {
"Python": 100
},
"gh_api": "J-onasJones/Resourcepack-Editor",
"version": "0.1+alpha1",
"backgroud": "/rp-editor.png",
"links": {
"GH": "https://github.com/J-onasJones/Resourcepack-Editor"
},
"visible": false,
"last_update": 1642114800
},
{
"title": "SiMP Resourcepack",
"description": "The serverside resourcepack for SiMP",
"status": "release",
"statuscolor": "green",
"categories": [
"minecraft"
],
"languages": {},
"gh_api": "J-onasJones/simp-resourcepack",
"version": "1.0",
"backgroud": "/simp-rp.png",
"links": {
"GH": "https://github.com/J-onasJones/simp-resourcepack"
},
"visible": true,
"last_update": 1643477940
},
{
"title": "SpotifyMC",
"description": "Spotify Integration for Minecraft. Allows ingame control over music",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 1291
},
"gh_api": "J-onasJones/SpotifyMC",
"version": "0.1+alpha1",
"backgroud": "/spotifymc.png",
"links": {
"GH": "https://github.com/J-onasJones/SpotifyMC"
},
"visible": false,
"last_update": 1651432501
},
{
"title": "Svelte Markdown Wiki",
"description": "A Template of a Wiki for Pages written in Markdown in SvelteKit",
"status": "release",
"statuscolor": "green",
"categories": [
"webdev",
"template"
],
"languages": {
"Svelte": 2675,
"JavaScript": 1505,
"CSS": 395,
"HTML": 329
},
"gh_api": "J-onasJones/SvelteMarkdownWiki",
"version": "1.0",
"backgroud": "/homepage.png",
"links": {
"GH": "https://github.com/J-onasJones/SvelteMarkdownWiki"
},
"visible": true,
"last_update": 1695042172
},
{
"title": "SyncMod",
"description": "A mod that sync's your mods with the ones from the server of your choice.",
"status": "dev",
"statuscolor": "purple",
"categories": [
"minecraft",
"mcmodding",
"fabric",
"quilt"
],
"languages": {
"Java": 21878
},
"gh_api": "J-onasJones/SyncMod",
"version": "0.1+alpha1",
"backgroud": "/syncmod.png",
"links": {
"GH": "https://github.com/J-onasJones/SyncMod"
},
"visible": false,
"last_update": 1658851640
},
{
"title": "The Bobby Car Game",
"description": "A multiplayer racing game around bobby cars",
"status": "planned",
"statuscolor": "yellow",
"categories": [
"game"
],
"languages": {
"Godot": 100
},
"gh_api": "J-onasJones/TheBobbycarGame",
"version": "---",
"backgroud": "/bobbycargame.png",
"links": {
"GH": "https://github.com/J-onasJones/TheBobbycarGame"
},
"visible": false,
"last_update": 1666562400
},
{
"title": "Website",
"description": "My website at https://jonasjones.dev",
"status": "release",
"statuscolor": "green",
"categories": [
"webdev",
"website"
],
"languages": {
"Svelte": 37754,
"CSS": 5297,
"JavaScript": 1577,
"HTML": 406
},
"gh_api": "J-onasJones/jonasjones.dev",
"version": "1.2.0",
"backgroud": "/homepage.png",
"links": {
"GH": "https://github.com/J-onasJones/jonasjones.dev"
},
"visible": true,
"last_update": 1696182914
},
{
"title": "Website V1",
"description": "The repository for my old homepage at https://old.jonasjones.me",
"status": "discontinued",
"statuscolor": "gray",
"categories": [
"webdev",
"website"
],
"languages": {
"HTML": 234599,
"CSS": 39007
},
"gh_api": "J-onasJones/Website-v1",
"version": "1.0",
"backgroud": "/oldwebsite.png",
"links": {
"GH": "https://github.com/J-onasJones/Website-v1",
"WB": "https://old.jonasjones.me"
},
"visible": true,
"last_update": 1694470228
},
{
"title": "Winception",
"description": "A 2D explorer game that let's you expierience past Operating System of the Windows and Linux family",
"status": "dev",
"statuscolor": "purple",
"categories": [
"game"
],
"languages": {
"HTML": 100,
"JavaScript": 100,
"CSS": 100
},
"gh_api": "J-onasJones/Winception",
"version": "0.1+alpha1",
"backgroud": "/winception.png",
"links": {
"GH": "https://github.com/J-onasJones/Winception"
},
"visible": false,
"last_update": 1661464800
},
{
"title": "Windows Bloatware Remover",
"description": "A tool that allows for removal of all Preinstalled Apps on Windows that can't be removed by Windows, such as Microsoft Edge",
"status": "beta",
"statuscolor": "orange",
"categories": [
"tools"
],
"languages": {
"Python": 26637
},
"gh_api": "J-onasJones/WindowsBloatwareRemover",
"version": "0.1.2",
"backgroud": "/bloatremover.png",
"links": {
"GH": "https://github.com/J-onasJones/WindowsBloatwareRemover"
},
"visible": true,
"last_update": 1661781655
},
{
"title": "Windows Info Overlay",
"description": "A highly configurable overlay that displays system infos",
"status": "dev",
"statuscolor": "purple",
"categories": [
"tools"
],
"languages": {
"Rust": 100
},
"gh_api": "J-onasJones/windows-info-overlay",
"version": "---",
"backgroud": "/winoverlay.png",
"links": {
"GH": "https://github.com/J-onasJones/windows-info-overlay"
},
"visible": false,
"last_update": 1673737200
}
]