parent
5bb068d997
commit
248d110640
@ -0,0 +1,14 @@ |
||||
+++ |
||||
title = "The Benefits of Rust" |
||||
date = 2022-05-06 |
||||
+++ |
||||
|
||||
# Rust is like C++, but memory safe. |
||||
---- |
||||
|
||||
<img src="https://doc.rust-lang.org/book/img/ferris/not_desired_behavior.svg"> |
||||
|
||||
### But what does this mean? |
||||
|
||||
---- |
||||
Rust catches unsafe memory practices at compile time and SCREAMS at you to figure it out! |
@ -1,6 +0,0 @@ |
||||
+++ |
||||
title = "test" |
||||
date = 2022-10-12 |
||||
+++ |
||||
|
||||
test |
@ -0,0 +1,7 @@ |
||||
+++ |
||||
title = "Projects" |
||||
sort_by = "date" |
||||
template = "blog.html" |
||||
page_template = "blog-page.html" |
||||
+++ |
||||
|
@ -0,0 +1,13 @@ |
||||
+++ |
||||
title = "cat-box" |
||||
date = 2022-10-13 |
||||
+++ |
||||
- Rust |
||||
---- |
||||
Worked on karx's [cat-box](https://git.karx.xyz/karx/catbox) |
||||
|
||||
game engine build SDL2 |
||||
|
||||
currently uses vulkan to render |
||||
|
||||
I provided audio capabilities and peer pressure |
@ -0,0 +1,7 @@ |
||||
+++ |
||||
title = "weather-python" |
||||
date = 2022-10-13 |
||||
+++ |
||||
- Python |
||||
---- |
||||
#### 1 argument/zip code gets weather and displays it |
@ -0,0 +1,9 @@ |
||||
+++ |
||||
title = "You Are (Not) An Idiot" |
||||
date = 2022-10-13 |
||||
+++ |
||||
- Rust |
||||
---- |
||||
Uses game engine 'cat-box' to recreate the classic You Are An Idiot animation from the 90's |
||||
|
||||
will add video later |
@ -0,0 +1,25 @@ |
||||
//Variables |
||||
.container { |
||||
margin: auto; |
||||
width: 75%; |
||||
padding: 10%; |
||||
} |
||||
|
||||
body { |
||||
//background: #0d181c; |
||||
background-image: url('siteBackground.png'); |
||||
color: #d9d7d6; |
||||
} |
||||
|
||||
hr {background-color: #d9d7d6;} |
||||
|
||||
li { |
||||
list-style-type: "\1F7D5"; |
||||
color: #78B892; |
||||
//font-size: 17px; |
||||
} |
||||
|
||||
img { |
||||
height: 20%; |
||||
width: 20%; |
||||
} |
After Width: | Height: | Size: 8.8 KiB |
@ -1,8 +1,29 @@ |
||||
{% extends "base.html" %} |
||||
|
||||
{% block content %} |
||||
|
||||
|
||||
<h1 class="title"> |
||||
Welcome |
||||
Welcome To My Quiet Little Suburban Home |
||||
</h1> |
||||
<p>Click <a href="{{ get_url(path="@/blog/_index.md") }}">here</a> to see my posts.</p> |
||||
<hr> |
||||
Hey I'm Gallant, I work with mostly Rust. |
||||
<div> |
||||
<hr> |
||||
|
||||
<h4>Stuff:</h4> |
||||
<ul> |
||||
<li><a href="https://git.karx.xyz/gallant/">My Git</a></li> |
||||
<li><a href="mailto:gallantcrusader@proton.me">Reach Out</a></li> |
||||
</ul> |
||||
|
||||
<h4>Pals:</h4> |
||||
<ul> |
||||
<li><a href="https://karx.xyz/">karx</a></li> |
||||
<li><a href="https://lemonsh.moe">lemon</a></li> |
||||
<li><a href="https://famfo.xyz">famfo</a></li> |
||||
<li><a href="https://missingpiece.dev/">missing</a></li> |
||||
<!-- <li><a href=""></a></li> --> |
||||
</ul> |
||||
</div> |
||||
{% endblock content %} |
||||
|
Loading…
Reference in new issue