-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9d7d54
commit c47657b
Showing
81 changed files
with
1,898 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
_site | ||
.sass-cache | ||
.jekyll-cache | ||
.jekyll-metadata | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"grammarly.selectors": [ | ||
{ | ||
"language": "markdown", | ||
"scheme": "file" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
permalink: /404.html | ||
layout: default | ||
noindex: true | ||
--- | ||
|
||
<style type="text/css" media="screen"> | ||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
text-align: center; | ||
margin: 6em; | ||
} | ||
</style> | ||
|
||
<div class="container"> | ||
<h1 style="font-size: 5em;margin: 0px;">404</h1> | ||
<p style="margin: 0px;"><strong>Page not found :(</strong></p> | ||
<p style="margin: 0px;">The requested page could not be found.</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
moonwalk (0.1.3) | ||
jekyll (~> 4.2.0) | ||
jekyll-feed (~> 0.15.0) | ||
jekyll-seo-tag (~> 2.8) | ||
rouge (~> 3.23.0) | ||
webrick (~> 1.7) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
addressable (2.8.1) | ||
public_suffix (>= 2.0.2, < 6.0) | ||
colorator (1.1.0) | ||
concurrent-ruby (1.1.10) | ||
em-websocket (0.5.3) | ||
eventmachine (>= 0.12.9) | ||
http_parser.rb (~> 0) | ||
eventmachine (1.2.7) | ||
ffi (1.15.5) | ||
forwardable-extended (2.6.0) | ||
http_parser.rb (0.8.0) | ||
i18n (1.12.0) | ||
concurrent-ruby (~> 1.0) | ||
jekyll (4.2.2) | ||
addressable (~> 2.4) | ||
colorator (~> 1.0) | ||
em-websocket (~> 0.5) | ||
i18n (~> 1.0) | ||
jekyll-sass-converter (~> 2.0) | ||
jekyll-watch (~> 2.0) | ||
kramdown (~> 2.3) | ||
kramdown-parser-gfm (~> 1.0) | ||
liquid (~> 4.0) | ||
mercenary (~> 0.4.0) | ||
pathutil (~> 0.9) | ||
rouge (~> 3.0) | ||
safe_yaml (~> 1.0) | ||
terminal-table (~> 2.0) | ||
jekyll-feed (0.15.1) | ||
jekyll (>= 3.7, < 5.0) | ||
jekyll-sass-converter (2.2.0) | ||
sassc (> 2.0.1, < 3.0) | ||
jekyll-seo-tag (2.8.0) | ||
jekyll (>= 3.8, < 5.0) | ||
jekyll-watch (2.2.1) | ||
listen (~> 3.0) | ||
kramdown (2.4.0) | ||
rexml | ||
kramdown-parser-gfm (1.1.0) | ||
kramdown (~> 2.0) | ||
liquid (4.0.3) | ||
listen (3.7.1) | ||
rb-fsevent (~> 0.10, >= 0.10.3) | ||
rb-inotify (~> 0.9, >= 0.9.10) | ||
mercenary (0.4.0) | ||
pathutil (0.16.2) | ||
forwardable-extended (~> 2.6) | ||
public_suffix (5.0.0) | ||
rb-fsevent (0.11.2) | ||
rb-inotify (0.10.1) | ||
ffi (~> 1.0) | ||
rexml (3.2.5) | ||
rouge (3.23.0) | ||
safe_yaml (1.0.5) | ||
sassc (2.4.0) | ||
ffi (~> 1.9) | ||
terminal-table (2.0.0) | ||
unicode-display_width (~> 1.1, >= 1.1.1) | ||
unicode-display_width (1.8.0) | ||
webrick (1.7.0) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
moonwalk! | ||
|
||
BUNDLED WITH | ||
2.2.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
The MIT License (MIT) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
title: FlareonzVerse | ||
author: Flareonz44 | ||
url: https://flareonz44.github.io | ||
permalink: /:slug | ||
|
||
favicon: "./logo.png" | ||
|
||
theme_config: | ||
back_home_text: "↩ back" | ||
date_format: "%Y-%m-%d" | ||
|
||
highlighter: rouge | ||
|
||
sass: | ||
style: :compressed | ||
|
||
plugins: | ||
- jekyll-feed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
navbar_entries: | ||
- title: home | ||
url: index | ||
|
||
- title: about | ||
url: about | ||
|
||
- title: blog | ||
url: blog | ||
|
||
- title: portfolio | ||
url: portfolio | ||
|
||
project_cybersec: | ||
- title: WhatsApp Web Session Dumper | ||
url: ws-web-session-dumper | ||
desc: A simple yet powerful hijack | ||
|
||
project_gamedev: | ||
- title: Kuzgakai's Dungeon | ||
url: kuzgakais-dungeon | ||
desc: A top-down 2D shooter game made with Game Maker Studio | ||
|
||
- title: "Beyonder: Mars Research" | ||
url: beyonder-mars-research | ||
desc: A 3D Mars exploration experience | ||
highlight: WIP | ||
|
||
project_misc: | ||
- title: Hexel 16 | ||
url: hexel-16 | ||
desc: IPv6 Style text cipher made with JS | ||
|
||
- title: ST7628 Nokia LCD Driver | ||
url: 266-st7628-nokia-lcd-driver | ||
desc: Use ESP8266 with an old Nokia LCD! | ||
|
||
- title: Sorting Algorithm | ||
url: behind-python-sorting-function | ||
desc: My own *basic* implementation of Python's sort() in C | ||
|
||
- title: PyPulse | ||
url: pypulse-heart-rate-monitor | ||
desc: A simple Heart Rate Monitor made with Python and TKinter | ||
|
||
- title: Asback 14 Tool | ||
url: asback-14-tool | ||
desc: A fictional language encoder/decoder in C++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<ul class="horizontal-list"> | ||
{% for item in include.collection %} | ||
|
||
<li class="card"> | ||
<a href="{{ item.url }}"> | ||
<span class="header"> | ||
{{ item.title }} | ||
{% if item.highlight %} | ||
<mark>{{ item.highlight }}</mark> | ||
{% endif %} | ||
</span> | ||
<hr /> | ||
<p class="body"> | ||
{{ item.desc }} | ||
</p> | ||
</a> | ||
</li> | ||
|
||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<ul class="horizontal-list"> | ||
{% for item in site.data.home.project_cybersec %} | ||
{% if item.highlight == "WIP" %} | ||
|
||
<li class="card"> | ||
<a href="{{ item.url }}"> | ||
<span class="header"> | ||
{{ item.title }} | ||
|
||
{% if item.highlight %} | ||
<mark>{{ item.highlight }}</mark> | ||
{% endif %} | ||
|
||
</span> | ||
|
||
<hr /> | ||
<p class="body"> | ||
{{ item.desc }} | ||
</p> | ||
</a> | ||
</li> | ||
|
||
{% endif %} | ||
{% endfor %} | ||
{% for item in site.data.home.project_gamedev %} | ||
{% if item.highlight == "WIP" %} | ||
|
||
<li class="card"> | ||
<a href="{{ item.url }}"> | ||
<span class="header"> | ||
{{ item.title }} | ||
|
||
{% if item.highlight %} | ||
<mark>{{ item.highlight }}</mark> | ||
{% endif %} | ||
|
||
</span> | ||
|
||
<hr /> | ||
<p class="body"> | ||
{{ item.desc }} | ||
</p> | ||
</a> | ||
</li> | ||
|
||
{% endif %} | ||
{% endfor %} | ||
{% for item in site.data.home.project_misc %} | ||
{% if item.highlight == "WIP" %} | ||
|
||
<li class="card"> | ||
<a href="{{ item.url }}"> | ||
<span class="header"> | ||
{{ item.title }} | ||
|
||
{% if item.highlight %} | ||
<mark>{{ item.highlight }}</mark> | ||
{% endif %} | ||
|
||
</span> | ||
|
||
<hr /> | ||
<p class="body"> | ||
{{ item.desc }} | ||
</p> | ||
</a> | ||
</li> | ||
|
||
{% endif %} | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% comment %} | ||
Placeholder to allow defining custom head. You can put favicons and other custom header fields here | ||
{% endcomment %} | ||
<script> | ||
function remRing(){ | ||
document.getElementsByClassName("ring-background")[0].remove(); | ||
} | ||
function clearRing(){ | ||
document.getElementsByClassName("ring-background")[0].style.opacity = "0"; | ||
setTimeout(remRing, 1100); | ||
} | ||
</script> | ||
<meta name="description" content="{{ page.metadesc }}"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<title> | ||
{% if page.title %} | ||
{{ page.title }} | ||
{% else %} | ||
{{ site.title }} | ||
{% endif %} | ||
</title> | ||
{% feed_meta %} | ||
|
||
<!-- Favicon --> | ||
<link rel="icon" type="image/x-icon" href="/images/logo.png"> | ||
<link rel="manifest" href="/assets/images/favicon/site.webmanifest"> | ||
<meta name="msapplication-TileColor" content="#00aba9"> | ||
<meta name="msapplication-config" content="/assets/images/favicon/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<!-- Favicon --> | ||
|
||
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" /> | ||
{% if site.theme_config.appearance_toggle %} | ||
{% include toggle_theme_js.html %} | ||
{% endif %} | ||
|
||
{%- include custom_head.html -%} | ||
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<ul class="horizontal-list"> | ||
{% for item in include.collection %} | ||
<li> | ||
{% if include.nav == true %} | ||
<a href="{{ item.url }}" class="margined"> | ||
{{ item.title }} | ||
</a> | ||
{% endif %} | ||
{% if include.nav == false %} | ||
<a href="{{ item.url }}"> | ||
{{ item.title }} | ||
</a> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{% if site.posts.size > 0 %} | ||
<ul> | ||
{% for post in site.posts %} | ||
{% if post.type != 'project' %} | ||
<li class="post-list-item"> | ||
<span class="home-date"> | ||
{{ post.date | date: site.theme_config.date_format }}» | ||
</span> | ||
<a href="{{ post.url | relative_url }}">{{ post.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
{% endif %} |
Oops, something went wrong.