added new section and feb post

This commit is contained in:
2025-02-21 23:14:11 -05:00
parent 4d9b20ce87
commit 7b0ca6a69b
4 changed files with 99 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ menu_items = [
{name = "tags", url = "$BASE_URL/tags"},
{name = "archive", url = "$BASE_URL/archive"},
{name = "about me", url = "$BASE_URL/about"},
{name = "RE_Learnings", url = "$BASE_URL/re"},
# set newtab to true to make the link open in new tab
{name = "github", url = "https://github.com/Bombadad", newtab = true},

17
content/feb_2024.md Normal file
View File

@@ -0,0 +1,17 @@
+++
title = "Feb 2024"
date = 2024-02-25
[taxonomies]
tags = ["hacking", "rom", "c-lang", "ctf"]
+++
This month I've been trying to work on my Reverse engineering skills. I'll be doing seperate posts on my RE
adventures under a new tab so be on the lookout for those write ups.
In doing RE challenges there was alot I had to learn.
<!-- more -->
I was also exposed to the wonders of `C`. I hope to do more of it in the future and possible incorperate
it into my professional life. I kinda miss it actually. I first learned programming in college and `C++` was what I learned. I miss the memory management.
But `C` is much more simple and kinda scratch the itch of programming that I missed.

75
content/re/_index.md Normal file
View File

@@ -0,0 +1,75 @@
+++
title = ""
description = ""
# A draft section is only loaded if the `--drafts` flag is passed to `zola build`, `zola serve` or `zola check`.
draft = false
# Used to sort pages by "date", "update_date", "title", "title_bytes", "weight", "slug" or "none". See below for more information.
sort_by = "none"
# Used by the parent section to order its subsections.
# Lower values have higher priority.
weight = 0
# Template to use to render this section page.
template = "index.html"
# The given template is applied to ALL pages below the section, recursively.
# If you have several nested sections, each with a page_template set, the page
# will always use the closest to itself.
# However, a page's own `template` variable will always have priority.
# Not set by default.
page_template = "page.html"
# This sets the number of pages to be displayed per paginated page.
# No pagination will happen if this isn't set or if the value is 0.
paginate_by = 2
# If set, this will be the path used by the paginated page. The page number will be appended after this path.
# The default is page/1.
paginate_path = "page"
# If set, there will pagination will happen in a reversed order.
paginate_reversed = false
# This determines whether to insert a link for each header like the ones you can see on this site if you hover over
# a header.
# The default template can be overridden by creating an `anchor-link.html` file in the `templates` directory.
# This value can be "left", "right", "heading" or "none".
# "heading" means the full heading becomes the text of the anchor.
insert_anchor_links = "none"
# If set to "true", the section pages will be in the search index. This is only used if
# `build_search_index` is set to "true" in the Zola configuration file.
in_search_index = true
# If set to "true", the section homepage is rendered.
# Useful when the section is used to organize pages (not used directly).
render = true
# This determines whether to redirect when a user lands on the section. Defaults to not being set.
# Useful for the same reason as `render` but when you don't want a 404 when
# landing on the root section page.
# Example: redirect_to = "documentation/content/overview"
#redirect_to =
# If set to "true", the section will pass its pages on to the parent section. Defaults to `false`.
# Useful when the section shouldn't split up the parent section, like
# sections for each year under a posts section.
transparent = false
# Use aliases if you are moving content but want to redirect previous URLs to the
# current one. This takes an array of paths, not URLs.
aliases = []
# If set to "true", feed files will be generated for this section at the
# section's root path. This is independent of the site-wide variable of the same
# name. The section feed will only include posts from that respective feed, and
# not from any other sections, including sub-sections under that section.
generate_feeds = false
# Your own data.
[extra]
+++

6
content/re/start_here.md Normal file
View File

@@ -0,0 +1,6 @@
+++
title = "About"
date = 2025-02-21
+++
This section is for recording my learnings and resources on RE and the like.