New gru devlog

This commit is contained in:
g1n 2021-08-01 16:13:38 +00:00
parent ff2199115f
commit 772b8d28ae
9 changed files with 233 additions and 21 deletions

View File

@ -15,6 +15,10 @@
</div></div></div>
<div id="divbody"><div class="content">
<h3>all posts</h3>
<h4 class='allposts_header'>August 2021</h4>
<ul>
<li><a href="./gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">GRU DevLog 1 - gros sources published and add wc to grutils</a> &mdash; August 01, 2021</li>
</ul>
<h4 class='allposts_header'>July 2021</h4>
<ul>
<li><a href="./gru-devlog-week-0---grsh-grutils-and-start-of-gros.html">GRU DevLog Week 0 - grsh, grutils and start of gros</a> &mdash; July 25, 2021</li>

View File

@ -18,10 +18,10 @@
<ul>
<li><a href="tag_bbs.html">bbs</a> &mdash; 1 post</li>
<li><a href="tag_gemini.html">gemini</a> &mdash; 1 post</li>
<li><a href="tag_gros.html">gros</a> &mdash; 1 post</li>
<li><a href="tag_gros.html">gros</a> &mdash; 2 posts</li>
<li><a href="tag_grsh.html">grsh</a> &mdash; 1 post</li>
<li><a href="tag_gru.html">gru</a> &mdash; 1 post</li>
<li><a href="tag_grutils.html">grutils</a> &mdash; 1 post</li>
<li><a href="tag_gru.html">gru</a> &mdash; 2 posts</li>
<li><a href="tag_grutils.html">grutils</a> &mdash; 2 posts</li>
<li><a href="tag_monochrome.html">monochrome</a> &mdash; 1 post</li>
<li><a href="tag_protocol.html">protocol</a> &mdash; 1 post</li>
<li><a href="tag_spartan.html">spartan</a> &mdash; 1 post</li>

View File

@ -2,10 +2,39 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel><title>~g1n's blog</title><link>https://xhec.one/~g1n/index.html</link>
<description>~g1n's blog</description><language>en</language>
<lastBuildDate>Sun, 25 Jul 2021 17:23:04 +0000</lastBuildDate>
<pubDate>Sun, 25 Jul 2021 17:23:04 +0000</pubDate>
<lastBuildDate>Sun, 01 Aug 2021 16:12:59 +0000</lastBuildDate>
<pubDate>Sun, 01 Aug 2021 16:12:59 +0000</pubDate>
<atom:link href="https://xhec.one/~g1n/feed.rss" rel="self" type="application/rss+xml">
<item><title>
GRU DevLog 1 - gros sources published and add wc to grutils
</title><description><![CDATA[
<p>I didn&rsquo;t make a lot work this week, so i think this devlogs should be renamed from &ldquo;week number&rdquo; to just &ldquo;number&rdquo;
Ok, so what i did this week:
- Add wc to grutils
- Published gros
- Add basic shell and some commands for gros</p>
<p>I know that is not a lot, but i was reading some osdev articles and books.
Currently I would like to implement basic filesystem but i don&rsquo;t know what to do.</p>
<p>Some goals for gros (I will add that to gros readme):
- Filesystem (FAT or Ext2)
- ELF or other executable formats
- LibC (for compiling C programs)
- Maybe basic networking but after all of that</p>
<p>All code in osdev wiki is for C so I need to implement it myself (or port existing rust code)</p>
<p>If you can help me somehow please contact me via email (g1n@ttm.sh) or in other ways (~chat irc, xmpp)</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_grutils.html'>grutils</a>, <a href='tag_gros.html'>gros</a></p>
<!-- text end -->
]]></description><link>https://xhec.one/~g1n/gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html</link>
<guid>https://xhec.one/~g1n/./gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html</guid>
<dc:creator>G1n</dc:creator>
<pubDate>Sun, 01 Aug 2021 16:12:04 +0000</pubDate></item>
<item><title>
GRU DevLog Week 0 - grsh, grutils and start of gros
</title><description><![CDATA[

View File

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css" type="text/css">
<link rel="stylesheet" href="blog.css" type="text/css">
<link rel="alternate" type="application/rss+xml" title="subscribe to this page..." href="xhec.one/~g1n/feed.xml">
<title>GRU DevLog 1 - gros sources published and add wc to grutils</title>
</head><body>
<div id="divbodyholder">
<div class="headerholder"><div class="header">
<div id="title">
<h1 class="nomargin"><a class="ablack" href="https://xhec.one/~g1n/index.html">~g1n's blog</a></h1>
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<!-- entry begin -->
<h3><a class="ablack" href="gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">
GRU DevLog 1 - gros sources published and add wc to grutils
</a></h3>
<!-- bashblog_timestamp: #202108011612.04# -->
<div class="subtitle">August 01, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>I didn&rsquo;t make a lot work this week, so i think this devlogs should be renamed from &ldquo;week number&rdquo; to just &ldquo;number&rdquo;
Ok, so what i did this week:
- Add wc to grutils
- Published gros
- Add basic shell and some commands for gros</p>
<p>I know that is not a lot, but i was reading some osdev articles and books.
Currently I would like to implement basic filesystem but i don&rsquo;t know what to do.</p>
<p>Some goals for gros (I will add that to gros readme):
- Filesystem (FAT or Ext2)
- ELF or other executable formats
- LibC (for compiling C programs)
- Maybe basic networking but after all of that</p>
<p>All code in osdev wiki is for C so I need to implement it myself (or port existing rust code)</p>
<p>If you can help me somehow please contact me via email (g1n@ttm.sh) or in other ways (~chat irc, xmpp)</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_grutils.html'>grutils</a>, <a href='tag_gros.html'>gros</a></p>
<!-- text end -->
<!-- entry end -->
</div>
<div id="footer">CC by-nc-nd <a href="https://tilde.team/~g1n/">G1n</a> &mdash; <a href="mailto:g1n&#64;xhec&#46;one">g1n&#64;xhec&#46;one</a><br>
generated with <a href="https://tildegit.org/team/bashblog">bashblog</a>, a single bash script to easily create blogs like this one</div>
</div></div>
</body></html>

View File

@ -0,0 +1,22 @@
GRU DevLog 1 - gros sources published and add wc to grutils
I didn't make a lot work this week, so i think this devlogs should be renamed from "week number" to just "number"
Ok, so what i did this week:
- Add wc to grutils
- Published gros
- Add basic shell and some commands for gros
I know that is not a lot, but i was reading some osdev articles and books.
Currently I would like to implement basic filesystem but i don't know what to do.
Some goals for gros (I will add that to gros readme):
- Filesystem (FAT or Ext2)
- ELF or other executable formats
- LibC (for compiling C programs)
- Maybe basic networking but after all of that
All code in osdev wiki is for C so I need to implement it myself (or port existing rust code)
If you can help me somehow please contact me via email (g1n@ttm.sh) or in other ways (~chat irc, xmpp)
tags: gru, grutils, gros

View File

@ -14,6 +14,36 @@
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<h3><a class="ablack" href="gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">
GRU DevLog 1 - gros sources published and add wc to grutils
</a></h3>
<!-- bashblog_timestamp: #202108011612.04# -->
<div class="subtitle">August 01, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>I didn&rsquo;t make a lot work this week, so i think this devlogs should be renamed from &ldquo;week number&rdquo; to just &ldquo;number&rdquo;
Ok, so what i did this week:
- Add wc to grutils
- Published gros
- Add basic shell and some commands for gros</p>
<p>I know that is not a lot, but i was reading some osdev articles and books.
Currently I would like to implement basic filesystem but i don&rsquo;t know what to do.</p>
<p>Some goals for gros (I will add that to gros readme):
- Filesystem (FAT or Ext2)
- ELF or other executable formats
- LibC (for compiling C programs)
- Maybe basic networking but after all of that</p>
<p>All code in osdev wiki is for C so I need to implement it myself (or port existing rust code)</p>
<p>If you can help me somehow please contact me via email (g1n@ttm.sh) or in other ways (~chat irc, xmpp)</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_grutils.html'>grutils</a>, <a href='tag_gros.html'>gros</a></p>
<!-- text end -->
<h3><a class="ablack" href="gru-devlog-week-0---grsh-grutils-and-start-of-gros.html">
GRU DevLog Week 0 - grsh, grutils and start of gros
</a></h3>
@ -154,22 +184,6 @@ Connected to the internet and finding something that I can do there</p>
<p>Tags: <a href='tag_plan9.html'>plan9</a>, <a href='tag_qemu.html'>qemu</a>, <a href='tag_virt-manager.html'>virt-manager</a></p>
<!-- text end -->
<h3><a class="ablack" href="using-suckless-programs.html">
Using suckless programs
</a></h3>
<!-- bashblog_timestamp: #202105060248.49# -->
<div class="subtitle">May 06, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>I started using suckless programs, for example: dwm, st, dmenu, surf. <br>
I use dwm and exwm (both). Also I use st as my default terminal emulator (used alacritty before)<br>
Trying surf but firefox still my default browser</p>
<p>Tags: <a href='tag_suckless.html'>suckless</a>, <a href='tag_dwm.html'>dwm</a>, <a href='tag_st.html'>st</a>, <a href='tag_surf.html'>surf</a>, <a href='tag_dmenu.html'>dmenu</a></p>
<!-- text end -->
<div id="all_posts"><a href="all_posts.html">archive</a> &mdash; <a href="all_tags.html">all tags</a> &mdash; <a href="xhec.one/~g1n/feed.xml">rss</a></div>
</div>

View File

@ -14,6 +14,36 @@
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<h3><a class="ablack" href="gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">
GRU DevLog 1 - gros sources published and add wc to grutils
</a></h3>
<!-- bashblog_timestamp: #202108011612.04# -->
<div class="subtitle">August 01, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>I didn&rsquo;t make a lot work this week, so i think this devlogs should be renamed from &ldquo;week number&rdquo; to just &ldquo;number&rdquo;
Ok, so what i did this week:
- Add wc to grutils
- Published gros
- Add basic shell and some commands for gros</p>
<p>I know that is not a lot, but i was reading some osdev articles and books.
Currently I would like to implement basic filesystem but i don&rsquo;t know what to do.</p>
<p>Some goals for gros (I will add that to gros readme):
- Filesystem (FAT or Ext2)
- ELF or other executable formats
- LibC (for compiling C programs)
- Maybe basic networking but after all of that</p>
<p>All code in osdev wiki is for C so I need to implement it myself (or port existing rust code)</p>
<p>If you can help me somehow please contact me via email (g1n@ttm.sh) or in other ways (~chat irc, xmpp)</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_grutils.html'>grutils</a>, <a href='tag_gros.html'>gros</a></p>
<!-- text end -->
<h3><a class="ablack" href="gru-devlog-week-0---grsh-grutils-and-start-of-gros.html">
GRU DevLog Week 0 - grsh, grutils and start of gros
</a></h3>

View File

@ -14,6 +14,36 @@
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<h3><a class="ablack" href="gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">
GRU DevLog 1 - gros sources published and add wc to grutils
</a></h3>
<!-- bashblog_timestamp: #202108011612.04# -->
<div class="subtitle">August 01, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>I didn&rsquo;t make a lot work this week, so i think this devlogs should be renamed from &ldquo;week number&rdquo; to just &ldquo;number&rdquo;
Ok, so what i did this week:
- Add wc to grutils
- Published gros
- Add basic shell and some commands for gros</p>
<p>I know that is not a lot, but i was reading some osdev articles and books.
Currently I would like to implement basic filesystem but i don&rsquo;t know what to do.</p>
<p>Some goals for gros (I will add that to gros readme):
- Filesystem (FAT or Ext2)
- ELF or other executable formats
- LibC (for compiling C programs)
- Maybe basic networking but after all of that</p>
<p>All code in osdev wiki is for C so I need to implement it myself (or port existing rust code)</p>
<p>If you can help me somehow please contact me via email (g1n@ttm.sh) or in other ways (~chat irc, xmpp)</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_grutils.html'>grutils</a>, <a href='tag_gros.html'>gros</a></p>
<!-- text end -->
<h3><a class="ablack" href="gru-devlog-week-0---grsh-grutils-and-start-of-gros.html">
GRU DevLog Week 0 - grsh, grutils and start of gros
</a></h3>

View File

@ -14,6 +14,36 @@
<div id="description">~g1n's blog</div>
</div></div></div>
<div id="divbody"><div class="content">
<h3><a class="ablack" href="gru-devlog-1---gros-sources-published-and-add-wc-to-grutils.html">
GRU DevLog 1 - gros sources published and add wc to grutils
</a></h3>
<!-- bashblog_timestamp: #202108011612.04# -->
<div class="subtitle">August 01, 2021 &mdash;
G1n
</div>
<!-- text begin -->
<p>I didn&rsquo;t make a lot work this week, so i think this devlogs should be renamed from &ldquo;week number&rdquo; to just &ldquo;number&rdquo;
Ok, so what i did this week:
- Add wc to grutils
- Published gros
- Add basic shell and some commands for gros</p>
<p>I know that is not a lot, but i was reading some osdev articles and books.
Currently I would like to implement basic filesystem but i don&rsquo;t know what to do.</p>
<p>Some goals for gros (I will add that to gros readme):
- Filesystem (FAT or Ext2)
- ELF or other executable formats
- LibC (for compiling C programs)
- Maybe basic networking but after all of that</p>
<p>All code in osdev wiki is for C so I need to implement it myself (or port existing rust code)</p>
<p>If you can help me somehow please contact me via email (g1n@ttm.sh) or in other ways (~chat irc, xmpp)</p>
<p>tags: <a href='tag_gru.html'>gru</a>, <a href='tag_grutils.html'>grutils</a>, <a href='tag_gros.html'>gros</a></p>
<!-- text end -->
<h3><a class="ablack" href="gru-devlog-week-0---grsh-grutils-and-start-of-gros.html">
GRU DevLog Week 0 - grsh, grutils and start of gros
</a></h3>