Skip to content

Commit e9e80fa

Browse files
started to make the blog
1 parent 1984866 commit e9e80fa

File tree

6 files changed

+37
-3
lines changed

6 files changed

+37
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site
2+
Gemfile.lock

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gem "github-pages", group: :jekyll_plugins

README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

_config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
remote_theme: pages-themes/[email protected]
22
plugins:
3-
- jekyll-remote-theme # add this line to the plugins list if you already have one
3+
- jekyll-remote-theme
4+
5+
title: Free95 a FOSS windows alternative
6+
description: Free95 is a GPL 3.0 windows alternative

_posts/2025-03-14-goals-for-free95.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: post
3+
title: "Goals for Free95"
4+
date: 2025-03-14
5+
author: ThatOSDeveloper
6+
tags: "Goals"
7+
---
8+
9+
Free95 is custom OS that is meant to replicate the windows API while still having a different kernel, this project differs from other operating systems such as reactOS which attempts to replicate the NT kernel, but we plan to only replicate the API, with a custom kernel that handles all the stuff the API needs to function.
10+
11+
Version 1.0.0 will be released once we meet these goals (which may a while for a basic implementation of these)
12+
- Working user input (keyboard and mouse)
13+
- Working Windows API implementation
14+
- A simple explorer.exe implementation (explorer.exe handles the DE, and file explorer parts of windows so it should do that here too)

index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: default
3+
title: "Free95 a FOSS Windows Alternative"
4+
---
5+
6+
# Welcome to Free95
7+
8+
## Latest Posts
9+
10+
<ul>
11+
{% for post in site.posts %}
12+
<li>
13+
<a href="{{ post.url }}">{{ post.title }}</a> - {{ post.date | date: "%b %d, %Y" }}
14+
</li>
15+
{% endfor %}
16+
</ul>

0 commit comments

Comments
 (0)