Merge repos with workflow

This commit is contained in:
2023-04-09 00:19:14 -04:00
Unverified
parent e229ad9fa5
commit 45fb7ddd77
2697 changed files with 45896 additions and 4191 deletions

78
.github/workflows/hugo.yaml vendored Normal file
View File

@@ -0,0 +1,78 @@
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy Hugo site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
# Default to bash
defaults:
run:
shell: bash
jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.111.3
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass Embedded
run: sudo snap install dart-sass-embedded
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

7
.gitignore vendored Normal file
View File

@@ -0,0 +1,7 @@
# Generated files by hugo
/resources/
# Temporary lock file while building
/.hugo_build.lock
/public/

106
404.html
View File

@@ -1,106 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>404 Page not found - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="404 Page not found" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/404.html" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="404 Page not found"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/404.html" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page" id="content-404">
<h1 id="error-emoji"></h1>
<p class="error-text">The page you&#39;re looking for doesn&#39;t exist. Sorry.&nbsp;
<a href="javascript:void(0);" title="Back" onclick="window.history.back();"><i class="far fa-hand-point-left fa-fw" aria-hidden="true"></i></a>
</p>
</div>
<script type="text/javascript">
(function() {
var emojiArray = ['\\(o_o)/', '(˚Δ˚)b', '(^-^*)', '(≥o≤)', '(^_^)b', '(·_·)','(=\'X\'=)', '(>_<)', '(;-;)'];
document.getElementById('error-emoji').appendChild(document.createTextNode(emojiArray[Math.floor(Math.random() * emojiArray.length)]));
})();
</script></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,130 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>About - LitlToast&#39;s Blog</title><meta name="Description" content="About"><meta property="og:title" content="About" />
<meta property="og:description" content="About" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://higgy999.github.io/about/" /><meta property="og:image" content="https://higgy999.github.io/banner.png" /><meta property="article:section" content="" />
<meta property="article:published_time" content="2019-08-02T11:04:49+08:00" />
<meta property="article:modified_time" content="2022-08-23T15:10:16-04:00" /><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/banner.png"/>
<meta name="twitter:title" content="About"/>
<meta name="twitter:description" content="About"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/about/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "About",
"inLanguage": "en",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https:\/\/higgy999.github.io\/about\/"
},"genre": "page","wordcount": 61 ,
"url": "https:\/\/higgy999.github.io\/about\/","datePublished": "2019-08-02T11:04:49+08:00","dateModified": "2022-08-23T15:10:16-04:00","publisher": {
"@type": "Organization",
"name": "LitlToast","logo": {
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/images\/dark-avatar.png",
"width": 288 ,
"height": 288
}},"author": {
"@type": "Person",
"name": "LitlToast"
},"description": "About"
}
</script></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item active" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page single special"><h1 class="single-title animate__animated animate__pulse animate__faster">About</h1><div class="content" id="content"><p><figure><a class="lightgallery" href="/images/banner.png" title="Banner" data-thumbnail="/images/banner.png" data-sub-html="<h2>A banner I made</h2><p>Banner</p>">
<img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/banner.png"
data-srcset="/images/banner.png, /images/banner.png 1.5x, /images/banner.png 2x"
data-sizes="auto"
alt="/images/banner.png" width="2560" height="900" />
</a><figcaption class="image-caption">A banner I made</figcaption>
</figure></p>
<p>This site is the best place to catch up on my projects and to get the downloads for my projects when they come out. I work on various things like game development to modding Minecraft. Any project will have its own subdomain and page. If you want to talk to me personally about something, here&rsquo;s my <a href="mailto:joshuafhiggins@gmail.com" rel="">email</a>.</p>
</div></div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/css/lightgallery-bundle.min.css"><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/lightgallery.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/thumbnail/lg-thumbnail.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/zoom/lg-zoom.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"comment":{},"lightgallery":true,"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

6
archetypes/default.md Normal file
View File

@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

4
assets/css/_custom.scss Normal file
View File

@@ -0,0 +1,4 @@
// ==============================
// Custom style
// 自定义样式
// ==============================

175
assets/css/_override.scss Normal file
View File

@@ -0,0 +1,175 @@
// ==============================
// Override Variables
// 覆盖变量
// ==============================
@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700&display=swap&subset=latin-ext');
$global-font-family: Ubuntu;
@import url('https://fonts.googleapis.com/css?family=JetBrains+Mono:400,700&display=swap&subset=latin-ext');
$code-font-family: JetBrains Mono;
//@import url("Stratum2WebBold.woff");
@font-face {
font-family: Stratum2;
src: url('/fonts/Stratum2WebBold.woff');
}
$header-title-font-family: Stratum2;
header {
font-family: var(--header-title-font-family);
@supports ((-webkit-backdrop-filter:blur(var(--header-background-blur ))) or (backdrop-filter:blur(var(--header-background-blur )))) {
backdrop-filter: blur(5px);
}
border-radius: 100px;
top: 10px;
left: 0;
right: 0;
margin: 0 auto;
@media only screen and (max-width: 680px) {
border-radius: 0px;
top: 0px;
left: 0;
right: 0;
margin: 0 auto;
}
.header-title {
font-style: italic;
text-transform: uppercase;
}
.search {
position: relative;
input {
background-color: transparent;
[theme=dark] & {
background-color: transparent;
}
}
}
}
.single {
.single-title {
font-family: var(--header-title-font-family);
text-transform: uppercase;
}
}
.archive {
.single-title {
margin: 2rem 0 .5rem;
font-family: var(--header-title-font-family);
text-transform: uppercase;
}
}
.special {
margin: 2rem 0 .5rem;
.single-title {
font-family: var(--header-title-font-family);
text-transform: uppercase;
}
}
$global-background-color: #F7FFF7;
$global-background-color-dark: #343434;
// Color of the text
$global-font-color: #161209;
$global-font-color-dark: #a9a9b3;
// Color of the secondary text
$global-font-secondary-color: #a9a9b3;
$global-font-secondary-color-dark: #5d5d5f;
// Color of the link
$global-link-color: #2F3061;
$global-link-color-dark: #6CA6C1;
// Color of the hover link
$global-link-hover-color: #c4b154;
$global-link-hover-color-dark: #e6d063;
// Color of the border
$global-border-color: #f0f0f0;
$global-border-color-dark: #363636;
// ========== Global ========== //
// ========== Scrollbar ========== //
// Color of the scrollbar
$scrollbar-color: #87878d;
// Color of the hover scrollbar
$scrollbar-hover-color: #a9a9b3;
// ========== Scrollbar ========== //
// ========== Selection ========== //
// Color of the selected text
$selection-color: rgba(53, 166, 247, 0.25);
$selection-color-dark: rgba(50, 112, 194, 0.4);
// ========== Selection ========== //
// ========== Header ========== //
// Color of the header background
$header-background-color: rgba(220, 220, 220, 0.8);
$header-background-color-dark: rgba(37, 38, 39, 0.8);
// Color of the hover header item
$header-hover-color: #161209;
$header-hover-color-dark: #fff;
// Color of the search background
$search-background-color: #e9e9e9;
$search-background-color-dark: #363636;
// ========== Header ========== //
// ========== Single Content ========== //
// Color of the single link
$single-link-color: #2d96bd;
$single-link-color-dark: #55bde2;
// Color of the hover single link
$single-link-hover-color: #c4b154;
$single-link-hover-color-dark: #e6d063;
// Color of the table background
$table-background-color: #fff;
$table-background-color-dark: #272c34;
// Color of the table thead
$table-thead-color: #ededed;
$table-thead-color-dark: #20252b;
// Color of the blockquote
$blockquote-color: #6bd6fd;
$blockquote-color-dark: #59c5ec;
// ========== Single Content ========== //
// ========== Pagination ========== //
// Color of the link in pagination
$pagination-link-color: #2d96bd;
$pagination-link-color-dark: #a9a9b3;
// Color of the hover link in pagination
$pagination-link-hover-color: #000;
$pagination-link-hover-color-dark: #fff;
// ========== Pagination ========== //
// Color of the code
$code-color: #2F3061;
$code-color-dark: #6CA6C1;
// Color of the code background
$code-background-color: rgb(220, 220, 220);
$code-background-color-dark: rgb(37, 38, 39);
$code-info-color: #9c9c9c;
$code-info-color-dark: #b1b0b0;

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 248 KiB

After

Width:  |  Height:  |  Size: 248 KiB

View File

Before

Width:  |  Height:  |  Size: 238 KiB

After

Width:  |  Height:  |  Size: 238 KiB

View File

Before

Width:  |  Height:  |  Size: 197 KiB

After

Width:  |  Height:  |  Size: 197 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 MiB

After

Width:  |  Height:  |  Size: 2.5 MiB

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

Before

Width:  |  Height:  |  Size: 410 B

After

Width:  |  Height:  |  Size: 410 B

View File

Before

Width:  |  Height:  |  Size: 535 B

After

Width:  |  Height:  |  Size: 535 B

View File

Before

Width:  |  Height:  |  Size: 125 KiB

After

Width:  |  Height:  |  Size: 125 KiB

BIN
assets/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 KiB

BIN
assets/music/Wavelength.mp3 Normal file

Binary file not shown.

View File

@@ -1,350 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Getting Deja Vu Right Now - LitlToast&#39;s Blog</title><meta name="Description" content="I feel like I wrote this code before..."><meta property="og:title" content="Getting Deja Vu Right Now" />
<meta property="og:description" content="I feel like I wrote this code before..." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://higgy999.github.io/butter-dejavu/" /><meta property="og:image" content="https://higgy999.github.io/butter-smiley-streched.png" /><meta property="og:image" content="https://higgy999.github.io/butter-smiley-projected.png" /><meta property="og:image" content="https://higgy999.github.io/butter-dragon-modelloading.png" /><meta property="article:section" content="posts" />
<meta property="article:published_time" content="2021-08-08T21:21:30-04:00" />
<meta property="article:modified_time" content="2022-08-23T15:10:16-04:00" /><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/butter-smiley-streched.png"/>
<meta name="twitter:title" content="Getting Deja Vu Right Now"/>
<meta name="twitter:description" content="I feel like I wrote this code before..."/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/butter-dejavu/" /><link rel="prev" href="https://higgy999.github.io/general-catchingup/" /><link rel="next" href="https://higgy999.github.io/site-redesigned-2022/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "Getting Deja Vu Right Now",
"inLanguage": "en",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https:\/\/higgy999.github.io\/butter-dejavu\/"
},"image": [{
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/butter-dejavu\/featured-image.png",
"width": 1280 ,
"height": 720
}],"genre": "posts","keywords": "Butter Engine, Update, Programming","wordcount": 1004 ,
"url": "https:\/\/higgy999.github.io\/butter-dejavu\/","datePublished": "2021-08-08T21:21:30-04:00","dateModified": "2022-08-23T15:10:16-04:00","publisher": {
"@type": "Organization",
"name": "LitlToast","logo": {
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/images\/dark-avatar.png",
"width": 288 ,
"height": 288
}},"author": {
"@type": "Person",
"name": "LitlToast"
},"description": "I feel like I wrote this code before..."
}
</script></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="toc" id="toc-auto">
<h2 class="toc-title">Contents</h2>
<div class="toc-content" id="toc-content-auto"></div>
</div><article class="page single"><h1 class="single-title animate__animated animate__flipInX">Getting Deja Vu Right Now</h1><div class="post-meta">
<div class="post-meta-line"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-category">included in <a href="/categories/butterengine/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>Butter Engine</a></span></div>
<div class="post-meta-line"><i class="far fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;<time datetime="2021-08-08">2021-08-08</time>&nbsp;<i class="fas fa-pencil-alt fa-fw" aria-hidden="true"></i>&nbsp;1004 words&nbsp;
<i class="far fa-clock fa-fw" aria-hidden="true"></i>&nbsp;5 minutes&nbsp;</div>
</div><div class="featured-image"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/butter-dejavu/featured-image.png"
data-srcset="/butter-dejavu/featured-image.png, /butter-dejavu/featured-image.png 1.5x, /butter-dejavu/featured-image.png 2x"
data-sizes="auto"
alt="/butter-dejavu/featured-image.png"
title="I feel like I wrote this code before..." /></div><div class="details toc" id="toc-static" data-kept="">
<div class="details-summary toc-title">
<span>Contents</span>
<span><i class="details-icon fas fa-angle-right" aria-hidden="true"></i></span>
</div>
<div class="details-content toc-content" id="toc-content-static"><nav id="TableOfContents">
<ul>
<li><a href="#base-rendering">Base Rendering</a></li>
<li><a href="#textures">Textures</a></li>
<li><a href="#3d-projection">3D Projection</a></li>
<li><a href="#mod-loading">Mod Loading</a></li>
<li><a href="#cameras">Cameras</a></li>
<li><a href="#physics">Physics</a></li>
<li><a href="#ecs">ECS</a></li>
<li><a href="#model-loading">Model Loading</a></li>
</ul>
</nav></div>
</div><div class="content" id="content"><p>I feel like I wrote this code before&hellip;</p>
<p>Up until last week, I have been working on the base rendering, textures, and 3D projection which all felt vaguely familiar (<em>cough cough..<a href="https://github.com/higgy999/tf2-opengl" target="_blank" rel="noopener noreffer ">TF2 OpenGL &amp; Java</a>..cough cough</em>). As well as a basis for mod loading.</p>
<p>But for this week, I didn&rsquo;t do much (<em>less than I wanted to</em>) but I did do research into physics, cameras, model loading, and entity component systems/ECS.</p>
<h2 id="base-rendering">Base Rendering</h2>
<p>I&rsquo;m really happy with the way this got done. The mesh class makes a bunch of BufferObjects that hold the OpenGL pointers and have base functions for cleanup. This allows very easy derivatives of the Mesh class for whatever they needed.</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span><span class="lnt">11
</span><span class="lnt">12
</span><span class="lnt">13
</span><span class="lnt">14
</span><span class="lnt">15
</span><span class="lnt">16
</span><span class="lnt">17
</span><span class="lnt">18
</span><span class="lnt">19
</span><span class="lnt">20
</span><span class="lnt">21
</span><span class="lnt">22
</span><span class="lnt">23
</span><span class="lnt">24
</span><span class="lnt">25
</span><span class="lnt">26
</span><span class="lnt">27
</span><span class="lnt">28
</span><span class="lnt">29
</span><span class="lnt">30
</span><span class="lnt">31
</span><span class="lnt">32
</span><span class="lnt">33
</span><span class="lnt">34
</span><span class="lnt">35
</span><span class="lnt">36
</span><span class="lnt">37
</span><span class="lnt">38
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-java" data-lang="java"><span class="line"><span class="cl"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">FooMesh</span> <span class="kd">extends</span> <span class="n">Mesh</span> <span class="o">{</span>
</span></span><span class="line"><span class="cl"> <span class="c1">//...
</span></span></span><span class="line"><span class="cl"><span class="c1"></span>
</span></span><span class="line"><span class="cl"> <span class="nd">@Override</span>
</span></span><span class="line"><span class="cl"> <span class="kd">public</span> <span class="kt">void</span> <span class="nf">Create</span><span class="o">()</span> <span class="o">{</span>
</span></span><span class="line"><span class="cl"> <span class="c1">//Make our VAO
</span></span></span><span class="line"><span class="cl"><span class="c1"></span> <span class="n">VAO</span> <span class="o">=</span> <span class="k">new</span> <span class="n">BufferObject</span><span class="o">.</span><span class="na">VAO</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">VAO</span><span class="o">.</span><span class="na">Bind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="c1">//Array of non specific BufferObjects
</span></span></span><span class="line"><span class="cl"><span class="c1"></span> <span class="n">bufferObjects</span><span class="o">[</span><span class="mi">0</span><span class="o">]</span> <span class="o">=</span> <span class="k">new</span> <span class="n">BufferObject</span><span class="o">.</span><span class="na">VBO</span><span class="o">(</span><span class="n">vertices</span><span class="o">,</span> <span class="mi">0</span><span class="o">);</span>
</span></span><span class="line"><span class="cl"> <span class="c1">//Static classes that inherit BufferObject.
</span></span></span><span class="line"><span class="cl"><span class="c1"></span> <span class="c1">//These are binded and attached with no intervention
</span></span></span><span class="line"><span class="cl"><span class="c1"></span> <span class="n">bufferObjects</span><span class="o">[</span><span class="mi">1</span><span class="o">]</span> <span class="o">=</span> <span class="k">new</span> <span class="n">BufferObject</span><span class="o">.</span><span class="na">CBO</span><span class="o">(</span><span class="n">vertices</span><span class="o">,</span> <span class="mi">1</span><span class="o">);</span>
</span></span><span class="line"><span class="cl"> <span class="n">bufferObjects</span><span class="o">[</span><span class="mi">2</span><span class="o">]</span> <span class="o">=</span> <span class="k">new</span> <span class="n">BufferObject</span><span class="o">.</span><span class="na">TBO</span><span class="o">(</span><span class="n">vertices</span><span class="o">,</span> <span class="mi">2</span><span class="o">);</span>
</span></span><span class="line"><span class="cl"> <span class="n">IBO</span> <span class="o">=</span> <span class="k">new</span> <span class="n">BufferObject</span><span class="o">.</span><span class="na">IBO</span><span class="o">(</span><span class="n">indices</span><span class="o">);</span>
</span></span><span class="line"><span class="cl"> <span class="n">VAO</span><span class="o">.</span><span class="na">Unbind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="o">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"> <span class="c1">//...
</span></span></span><span class="line"><span class="cl"><span class="c1"></span>
</span></span><span class="line"><span class="cl"> <span class="c1">//Rendering, method calls are pretty self explanatory.
</span></span></span><span class="line"><span class="cl"><span class="c1"></span> <span class="c1">//Inputs aren&#39;t final.
</span></span></span><span class="line"><span class="cl"><span class="c1"></span> <span class="c1">//I&#39;m not happy with the Entity being passed in for rendering when Entity&#39;s hold meshes
</span></span></span><span class="line"><span class="cl"><span class="c1"></span> <span class="kd">public</span> <span class="kt">void</span> <span class="nf">Render</span><span class="o">(</span><span class="n">Entity</span> <span class="n">entity</span><span class="o">,</span> <span class="n">Camera</span> <span class="n">camera</span><span class="o">)</span> <span class="o">{</span>
</span></span><span class="line"><span class="cl"> <span class="n">VAO</span><span class="o">.</span><span class="na">Bind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">enableVertexAttrib</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">IBO</span><span class="o">.</span><span class="na">Bind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">material</span><span class="o">.</span><span class="na">Bind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">shader</span><span class="o">.</span><span class="na">Bind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">SetUniforms</span><span class="o">(</span><span class="n">entity</span><span class="o">,</span> <span class="n">camera</span><span class="o">);</span>
</span></span><span class="line"><span class="cl"> <span class="n">DrawElements</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">shader</span><span class="o">.</span><span class="na">Unbind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">material</span><span class="o">.</span><span class="na">Unbind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">IBO</span><span class="o">.</span><span class="na">Unbind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">disableVertexAttrib</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="n">VAO</span><span class="o">.</span><span class="na">Unbind</span><span class="o">();</span>
</span></span><span class="line"><span class="cl"> <span class="o">}</span>
</span></span><span class="line"><span class="cl"><span class="o">}</span></span></span></code></pre></td></tr></table>
</div>
</div>
<p>Derivatives were made when going through the tutorials but were ultimately removed for the approach of having a better base because having a different Mesh for color and then for texture and then color, but color is never used&hellip; It was just a headache for general refactoring and keeping them up to date. A lot of buffer stuff was taken from TF2 in Java &amp; OpenGL.</p>
<h2 id="textures">Textures</h2>
<p>Right now, only Albedo is being used and the Material class is nothing but a holder for SlickUtil Textures. I want the Material class to hold all of the textures without order and you leave it to modders to make their shaders and textures line up. I&rsquo;m only using SlickUtil right now because of the ability to load Textures from class resources rather than the file path. But I&rsquo;m ultimately going to replace it with my one Texture class because of the [model loader](#Model Loading) not using class resources. Supposedly we can load from resources, and call the function to load model from memory or textures from memory with STB, but I have no idea what the size of the buffers should be.</p>
<p><figure><a class="lightgallery" href="/images/butter-smiley-streched.png" title="butter-smiley-streched" data-thumbnail="/images/butter-smiley-streched.png" data-sub-html="<h2>Smiley is rendering but streched!</h2><p>butter-smiley-streched</p>">
<img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/butter-smiley-streched.png"
data-srcset="/images/butter-smiley-streched.png, /images/butter-smiley-streched.png 1.5x, /images/butter-smiley-streched.png 2x"
data-sizes="auto"
alt="/images/butter-smiley-streched.png" width="1280" height="720" />
</a><figcaption class="image-caption">Smiley is rendering but streched!</figcaption>
</figure></p>
<h2 id="3d-projection">3D Projection</h2>
<p>JOML is being used for math and matrix loading and what not but this may change (see <a href="#physics" rel="">the physics section</a>). Once I did this, it kinda made me think about what next. I thought I should focus on an ECS system for holding positions, rotations, etc. which right now is the Entity class that should be derived from but will change (see <a href="#ecs" rel="">the ECS section</a>). This was kind of the thing that spun off into the unproductive week. Although this was not easy at all because the shader was originally going from different matrices in the wrong order.</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt"> 1
</span><span class="lnt"> 2
</span><span class="lnt"> 3
</span><span class="lnt"> 4
</span><span class="lnt"> 5
</span><span class="lnt"> 6
</span><span class="lnt"> 7
</span><span class="lnt"> 8
</span><span class="lnt"> 9
</span><span class="lnt">10
</span><span class="lnt">11
</span><span class="lnt">12
</span><span class="lnt">13
</span><span class="lnt">14
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-glsl" data-lang="glsl"><span class="line"><span class="cl"><span class="c1">//...</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="k">uniform</span> <span class="n">mat4</span> <span class="n">model</span><span class="p">;</span>
</span></span><span class="line"><span class="cl"><span class="k">uniform</span> <span class="n">mat4</span> <span class="n">view</span><span class="p">;</span>
</span></span><span class="line"><span class="cl"><span class="k">uniform</span> <span class="n">mat4</span> <span class="n">projection</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="k">void</span> <span class="n">main</span><span class="p">()</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl"> <span class="c1">//How it should be: </span>
</span></span><span class="line"><span class="cl"> <span class="c1">//gl_Position = vec4(position, 1.0) * model * view * projection;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"> <span class="n">gl_Position</span> <span class="o">=</span> <span class="n">projection</span> <span class="o">*</span> <span class="n">view</span> <span class="o">*</span> <span class="n">model</span> <span class="o">*</span> <span class="k">vec4</span><span class="p">(</span><span class="n">position</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"> <span class="c1">//...</span>
</span></span><span class="line"><span class="cl"><span class="p">}</span></span></span></code></pre></td></tr></table>
</div>
</div>
<p>But here it is now working just right:</p>
<p><figure><a class="lightgallery" href="/images/butter-smiley-projected.png" title="butter-smiley-projected" data-thumbnail="/images/butter-smiley-projected.png" data-sub-html="<h2>Smiley looking better now</h2><p>butter-smiley-projected</p>">
<img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/butter-smiley-projected.png"
data-srcset="/images/butter-smiley-projected.png, /images/butter-smiley-projected.png 1.5x, /images/butter-smiley-projected.png 2x"
data-sizes="auto"
alt="/images/butter-smiley-projected.png" width="1280" height="720" />
</a><figcaption class="image-caption">Smiley looking better now</figcaption>
</figure></p>
<h2 id="mod-loading">Mod Loading</h2>
<p>The Main class no longer holds any GLFW and is instead held in the Window class, similar to the Mesh class and BufferObjects. Mods right now hold a lot of control over what&rsquo;s happening. This is still subject to change because while this was going to be a render engine, it quickly became this bigger thing and the order of events right now is: Rendering (v0.1) -&gt; ECS/Physics (v0.2) -&gt; Audio/Sound (v0.3) -&gt; Events/Mod Loading (v0.4). So we aren&rsquo;t even done with v0.1 and shouldn&rsquo;t worry about the specifics of this just yet. I just want to emphasize that this is a render engine before a game engine, no matter how much I want the latter.</p>
<h2 id="cameras">Cameras</h2>
<p>Absolute pain, never again. Jokes aside I just need to do more research because right now it looks like this:</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/anVOEiAujAY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>Should just leave it static right now with no movement&hellip;</p>
<h2 id="physics">Physics</h2>
<p>Well, more of the research of it for Java. The best solution would be to use <a href="http://jbullet.advel.cz/" target="_blank" rel="noopener noreffer ">JBullet</a>, an outdated port of Bullet. It&rsquo;s the easiest to set up and using LibGDX port while similar, has no real prebuilt support for shapes and has to be done manually. LWJGL has a binding, but with a client-server architecture which is just terrible for doing anything simple. The only problem is, it uses javax.vecmath while right now I&rsquo;m using JOML. Managing both is a pain and javax.vecmath has Transform objects, similar to Unity, so I&rsquo;m gonna need to refractor a lot to use vecmath.</p>
<h2 id="ecs">ECS</h2>
<p>For ECS I&rsquo;m gonna go with <a href="https://github.com/libgdx/ashley" target="_blank" rel="noopener noreffer ">Ashley</a>, a LibGDX solution. It seems like the only one used for games but not hard to build from scratch either, as a concept. Of course, I&rsquo;m not going to dump a bunch of hours into custom-made when this is good enough. Although I don&rsquo;t know much in this and it is mainly up to developers on how they should organize this and this may change.</p>
<h2 id="model-loading">Model Loading</h2>
<p>This is in no way finished as it is not grabbing all possible data right now, which is kind of driving me nuts but I&rsquo;m gonna try to ignore it for now until the data being grabbed, like material data, can be used in engine. Here it is so far, using the smiley texture and the dragon model:</p>
<p><figure><a class="lightgallery" href="/images/butter-dragon-modelloading.png" title="butter-dragon-modelloading" data-thumbnail="/images/butter-dragon-modelloading.png" data-sub-html="<h2>Model loaded!</h2><p>butter-dragon-modelloading</p>">
<img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/butter-dragon-modelloading.png"
data-srcset="/images/butter-dragon-modelloading.png, /images/butter-dragon-modelloading.png 1.5x, /images/butter-dragon-modelloading.png 2x"
data-sizes="auto"
alt="/images/butter-dragon-modelloading.png" width="1280" height="720" />
</a><figcaption class="image-caption">Model loaded!</figcaption>
</figure></p></div><div class="post-footer" id="post-footer">
<div class="post-info">
<div class="post-info-line">
<div class="post-info-mod">
<span>Updated on 2022-08-23&nbsp;<a class="git-hash" href="https://github.com/higgy999/higgy999.github.io/commit/176375515f15c94950184256ef64edc4f048643d" target="_blank" title="commit by Litl Toast(joshuafhiggins@gmail.com) 176375515f15c94950184256ef64edc4f048643d: Regular Files">
<i class="fas fa-hashtag fa-fw" aria-hidden="true"></i>1763755</a></span>
</div></div>
<div class="post-info-line">
<div class="post-info-md"><span>
<a class="link-to-markdown" href="/butter-dejavu/index.md" target="_blank">Read Markdown</a>
</span></div>
<div class="post-info-share">
<span><a href="javascript:void(0);" title="Share on Twitter" data-sharer="twitter" data-url="https://higgy999.github.io/butter-dejavu/" data-title="Getting Deja Vu Right Now" data-hashtags="Butter Engine,Update,Programming"><i class="fab fa-twitter fa-fw" aria-hidden="true"></i></a><a href="javascript:void(0);" title="Share on Reddit" data-sharer="reddit" data-url="https://higgy999.github.io/butter-dejavu/"><i class="fab fa-reddit fa-fw" aria-hidden="true"></i></a></span>
</div>
</div>
</div>
<div class="post-info-more">
<section class="post-tags"><i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/butter-engine/">Butter Engine</a>,&nbsp;<a href="/tags/update/">Update</a>,&nbsp;<a href="/tags/programming/">Programming</a></section>
<section>
<span><a href="javascript:void(0);" onclick="window.history.back();">Back</a></span>&nbsp;|&nbsp;<span><a href="/">Home</a></span>
</section>
</div>
<div class="post-nav"><a href="/general-catchingup/" class="prev" rel="prev" title="Catching Up &amp; Centralizing"><i class="fas fa-angle-left fa-fw" aria-hidden="true"></i>Catching Up & Centralizing</a>
<a href="/site-redesigned-2022/" class="next" rel="next" title="I Redesigned the Site">I Redesigned the Site<i class="fas fa-angle-right fa-fw" aria-hidden="true"></i></a></div>
</div>
</article></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/css/lightgallery-bundle.min.css"><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/lightgallery.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/thumbnail/lg-thumbnail.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/zoom/lg-zoom.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"comment":{},"lightgallery":true,"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,108 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Butter Engine - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Butter Engine" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/butterengine/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Butter Engine"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/butterengine/" /><link rel="alternate" href="/categories/butterengine/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/butterengine/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;Butter Engine</h2><h3 class="group-title">2021</h3><article class="archive-item">
<a href="/butter-dejavu/" class="archive-item-link">Getting Deja Vu Right Now</a>
<span class="archive-item-date">08-08</span>
</article></div>
<div class="page single">
<div class="content">
<p>Butter Engine is a game engine made in LWJGL and uses its subset libraries for various tasks. What originally started as a simple rendering library to use LWJGL easier is now becoming a fully-fledged engine and with the hope to fill the same role as Garry&rsquo;s Mod in end-user development.</p>
<p>Although similar to other projects in ambition, the hope is to work on certain parts of the TODO list at a time. For example, spending some time on rendering and then transitioning to audio, to ECS, and back.</p>
<p>The checklist is available on the <a href="https://github.com/higgy999/ButterEngine" target="_blank" rel="noopener noreffer ">GitHub repository</a>.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,16 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Butter Engine - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/butterengine/</link>
<description>Butter Engine - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/butterengine/" rel="self" type="application/rss+xml" /><item>
<title>Getting Deja Vu Right Now</title>
<link>https://higgy999.github.io/butter-dejavu/</link>
<pubDate>Sun, 08 Aug 2021 21:21:30 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/butter-dejavu/</guid>
<description><![CDATA[<p>I feel like I wrote this code before&hellip;</p>]]></description>
</item>
</channel>
</rss>

View File

@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://higgy999.github.io/categories/butterengine/</title>
<link rel="canonical" href="https://higgy999.github.io/categories/butterengine/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://higgy999.github.io/categories/butterengine/">
</head>
</html>

View File

@@ -1,106 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Game Time - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Game Time" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/gametimemod/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Game Time"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/gametimemod/" /><link rel="alternate" href="/categories/gametimemod/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/gametimemod/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;Game Time</h2></div>
<div class="page single">
<div class="content">
<p>Game Time is a Minecraft mod that tracks time spent in game. I have no idea where I put the downloads. Here&rsquo;s an excerpt from the &ldquo;Catching Up &amp; Centralizing&rdquo; post on what my plans are for this:</p>
<p><em>&ldquo;I think this would be more suited as a general-purpose desktop app that works similar to the way Steam keeps track of hours. It would also be a general-purpose, statistic-keeping app with a name change.&rdquo;</em></p>
<p>As stated, this is an intresting project that I&rsquo;m definitly going to revist and update.</p>
<p>There are no posts.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,8 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Game Time - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/gametimemod/</link>
<description>Game Time - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/gametimemod/" rel="self" type="application/rss+xml" /></channel>
</rss>

View File

@@ -1,112 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>General - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="General" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/general/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="General"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/general/" /><link rel="alternate" href="/categories/general/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/general/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;General</h2><h3 class="group-title">2023</h3><article class="archive-item">
<a href="/spring-break-redesign/" class="archive-item-link">Spring Cleaning: April 2023</a>
<span class="archive-item-date">04-08</span>
</article><h3 class="group-title">2022</h3><article class="archive-item">
<a href="/site-redesigned-2022/" class="archive-item-link">I Redesigned the Site</a>
<span class="archive-item-date">08-23</span>
</article><h3 class="group-title">2021</h3><article class="archive-item">
<a href="/general-catchingup/" class="archive-item-link">Catching Up & Centralizing</a>
<span class="archive-item-date">08-08</span>
</article></div>
<div class="page single">
<div class="content">
<p>Just general thing, like this website.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,32 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>General - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/general/</link>
<description>General - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/general/" rel="self" type="application/rss+xml" /><item>
<title>Spring Cleaning: April 2023</title>
<link>https://higgy999.github.io/spring-break-redesign/</link>
<pubDate>Sat, 08 Apr 2023 14:55:00 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/spring-break-redesign/</guid>
<description><![CDATA[<p>I made no posts for the rest of 2022 since the last redesign, and then I felt like redesigning the site again. (AI generated image btw)</p>]]></description>
</item>
<item>
<title>I Redesigned the Site</title>
<link>https://higgy999.github.io/site-redesigned-2022/</link>
<pubDate>Tue, 23 Aug 2022 00:09:32 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/site-redesigned-2022/</guid>
<description><![CDATA[<p>Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched.</p>]]></description>
</item>
<item>
<title>Catching Up &amp; Centralizing</title>
<link>https://higgy999.github.io/general-catchingup/</link>
<pubDate>Sun, 08 Aug 2021 20:29:20 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/general-catchingup/</guid>
<description><![CDATA[<p>General things I need to do with the site</p>]]></description>
</item>
</channel>
</rss>

View File

@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://higgy999.github.io/categories/general/</title>
<link rel="canonical" href="https://higgy999.github.io/categories/general/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://higgy999.github.io/categories/general/">
</head>
</html>

View File

@@ -1,161 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>All Projects - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Projects" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Projects"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item active" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster">All Projects</h2><div class="categories-card"><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/butterengine/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;Butter Engine
</a>
</h3><article class="archive-item">
<a href="/butter-dejavu/" class="archive-item-link">Getting Deja Vu Right Now</a>
</article></div>
</div><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/gametimemod/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;Game Time
</a>
</h3></div>
</div><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/general/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;General
</a>
</h3><article class="archive-item">
<a href="/spring-break-redesign/" class="archive-item-link">Spring Cleaning: April 2023</a>
</article><article class="archive-item">
<a href="/site-redesigned-2022/" class="archive-item-link">I Redesigned the Site</a>
</article><article class="archive-item">
<a href="/general-catchingup/" class="archive-item-link">Catching Up & Centralizing</a>
</article></div>
</div><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/leftclickcountermod/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;Left Click Counter
</a>
</h3></div>
</div><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/pranksuite/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;Prank Suite
</a>
</h3><article class="archive-item">
<a href="/prank-suite-release/" class="archive-item-link">Prank Suite Release</a>
</article></div>
</div><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/sparticus/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;Sparticus
</a>
</h3></div>
</div><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/tf2opengl/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;TF2 in OpenGL &amp; Java
</a>
</h3></div>
</div><div class="card-item">
<div class="card-item-wrapper">
<h3 class="card-item-title">
<a href="/categories/undergroundduels/">
<i class="far fa-folder fa-fw" aria-hidden="true"></i>&nbsp;Underground Duels
</a>
</h3></div>
</div></div></div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,106 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Left Click Counter - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Left Click Counter" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/leftclickcountermod/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Left Click Counter"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/leftclickcountermod/" /><link rel="alternate" href="/categories/leftclickcountermod/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/leftclickcountermod/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;Left Click Counter</h2></div>
<div class="page single">
<div class="content">
<p>It means what the name implies. Counts your left clicks in Minecraft. Downloads the latest release <a href="https://sites.google.com/view/toasty-modding/mods/left-click-counter-mod/downloads?authuser=0" target="_blank" rel="noopener noreffer ">here</a> (subject to change). Here is an ecerpt from the &ldquo;Catching Up &amp; Centralizing&rdquo; post about Left Click Counter mod:</p>
<p><em>&ldquo;The only thing I would change or work on with this is the system detecting left clicks. Which looking back, is not at all accurate. Although this would require me to change the updating system and as explained in <a href="/general/website/2021/08/08/general-catchingup.html#Centralizing" rel="">the centralizing section</a>, this probably won&rsquo;t happen.&rdquo;</em></p>
<p><em>&ldquo;I would like to&rdquo;</em>&hellip;<em>&ldquo;Update Left Click Counter mod to use this site for updating and whatnot, but seems very easy to over-engineer and mess up the update process. So Im going to leave it like it is for now unless I get bored and run out of projects.&rdquo;</em></p>
<p>There are no posts.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,8 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Left Click Counter - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/leftclickcountermod/</link>
<description>Left Click Counter - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/leftclickcountermod/" rel="self" type="application/rss+xml" /></channel>
</rss>

View File

@@ -1,130 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Prank Suite - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Prank Suite" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/pranksuite/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Prank Suite"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/pranksuite/" /><link rel="alternate" href="/categories/pranksuite/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/pranksuite/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;Prank Suite</h2><h3 class="group-title">2023</h3><article class="archive-item">
<a href="/prank-suite-release/" class="archive-item-link">Prank Suite Release</a>
<span class="archive-item-date">04-08</span>
</article></div>
<div class="page single">
<div class="content">
<p><em><a href="https://www.youtube.com/embed/grI_YSRRoBY" target="_blank" rel="noopener noreffer ">Formally, Weeb Detector</a> was a prank I made to use on my brother, since he started watching anime. He deserved this punishment fully. I made a video on how to set it up and a code walk-through aswell.</em></p>
<p>NOTE: This software can be used maliciously. I am no way responsible for the use of this software and encourage its use in good faith.</p>
<h2 id="features">Features</h2>
<ul>
<li>See and close open user&rsquo;s windows</li>
<li>Trigger popups with custom text</li>
<li>Trigger HTML popups</li>
<li>Remotely play sounds</li>
<li>Remotely change the user&rsquo;s wallpaper</li>
</ul>
<h2 id="changes-since-weeb-detector">Changes since Weeb Detector</h2>
<ul>
<li>Trigger HTML popups</li>
<li>Remotely play sounds</li>
<li>UI Redesign for ease of pranking</li>
<li>Ability to transfer files for all pranks</li>
</ul>
<h2 id="setup">Setup</h2>
<ol>
<li>Download the source code from <a href="https://github.com/higgy999/PrankSuite" target="_blank" rel="noopener noreffer ">GitHub</a></li>
<li>Open the project in IntelliJ and change the <code>SERVER_IP</code> in <code>PSClient.java</code> to your computers local IP address</li>
<li>Build the server and client artifacts</li>
<li>Download <a href="https://gluonhq.com/products/javafx/" target="_blank" rel="noopener noreffer ">JavaFX SDK</a> and extract it somewhere safe</li>
<li>When running the client and server, add <code>--module-path .\PATH_TO\javafx-sdk-XX.X.X\lib</code> and <code>--add-modules=javafx.controls,javafx.fxml,javafx.web</code> to the run command</li>
</ol>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,16 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Prank Suite - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/pranksuite/</link>
<description>Prank Suite - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/pranksuite/" rel="self" type="application/rss+xml" /><item>
<title>Prank Suite Release</title>
<link>https://higgy999.github.io/prank-suite-release/</link>
<pubDate>Sat, 08 Apr 2023 22:12:00 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/prank-suite-release/</guid>
<description><![CDATA[<p>The next step in pranking your friends and family.</p>]]></description>
</item>
</channel>
</rss>

View File

@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://higgy999.github.io/categories/pranksuite/</title>
<link rel="canonical" href="https://higgy999.github.io/categories/pranksuite/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://higgy999.github.io/categories/pranksuite/">
</head>
</html>

View File

@@ -1,105 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Sparticus - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Sparticus" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/sparticus/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Sparticus"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/sparticus/" /><link rel="alternate" href="/categories/sparticus/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/sparticus/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;Sparticus</h2></div>
<div class="page single">
<div class="content">
<p>Sparticus was an overly ambitious project that focused on combining ray-tracing with a Minecraft PVP client. It was going to be made in Unity and compatible with multiple Minecraft versions. There were no versions ever released. This fell through as described in the &ldquo;Catching Up &amp; Centralizing&rdquo; post. Here&rsquo;s an excerpt:</p>
<p><em>&ldquo;Yeah ummm&hellip; got a little too ambitious with it. At the time of the announcement, I knew very little about Unity, and because of how Unity works at a very high level, you either use tutorials or sit confused about it, doing nothing. Aside from that, texturing alone took forever and got me burnt out. The networking, which was promising at first, turned into a system that I was making changes to with no idea if anything was working. Essentially a programmer&rsquo;s worst nightmare, being stuck in a pandamonium of whether to continue or not with something that would be a pain to debug later. I&rsquo;m not completely lost on the idea. Sonic Ether&rsquo;s ray tracer for Java Edition is still in early development and doesn&rsquo;t use any of the fancy RTX/DLSS features or the AMD counterparts. Continuum Shaders have similar goals, like redoing the graphics engine with the latest OpenGL and then going to Vulkan later. They also plan on using the new ray tracing and upscaling features too! Google Search Console for the website clearly shows people have an interest in high fidelity, PVP clients.&rdquo;</em></p>
<p>There are no posts.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,8 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Sparticus - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/sparticus/</link>
<description>Sparticus - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/sparticus/" rel="self" type="application/rss+xml" /></channel>
</rss>

View File

@@ -1,105 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>TF2 in OpenGL &amp; Java - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="TF2 in OpenGL &amp; Java" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/tf2opengl/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="TF2 in OpenGL &amp; Java"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/tf2opengl/" /><link rel="alternate" href="/categories/tf2opengl/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/tf2opengl/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;TF2 in OpenGL &amp; Java</h2></div>
<div class="page single">
<div class="content">
<p>This is an on and off project to make TF2 in OpenGL, so I learn more about the render pipeline. The goals of this project later became what <a href="/butterengine/" rel="">Butter Engine</a> was supposed to be. There are no releases availble. Here&rsquo;s an excerpt from &ldquo;Catching Up &amp; Centralizing&rdquo; for more info:</p>
<p><em>&ldquo;Postponed until Butter Engine is &ldquo;done&rdquo; read <a href="%5cbutterengine%5cupdate%5cprogramming%5c2021%5c08%5c07%5cbutter-dejavu.html" rel="">here</a> on my current work with Butter Engine for more info. I followed <a href="https://learnopengl.com" target="_blank" rel="noopener noreffer ">LearnOpenGL.com&rsquo;s</a> tutorial to get started on this. This was kind of my deja vu when working on Butter Engine.&rdquo;</em></p>
<p>There are no posts.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,8 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>TF2 in OpenGL &amp; Java - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/tf2opengl/</link>
<description>TF2 in OpenGL &amp; Java - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/tf2opengl/" rel="self" type="application/rss+xml" /></channel>
</rss>

View File

@@ -1,105 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Underground Duels - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Underground Duels" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/undergroundduels/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Underground Duels"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/undergroundduels/" /><link rel="alternate" href="/categories/undergroundduels/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/undergroundduels/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;Underground Duels</h2></div>
<div class="page single">
<div class="content">
<p>Underground Duels is a project to make an FPS game to run on my school&rsquo;s chromebooks. No releases were ever published. Here&rsquo;s an excerpt from &ldquo;Catching Up &amp; Centralizing&rdquo; for more info:</p>
<p><em>&ldquo;This project started sensibly as a way to play a deathmatch FPS on school Chromebooks and learn how to use Mirror Networking at the same time. One small problem though, FPS games are very mice reliant. The alternative would be to have keys on the keyboard function similar to joysticks. It also always bugged me that the only way people talked about networking movement in Mirror was through always trusting the client. This bugged me a lot. Then I remembered of The Ship. A fun, murdering delight with the remastered (Remasted) made in Unity! But no progress was made here either as it&rsquo;s extremely hard to decompile and C# out of Unity 2015 due to so many issues with version compatibility that it&rsquo;s not worth the hassle for anyone to do. The remastered version is broken now as no localhost connections will work despite whatever configuration. I sent an email to their support team on the issue and offered my help to fix it, but I haven&rsquo;t gotten a response.&rdquo;</em></p>
<p>There are no posts.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,8 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Underground Duels - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/undergroundduels/</link>
<description>Underground Duels - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/undergroundduels/" rel="self" type="application/rss+xml" /></channel>
</rss>

View File

@@ -1,106 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Weeb Detector - Category - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Weeb Detector" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/categories/weebdetector/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Weeb Detector"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/categories/weebdetector/" /><link rel="alternate" href="/categories/weebdetector/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/categories/weebdetector/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="far fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;Weeb Detector</h2></div>
<div class="page single">
<div class="content">
<p>Weeb Detector was a prank I made to use on my brother, since he started watching anime. He deserved this punishment fully. I made a video on how to set it up and a code walk-through aswell. Here is an excerpt from &ldquo;Catching Up &amp; Centralizing&rdquo; on future plans:</p>
<p><em>&ldquo;Although just a one-off thing, I may add more prank features or make it Linux/MacOS compatible. It did help me get more familiar with networking in Java.&rdquo;</em></p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/grI_YSRRoBY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>There are no posts.</p>
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,8 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Weeb Detector - Category - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/categories/weebdetector/</link>
<description>Weeb Detector - Category - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><atom:link href="https://higgy999.github.io/categories/weebdetector/" rel="self" type="application/rss+xml" /></channel>
</rss>

627
config.toml Normal file
View File

@@ -0,0 +1,627 @@
baseURL = "https://higgy999.github.io"
# theme
theme = "LoveIt"
# website title
title = "LitlToast's Blog"
# determines default content language ["en", "zh-cn", "fr", "pl", ...]
defaultContentLanguage = "en"
# language code ["en", "zh-CN", "fr", "pl", ...]
languageCode = "en"
# language name ["English", "简体中文", "Français", "Polski", ...]
languageName = "English"
# whether to include Chinese/Japanese/Korean
hasCJKLanguage = false
# default amount of posts in each pages
paginate = 12
# google analytics code [UA-XXXXXXXX-X]
googleAnalytics = ""
# copyright description used only for seo schema
copyright = ""
# whether to use robots.txt
enableRobotsTXT = true
# whether to use git commit log
enableGitInfo = true
# whether to use emoji code
enableEmoji = true
# ignore some build errors
ignoreErrors = ["error-remote-getjson", "error-missing-instagram-accesstoken"]
# Author config
[author]
name = "LitlToast"
email = "joshuafhiggins@gmail.com"
link = "/"
# Menu config
[menu]
[[menu.main]]
weight = 1
identifier = "posts"
# you can add extra information before the name (HTML format is supported), such as icons
pre = ""
# you can add extra information after the name (HTML format is supported), such as icons
post = ""
name = "Posts"
url = "/posts/"
# title will be shown when you hover on this menu link
title = ""
[[menu.main]]
weight = 2
identifier = "categories"
pre = ""
post = ""
name = "Projects"
url = "/categories/"
title = ""
[[menu.main]]
weight = 3
identifier = "tags"
pre = ""
post = ""
name = "Tags"
url = "/tags/"
title = ""
[params]
# site default theme ["auto", "light", "dark"]
defaultTheme = "auto"
# public git repo url only then enableGitInfo is true
gitRepo = "https://github.com/higgy999/higgy999.github.io"
# which hash function used for SRI, when empty, no SRI is used
# ["sha256", "sha384", "sha512", "md5"]
# ["sha256", "sha384", "sha512", "md5"]
fingerprint = ""
# date format
dateFormat = "2006-01-02"
# website title for Open Graph and Twitter Cards
title = "LitlToast's Blog"
# website description for RSS, SEO, Open Graph and Twitter Cards
description = "It's his blog"
# website images for Open Graph and Twitter Cards
images = ["/images/dark-avatar.png"]
# Header config
[params.header]
# desktop header mode ["fixed", "normal", "auto"]
desktopMode = "fixed"
# mobile header mode ["fixed", "normal", "auto"]
mobileMode = "auto"
# Header title config
[params.header.title]
# URL of the LOGO
logo = ""
# title name
name = "LitlToast"
# you can add extra information before the name (HTML format is supported), such as icons
# pre = '<img src="/images/dark-avatar.png" width="25" height="25">'
# you can add extra information after the name (HTML format is supported), such as icons
post = ""
# whether to use typeit animation for title name
typeit = false
# Footer config
[params.footer]
enable = true
# Custom content (HTML format is supported)
custom = ""
# whether to show Hugo and theme info
hugo = true
# whether to show copyright info
copyright = true
# whether to show the author
author = true
# site creation time
since = 2021
# ICP info only in China (HTML format is supported)
icp = ""
# license info (HTML format is supported)
#license= '<a rel="license external nofollow noopener noreffer" href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>'
# Section (all posts) page config
[params.section]
# special amount of posts in each section page
paginate = 20
# date format (month and day)
dateFormat = "01-02"
# amount of RSS pages
rss = 10
# List (category or tag) page config
[params.list]
# special amount of posts in each list page
paginate = 20
# date format (month and day)
dateFormat = "01-02"
# amount of RSS pages
rss = 10
# App icon config
[params.app]
# optional site title override for the app when added to an iOS home screen or Android launcher
title = "LitlToast's Blog"
# whether to omit favicon resource links
noFavicon = false
# modern SVG favicon to use in place of older style .png and .ico files
svgFavicon = ""
# Android browser theme color
themeColor = "#ffffff"
# Safari mask icon color
iconColor = "#5bbad5"
# Windows v8-11 tile color
tileColor = "#da532c"
# Search config
[params.search]
enable = true
# type of search engine ["lunr", "algolia"]
type = "lunr"
# max index length of the chunked content
contentLength = 4000
# placeholder of the search bar
placeholder = ""
# max number of results length
maxResultLength = 10
# snippet length of the result
snippetLength = 30
# HTML tag name of the highlight part in results
highlightTag = "em"
# whether to use the absolute URL based on the baseURL in search index
absoluteURL = false
[params.search.algolia]
index = ""
appID = ""
searchKey = ""
# Home page config
[params.home]
# amount of RSS pages
rss = 10
# Home page profile
[params.home.profile]
enable = true
# Gravatar Email for preferred avatar in home page
gravatarEmail = ""
# URL of avatar shown in home page
avatarURL = "/images/dark-avatar.png"
# title shown in home page (HTML format is supported)
title = ""
# subtitle shown in home page (HTML format is supported)
subtitle = "This website features the latest news on my projects."
# whether to use typeit animation for subtitle
typeit = true
# whether to show social links
social = true
# disclaimer (HTML format is supported)
disclaimer = ""
# Home page posts
[params.home.posts]
enable = true
# special amount of posts in each home posts page
paginate = 6
# Social config in home page
[params.social]
GitHub = ""
Twitter = ""
Youtubecustom = ""
Youtubechannel = ""
Reddit = ""
Stackoverflow = ""
Paypal = ""
Patreon = ""
Steam = ""
Twitch = ""
Discord = ""
discordInvite = ""
Email = ""
RSS = ""
# Page global config
[params.page]
# whether to hide a page from home page
hiddenFromHomePage = false
# whether to hide a page from search results
hiddenFromSearch = false
# whether to enable twemoji
twemoji = false
# whether to enable lightgallery
lightgallery = false
# whether to enable the ruby extended syntax
ruby = true
# whether to enable the fraction extended syntax
fraction = true
# whether to enable the fontawesome extended syntax
fontawesome = true
# whether to show link to Raw Markdown content of the content
linkToMarkdown = true
# whether to show the full text content in RSS
rssFullText = false
# Table of the contents config
[params.page.toc]
# whether to enable the table of the contents
enable = true
# whether to keep the static table of the contents in front of the post
keepStatic = false
# whether to make the table of the contents in the sidebar automatically collapsed
auto = true
# Code config
[params.page.code]
# whether to show the copy button of the code block
copy = true
# the maximum number of lines of displayed code by default
maxShownLines = 50
# KaTeX mathematical formulas config (KaTeX https://katex.org/)
[params.page.math]
enable = false
# default inline delimiter is $ ... $ and \( ... \)
inlineLeftDelimiter = ""
inlineRightDelimiter = ""
# default block delimiter is $$ ... $$, \[ ... \], \begin{equation} ... \end{equation} and some other functions
blockLeftDelimiter = ""
blockRightDelimiter = ""
# KaTeX extension copy_tex
copyTex = true
# KaTeX extension mhchem
mhchem = true
# Mapbox GL JS config (Mapbox GL JS https://docs.mapbox.com/mapbox-gl-js)
[params.page.mapbox]
# access token of Mapbox GL JS
accessToken = "pk.eyJ1IjoiZGlsbG9uenEiLCJhIjoiY2s2czd2M2x3MDA0NjNmcGxmcjVrZmc2cyJ9.aSjv2BNuZUfARvxRYjSVZQ"
# style for the light theme
lightStyle = "mapbox://styles/mapbox/light-v10?optimize=true"
# style for the dark theme
darkStyle = "mapbox://styles/mapbox/dark-v10?optimize=true"
# whether to add NavigationControl (https://docs.mapbox.com/mapbox-gl-js/api/#navigationcontrol)
navigation = true
# whether to add GeolocateControl (https://docs.mapbox.com/mapbox-gl-js/api/#geolocatecontrol)
geolocate = true
# whether to add ScaleControl (https://docs.mapbox.com/mapbox-gl-js/api/#scalecontrol)
scale = true
# whether to add FullscreenControl (https://docs.mapbox.com/mapbox-gl-js/api/#fullscreencontrol)
fullscreen = true
# Social share links in post page
[params.page.share]
enable = true
Twitter = true
Facebook = false
Linkedin = false
Whatsapp = false
Pinterest = false
Tumblr = false
HackerNews = false
Reddit = true
VK = false
Buffer = false
Xing = false
Line = false
Instapaper = false
Pocket = false
Flipboard = false
Weibo = false
Blogger = false
Baidu = false
Odnoklassniki = false
Evernote = false
Skype = false
Trello = false
Mix = false
# Comment config
[params.page.comment]
enable = false
# Disqus comment config (https://disqus.com/)
[params.page.comment.disqus]
enable = false
# Disqus shortname to use Disqus in posts
shortname = ""
# Gitalk comment config (https://github.com/gitalk/gitalk)
[params.page.comment.gitalk]
enable = false
owner = ""
repo = ""
clientId = ""
clientSecret = ""
# Valine comment config (https://github.com/xCss/Valine)
[params.page.comment.valine]
enable = true
appId = "QGzwQXOqs5JOhN4RGPOkR2mR-MdYXbMMI"
appKey = "WBmoGyJtbqUswvfLh6L8iEBr"
placeholder = ""
avatar = "mp"
meta= ""
pageSize = 10
# automatically adapt the current theme i18n configuration when empty
lang = ""
visitor = true
recordIP = true
highlight = true
enableQQ = false
serverURLs = "https://leancloud.hugoloveit.com"
# emoji data file name, default is "google.yml"
# ["apple.yml", "google.yml", "facebook.yml", "twitter.yml"]
# located in "themes/LoveIt/assets/lib/valine/emoji/" directory
# you can store your own data files in the same path under your project:
# "assets/lib/valine/emoji/"
emoji = ""
# Facebook comment config (https://developers.facebook.com/docs/plugins/comments)
[params.page.comment.facebook]
enable = false
width = "100%"
numPosts = 10
appId = ""
# automatically adapt the current theme i18n configuration when empty
languageCode = ""
# Telegram comments config (https://comments.app/)
[params.page.comment.telegram]
enable = false
siteID = ""
limit = 5
height = ""
color = ""
colorful = true
dislikes = false
outlined = false
# Commento comment config (https://commento.io/)
[params.page.comment.commento]
enable = false
# utterances comment config (https://utteranc.es/)
[params.page.comment.utterances]
enable = false
# owner/repo
repo = ""
issueTerm = "pathname"
label = ""
lightTheme = "github-light"
darkTheme = "github-dark"
# giscus comment config (https://giscus.app/)
[params.page.comment.giscus]
# You can refer to the official documentation of giscus to use the following configuration.
enable = false
repo = ""
repoId = ""
category = "Announcements"
categoryId = ""
# automatically adapt the current theme i18n configuration when empty
lang = ""
mapping = "pathname"
reactionsEnabled = "1"
emitMetadata = "0"
inputPosition = "bottom"
lazyLoading = false
lightTheme = "light"
darkTheme = "dark"
# Third-party library config
[params.page.library]
[params.page.library.css]
# someCSS = "some.css"
# located in "assets/"
# Or someCSS = "https://cdn.example.com/some.css"
[params.page.library.js]
# someJavascript = "some.js"
# located in "assets/"
# Or omeJavascript = "https://cdn.example.com/some.js"
# Page SEO config
[params.page.seo]
# image URL
images = []
# Publisher info
[params.page.seo.publisher]
name = "LitlToast"
logoUrl = "/images/dark-avatar.png"
# TypeIt config
[params.typeit]
# typing speed between each step (measured in milliseconds)
speed = 100
# blinking speed of the cursor (measured in milliseconds)
cursorSpeed = 1000
# character used for the cursor (HTML format is supported)
cursorChar = "|"
# cursor duration after typing finishing (measured in milliseconds, "-1" means unlimited)
duration = -1
# Site verification code for Google/Bing/Yandex/Pinterest/Baidu
[params.verification]
google = ""
bing = ""
yandex = ""
pinterest = ""
baidu = ""
# # Site SEO config
# [params.seo]
# # image URL
# image = "/images/Apple-Devices-Preview.png"
# # thumbnail URL
# thumbnailUrl = "/images/screenshot.png"
# Analytics config
[params.analytics]
enable = false
# Google Analytics
[params.analytics.google]
id = ""
# whether to anonymize IP
anonymizeIP = true
# Fathom Analytics
[params.analytics.fathom]
id = ""
# server url for your tracker if you're self hosting
server = ""
# Plausible Analytics
[params.analytics.plausible]
dataDomain = ""
# Yandex Metrica
[params.analytics.yandexMetrica]
id = ""
# Cookie consent config
[params.cookieconsent]
enable = false
# text strings used for Cookie consent banner
[params.cookieconsent.content]
message = ""
dismiss = ""
link = ""
# CDN config for third-party library files
[params.cdn]
# CDN data file name, disabled by default
# ["jsdelivr.yml"]
# located in "themes/LoveIt/assets/data/cdn/" directory
# you can store your own data files in the same path under your project:
# "assets/data/cdn/"
data = "jsdelivr.yml"
# Compatibility config
[params.compatibility]
# whether to use Polyfill.io to be compatible with older browsers
polyfill = false
# whether to use object-fit-images to be compatible with older browsers
objectFit = false
# Markup related configuration in Hugo
[markup]
# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)
[markup.highlight]
codeFences = true
guessSyntax = true
lineNos = true
lineNumbersInTable = true
# false is a necessary configuration (https://github.com/dillonzq/LoveIt/issues/158)
noClasses = false
# Goldmark is from Hugo 0.60 the default library used for Markdown
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.renderer]
# whether to use HTML tags directly in the document
unsafe = true
# Table Of Contents settings
[markup.tableOfContents]
startLevel = 2
endLevel = 6
# Sitemap config
[sitemap]
changefreq = "weekly"
filename = "sitemap.xml"
priority = 0.5
# Permalinks config (https://gohugo.io/content-management/urls/#permalinks)
[Permalinks]
# posts = ":year/:month/:filename"
posts = ":filename"
# Privacy config (https://gohugo.io/about/hugo-and-gdpr/)
[privacy]
# privacy of the Google Analytics (replaced by params.analytics.google)
[privacy.googleAnalytics]
# ...
[privacy.twitter]
enableDNT = true
[privacy.youtube]
privacyEnhanced = true
# Options to make output .md files
[mediaTypes]
[mediaTypes."text/plain"]
suffixes = ["md"]
# Options to make output .md files
[outputFormats.MarkDown]
mediaType = "text/plain"
isPlainText = true
isHTML = false
# Options to make hugo output files
[outputs]
home = ["HTML", "RSS", "JSON"]
page = ["HTML", "MarkDown"]
section = ["HTML", "RSS"]
taxonomy = ["HTML", "RSS"]
taxonomyTerm = ["HTML"]
# Multilingual
[languages]
[languages.en]
weight = 1
languageCode = "en"
languageName = "English"
hasCJKLanguage = false
[languages.en.menu]
[[languages.en.menu.main]]
weight = 1
identifier = "posts"
pre = ""
post = ""
name = "Posts"
url = "/posts/"
title = ""
[[languages.en.menu.main]]
weight = 2
identifier = "categories"
pre = ""
post = ""
name = "Projects"
url = "/categories/"
title = ""
[[languages.en.menu.main]]
weight = 3
identifier = "tags"
pre = ""
post = ""
name = "Tags"
url = "/tags/"
title = ""
[[languages.en.menu.main]]
weight = 4
identifier = "about"
pre = ""
post = ""
name = "About"
url = "/about/"
title = ""
[languages.en.params]
[languages.en.params.search]
enable = true
type = "lunr"
contentLength = 4000
placeholder = ""
maxResultLength = 10
snippetLength = 30
highlightTag = "em"
absoluteURL = false
[languages.en.params.search.algolia]
#index = "index.en"
index = "index"
appID = "PASDMWALPK"
searchKey = "b42948e51daaa93df92381c8e2ac0f93"
[languages.en.params.home]
rss = 10
[languages.en.params.home.profile]
enable = true
gravatarEmail = ""
avatarURL = "/images/dark-avatar.png"
title = ""
subtitle = "This website features the latest news on my projects."
typeit = true
social = true
disclaimer = ""
[languages.en.params.social]
GitHub = "higgy999"
#Twitter = "ModsToasty"
Youtubechannel = "UCIk0qQcaVTxhfTD9sK_0PtQ"
Email = "joshuafhiggins@gmail.com"
Discord = "b48D4m8jNs"
RSS = true

View File

@@ -1,5 +1,15 @@
# About
---
title: "About"
date: 2019-08-02T11:04:49+08:00
draft: false
description: "About"
images: ["/banner.png"]
lightgallery: true
# math:
# enable: true
---
![Banner](/images/banner.png "A banner I made")

View File

@@ -0,0 +1,3 @@
---
title: "Projects"
---

View File

@@ -0,0 +1,9 @@
---
title: "Butter Engine"
---
Butter Engine is a game engine made in LWJGL and uses its subset libraries for various tasks. What originally started as a simple rendering library to use LWJGL easier is now becoming a fully-fledged engine and with the hope to fill the same role as Garry's Mod in end-user development.
Although similar to other projects in ambition, the hope is to work on certain parts of the TODO list at a time. For example, spending some time on rendering and then transitioning to audio, to ECS, and back.
The checklist is available on the [GitHub repository](https://github.com/higgy999/ButterEngine).

View File

@@ -0,0 +1,11 @@
---
title: "Game Time"
---
Game Time is a Minecraft mod that tracks time spent in game. I have no idea where I put the downloads. Here's an excerpt from the "Catching Up & Centralizing" post on what my plans are for this:
*"I think this would be more suited as a general-purpose desktop app that works similar to the way Steam keeps track of hours. It would also be a general-purpose, statistic-keeping app with a name change."*
As stated, this is an intresting project that I'm definitly going to revist and update.
There are no posts.

View File

@@ -0,0 +1,5 @@
---
title: "General"
---
Just general thing, like this website.

View File

@@ -0,0 +1,11 @@
---
title: "Left Click Counter"
---
It means what the name implies. Counts your left clicks in Minecraft. Downloads the latest release [here](https://sites.google.com/view/toasty-modding/mods/left-click-counter-mod/downloads?authuser=0) (subject to change). Here is an ecerpt from the "Catching Up & Centralizing" post about Left Click Counter mod:
*"The only thing I would change or work on with this is the system detecting left clicks. Which looking back, is not at all accurate. Although this would require me to change the updating system and as explained in [the centralizing section](/general/website/2021/08/08/general-catchingup.html#Centralizing), this probably won't happen."*
*"I would like to"*...*"Update Left Click Counter mod to use this site for updating and whatnot, but seems very easy to over-engineer and mess up the update process. So Im going to leave it like it is for now unless I get bored and run out of projects."*
There are no posts.

View File

@@ -0,0 +1,26 @@
---
title: "Prank Suite"
---
*[Formally, Weeb Detector](https://www.youtube.com/embed/grI_YSRRoBY) was a prank I made to use on my brother, since he started watching anime. He deserved this punishment fully. I made a video on how to set it up and a code walk-through aswell.*
NOTE: This software can be used maliciously. I am no way responsible for the use of this software and encourage its use in good faith.
## Features
- See and close open user's windows
- Trigger popups with custom text
- Trigger HTML popups
- Remotely play sounds
- Remotely change the user's wallpaper
## Changes since Weeb Detector
- Trigger HTML popups
- Remotely play sounds
- UI Redesign for ease of pranking
- Ability to transfer files for all pranks
## Setup
1. Download the source code from [GitHub](https://github.com/higgy999/PrankSuite)
2. Open the project in IntelliJ and change the `SERVER_IP` in `PSClient.java` to your computers local IP address
3. Build the server and client artifacts
4. Download [JavaFX SDK](https://gluonhq.com/products/javafx/) and extract it somewhere safe
5. When running the client and server, add `--module-path .\PATH_TO\javafx-sdk-XX.X.X\lib` and `--add-modules=javafx.controls,javafx.fxml,javafx.web` to the run command

View File

@@ -0,0 +1,9 @@
---
title: "Sparticus"
---
Sparticus was an overly ambitious project that focused on combining ray-tracing with a Minecraft PVP client. It was going to be made in Unity and compatible with multiple Minecraft versions. There were no versions ever released. This fell through as described in the "Catching Up & Centralizing" post. Here's an excerpt:
*"Yeah ummm... got a little too ambitious with it. At the time of the announcement, I knew very little about Unity, and because of how Unity works at a very high level, you either use tutorials or sit confused about it, doing nothing. Aside from that, texturing alone took forever and got me burnt out. The networking, which was promising at first, turned into a system that I was making changes to with no idea if anything was working. Essentially a programmer's worst nightmare, being stuck in a pandamonium of whether to continue or not with something that would be a pain to debug later. I'm not completely lost on the idea. Sonic Ether's ray tracer for Java Edition is still in early development and doesn't use any of the fancy RTX/DLSS features or the AMD counterparts. Continuum Shaders have similar goals, like redoing the graphics engine with the latest OpenGL and then going to Vulkan later. They also plan on using the new ray tracing and upscaling features too! Google Search Console for the website clearly shows people have an interest in high fidelity, PVP clients."*
There are no posts.

View File

@@ -0,0 +1,9 @@
---
title: "TF2 in OpenGL & Java"
---
This is an on and off project to make TF2 in OpenGL, so I learn more about the render pipeline. The goals of this project later became what [Butter Engine](/butterengine/) was supposed to be. There are no releases availble. Here's an excerpt from "Catching Up & Centralizing" for more info:
*"Postponed until Butter Engine is "done" read [here](\butterengine\update\programming\2021\08\07\butter-dejavu.html) on my current work with Butter Engine for more info. I followed [LearnOpenGL.com's](https://learnopengl.com) tutorial to get started on this. This was kind of my deja vu when working on Butter Engine."*
There are no posts.

View File

@@ -0,0 +1,9 @@
---
title: "Underground Duels"
---
Underground Duels is a project to make an FPS game to run on my school's chromebooks. No releases were ever published. Here's an excerpt from "Catching Up & Centralizing" for more info:
*"This project started sensibly as a way to play a deathmatch FPS on school Chromebooks and learn how to use Mirror Networking at the same time. One small problem though, FPS games are very mice reliant. The alternative would be to have keys on the keyboard function similar to joysticks. It also always bugged me that the only way people talked about networking movement in Mirror was through always trusting the client. This bugged me a lot. Then I remembered of The Ship. A fun, murdering delight with the remastered (Remasted) made in Unity! But no progress was made here either as it's extremely hard to decompile and C# out of Unity 2015 due to so many issues with version compatibility that it's not worth the hassle for anyone to do. The remastered version is broken now as no localhost connections will work despite whatever configuration. I sent an email to their support team on the issue and offered my help to fix it, but I haven't gotten a response."*
There are no posts.

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -1,5 +1,22 @@
# Getting Deja Vu Right Now
---
title: "Getting Deja Vu Right Now"
date: 2021-08-08T21:21:30-04:00
lastmod: 2022-08-22T16:02:56-04:00
draft: false
# author: "LitlToast"
# authorLink: "https://higgy999.github.io"
description: "I feel like I wrote this code before..."
images: ["/butter-smiley-streched.png", "/butter-smiley-projected.png", "/butter-dragon-modelloading.png"]
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Butter Engine", "Update", "Programming"]
categories: ["butterengine"]
lightgallery: true
---
I feel like I wrote this code before...

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 KiB

View File

@@ -0,0 +1,32 @@
---
title: "Butter Engine: April 2023"
date: 2022-08-21T15:02:56-04:00
lastmod: 2022-08-21T16:02:56-04:00
# date: YEAR-MONTH-DAYTHOUR:MINUTE:SECOND-04:00
draft: true
# author: "LitlToast"
# authorLink: "https://higgy999.github.io"
description: "Description"
images: []
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Tag"]
categories: ["Project"]
lightgallery: true
#For this example to not be shown:
hiddenFromHomePage: true
hiddenFromSearch: true
---
Description
Butter Engine (Java): UI, Physics, and Maps Post
Now in Rust, Java struggles
Whats Rust Like
<!--more-->

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 KiB

View File

@@ -0,0 +1,29 @@
---
title: "Example"
date: 2022-08-21T15:02:56-04:00
lastmod: 2022-08-21T16:02:56-04:00
# date: YEAR-MONTH-DAYTHOUR:MINUTE:SECOND-04:00
draft: true
# author: "LitlToast"
# authorLink: "https://higgy999.github.io"
description: "Description"
images: []
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Tag"]
categories: ["Project"]
lightgallery: true
#For this example to not be shown:
hiddenFromHomePage: true
hiddenFromSearch: true
---
Description
<!--more-->

View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

@@ -1,5 +1,20 @@
# Catching Up & Centralizing
---
title: "Catching Up & Centralizing"
date: 2021-08-08T20:29:20-04:00
lastmod: 2022-08-22T19:13:30-04:00
draft: false
description: "General things I need to do with the site"
images: []
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Website", "General"]
categories: ["general"]
lightgallery: true
---
General things I need to do with the site
@@ -32,4 +47,3 @@ I would like to merge the Sparticus site into here and update Left Click Counter
*So when I'm old and decrepit, I'll update my first ever Minecraft mod.*

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -1,5 +1,23 @@
# Prank Suite Release
---
title: "Prank Suite Release"
date: 2023-04-08T22:12:00-04:00
lastmod: 2023-04-08T22:12:00-04:00
# date: YEAR-MONTH-DAYTHOUR:MINUTE:SECOND-04:00
draft: false
# author: "LitlToast"
# authorLink: "https://higgy999.github.io"
description: "The next step in pranking your friends and family."
images: []
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Update", "Release", "Programming"]
categories: ["pranksuite"]
lightgallery: true
---
The next step in pranking your friends and family.

View File

Before

Width:  |  Height:  |  Size: 119 KiB

After

Width:  |  Height:  |  Size: 119 KiB

View File

@@ -1,5 +1,20 @@
# I Redesigned the Site
---
title: "I Redesigned the Site"
date: 2022-08-23T00:09:32-04:00
lastmod: 2022-08-23T00:09:32-04:00
draft: false
description: "Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched."
images: []
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Website", "Update"]
categories: ["general"]
lightgallery: true
---
Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched.

View File

Before

Width:  |  Height:  |  Size: 3.9 MiB

After

Width:  |  Height:  |  Size: 3.9 MiB

View File

@@ -1,5 +1,23 @@
# Spring Cleaning: April 2023
---
title: "Spring Cleaning: April 2023"
date: 2023-04-08T14:55:00-04:00
lastmod: 2023-04-08T14:55:00-04:00
# date: YEAR-MONTH-DAYTHOUR:MINUTE:SECOND-04:00
draft: false
# author: "LitlToast"
# authorLink: "https://higgy999.github.io"
description: "I made no posts for the rest of 2022, since the last redesign, and then I felt like redesigning the site again."
images: ["/april2023-website.png", "/april2023-bard.png", "/april2023-toaster.png"]
resources:
- name: "featured-image"
src: "featured-image.png"
tags: ["Website", "General"]
categories: ["general"]
lightgallery: true
---
I made no posts for the rest of 2022 since the last redesign, and then I felt like redesigning the site again. (AI generated image btw)

3
css/style.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,201 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Catching Up &amp; Centralizing - LitlToast&#39;s Blog</title><meta name="Description" content="General things I need to do with the site"><meta property="og:title" content="Catching Up &amp; Centralizing" />
<meta property="og:description" content="General things I need to do with the site" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://higgy999.github.io/general-catchingup/" /><meta property="og:image" content="https://higgy999.github.io/general-catchingup/featured-image.png"/><meta property="article:section" content="posts" />
<meta property="article:published_time" content="2021-08-08T20:29:20-04:00" />
<meta property="article:modified_time" content="2022-08-23T15:10:16-04:00" /><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/general-catchingup/featured-image.png"/>
<meta name="twitter:title" content="Catching Up &amp; Centralizing"/>
<meta name="twitter:description" content="General things I need to do with the site"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/general-catchingup/" /><link rel="next" href="https://higgy999.github.io/butter-dejavu/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "Catching Up \u0026 Centralizing",
"inLanguage": "en",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https:\/\/higgy999.github.io\/general-catchingup\/"
},"image": [{
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/general-catchingup\/featured-image.png",
"width": 1920 ,
"height": 500
}],"genre": "posts","keywords": "Website, General","wordcount": 665 ,
"url": "https:\/\/higgy999.github.io\/general-catchingup\/","datePublished": "2021-08-08T20:29:20-04:00","dateModified": "2022-08-23T15:10:16-04:00","publisher": {
"@type": "Organization",
"name": "LitlToast","logo": {
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/images\/dark-avatar.png",
"width": 288 ,
"height": 288
}},"author": {
"@type": "Person",
"name": "LitlToast"
},"description": "General things I need to do with the site"
}
</script></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="toc" id="toc-auto">
<h2 class="toc-title">Contents</h2>
<div class="toc-content" id="toc-content-auto"></div>
</div><article class="page single"><h1 class="single-title animate__animated animate__flipInX">Catching Up & Centralizing</h1><div class="post-meta">
<div class="post-meta-line"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-category">included in <a href="/categories/general/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>General</a></span></div>
<div class="post-meta-line"><i class="far fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;<time datetime="2021-08-08">2021-08-08</time>&nbsp;<i class="fas fa-pencil-alt fa-fw" aria-hidden="true"></i>&nbsp;665 words&nbsp;
<i class="far fa-clock fa-fw" aria-hidden="true"></i>&nbsp;4 minutes&nbsp;</div>
</div><div class="featured-image"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/general-catchingup/featured-image.png"
data-srcset="/general-catchingup/featured-image.png, /general-catchingup/featured-image.png 1.5x, /general-catchingup/featured-image.png 2x"
data-sizes="auto"
alt="/general-catchingup/featured-image.png"
title="General things I need to do with the site" /></div><div class="details toc" id="toc-static" data-kept="">
<div class="details-summary toc-title">
<span>Contents</span>
<span><i class="details-icon fas fa-angle-right" aria-hidden="true"></i></span>
</div>
<div class="details-content toc-content" id="toc-content-static"><nav id="TableOfContents">
<ul>
<li><a href="#catching-up">Catching Up</a>
<ul>
<li><a href="#left-click-counter-mod">Left Click Counter Mod</a></li>
<li><a href="#game-time-mod">Game Time Mod</a></li>
<li><a href="#sparticus">Sparticus</a></li>
<li><a href="#underground-duels">Underground Duels</a></li>
<li><a href="#tf2-opengl--java">TF2 OpenGL &amp; Java</a></li>
<li><a href="#weeb-detector">Weeb Detector</a></li>
</ul>
</li>
<li><a href="#centralizing">Centralizing</a></li>
</ul>
</nav></div>
</div><div class="content" id="content"><p>General things I need to do with the site</p>
<h2 id="catching-up">Catching Up</h2>
<p>There&rsquo;s a lot that hasn&rsquo;t been covered yet on other projects that would just take way too long to write pages and posts for those pages on projects that were canceled or have seen very little progress. I plan on updating this site every week with what I have been up to.</p>
<h3 id="left-click-counter-mod">Left Click Counter Mod</h3>
<p>The only thing I would change or work on with this is the system detecting left clicks. Which looking back, is not at all accurate. Although this would require me to change the updating system and as explained in <a href="#centralizing" rel="">the centralizing section</a>, this probably won&rsquo;t happen.</p>
<h3 id="game-time-mod">Game Time Mod</h3>
<p>I think this would be more suited as a general-purpose desktop app that works similar to the way Steam keeps track of hours. It would also be a general-purpose, statistic-keeping app with a name change.</p>
<h3 id="sparticus">Sparticus</h3>
<p>Yeah ummm&hellip; got a little too ambitious with it. At the time of the announcement, I knew very little about Unity, and because of how Unity works at a very high level, you either use tutorials or sit confused about it, doing nothing. Aside from that, texturing alone took forever and got me burnt out. The networking, which was promising at first, turned into a system that I was making changes to with no idea if anything was working. Essentially a programmer&rsquo;s worst nightmare, being stuck in a pandamonium of whether to continue or not with something that would be a pain to debug later. I&rsquo;m not completely lost on the idea. Sonic Ether&rsquo;s ray tracer for Java Edition is still in early development and doesn&rsquo;t use any of the fancy RTX/DLSS features or the AMD counterparts. Continuum Shaders have similar goals, like redoing the graphics engine with the latest OpenGL and then going to Vulkan later. They also plan on using the new ray tracing and upscaling features too! Google Search Console for the website clearly shows people have an interest in high fidelity, PVP clients.</p>
<h3 id="underground-duels">Underground Duels</h3>
<p>This project started sensibly as a way to play a deathmatch FPS on school Chromebooks and learn how to use Mirror Networking at the same time. One small problem though, FPS games are very mice reliant. The alternative would be to have keys on the keyboard function similar to joysticks. It also always bugged me that the only way people talked about networking movement in Mirror was through always trusting the client. This bugged me a lot. Then I remembered of The Ship. A fun, murdering delight with the remastered <em>(Remasted)</em> made in Unity! But no progress was made here either as it&rsquo;s extremely hard to decompile and C# out of Unity 2015 due to so many issues with version compatibility that it&rsquo;s not worth the hassle for anyone to do. The remastered version is broken now as no localhost connections will work despite whatever configuration. I sent an email to their support team on the issue and offered my help to fix it, but I haven&rsquo;t gotten a response.</p>
<h3 id="tf2-opengl--java">TF2 OpenGL &amp; Java</h3>
<p>Postponed until Butter Engine is &ldquo;done&rdquo; read <a href="/butter-dejavu" rel="">here</a> on my current work with Butter Engine for more info. I followed <a href="https://learnopengl.com" target="_blank" rel="noopener noreffer ">LearnOpenGL.com&rsquo;s</a> tutorial to get started on this. This was kind of my deja vu when working on Butter Engine.</p>
<h3 id="weeb-detector">Weeb Detector</h3>
<p>Although just a one-off thing, I may add more prank features or make it Linux/MacOS compatible. It did help me get more familiar with networking in Java.</p>
<h2 id="centralizing">Centralizing</h2>
<p>I would like to merge the Sparticus site into here and update Left Click Counter mod to use this site for updating and whatnot, but seems very easy to over-engineer and mess up the update process. So I&rsquo;m going to leave it like it is for now unless I get bored and run out of projects. I&rsquo;m also working on adding a page on here for every project.</p>
<p><em>So when I&rsquo;m old and decrepit, I&rsquo;ll update my first ever Minecraft mod.</em></p></div><div class="post-footer" id="post-footer">
<div class="post-info">
<div class="post-info-line">
<div class="post-info-mod">
<span>Updated on 2022-08-23&nbsp;<a class="git-hash" href="https://github.com/higgy999/higgy999.github.io/commit/176375515f15c94950184256ef64edc4f048643d" target="_blank" title="commit by Litl Toast(joshuafhiggins@gmail.com) 176375515f15c94950184256ef64edc4f048643d: Regular Files">
<i class="fas fa-hashtag fa-fw" aria-hidden="true"></i>1763755</a></span>
</div></div>
<div class="post-info-line">
<div class="post-info-md"><span>
<a class="link-to-markdown" href="/general-catchingup/index.md" target="_blank">Read Markdown</a>
</span></div>
<div class="post-info-share">
<span><a href="javascript:void(0);" title="Share on Twitter" data-sharer="twitter" data-url="https://higgy999.github.io/general-catchingup/" data-title="Catching Up &amp; Centralizing" data-hashtags="Website,General"><i class="fab fa-twitter fa-fw" aria-hidden="true"></i></a><a href="javascript:void(0);" title="Share on Reddit" data-sharer="reddit" data-url="https://higgy999.github.io/general-catchingup/"><i class="fab fa-reddit fa-fw" aria-hidden="true"></i></a></span>
</div>
</div>
</div>
<div class="post-info-more">
<section class="post-tags"><i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/website/">Website</a>,&nbsp;<a href="/tags/general/">General</a></section>
<section>
<span><a href="javascript:void(0);" onclick="window.history.back();">Back</a></span>&nbsp;|&nbsp;<span><a href="/">Home</a></span>
</section>
</div>
<div class="post-nav">
<a href="/butter-dejavu/" class="next" rel="next" title="Getting Deja Vu Right Now">Getting Deja Vu Right Now<i class="fas fa-angle-right fa-fw" aria-hidden="true"></i></a></div>
</div>
</article></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/css/lightgallery-bundle.min.css"><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/lightgallery.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/thumbnail/lg-thumbnail.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/zoom/lg-zoom.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"comment":{},"lightgallery":true,"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1 +0,0 @@
google-site-verification: google3fe76197e801b0e9.html

View File

@@ -1,184 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="generator" content="Hugo 0.111.3">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="LitlToast&#39;s Blog" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="LitlToast&#39;s Blog"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/" /><link rel="alternate" href="/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https:\/\/higgy999.github.io\/","inLanguage": "en","author": {
"@type": "Person",
"name": "LitlToast"
},"description": "It's his blog","name": "LitlToast's Blog"
}
</script></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page home" data-home="posts"><div class="home-profile"><div class="home-avatar"><a href="/posts/" title="Posts"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/dark-avatar.png"
data-srcset="/images/dark-avatar.png, /images/dark-avatar.png 1.5x, /images/dark-avatar.png 2x"
data-sizes="auto"
alt="/images/dark-avatar.png"
title="/images/dark-avatar.png" width="288" height="288" /></a></div><div class="home-subtitle"><div id="id-1" class="typeit"></div></div><div class="links"><a href="https://github.com/higgy999" title="GitHub" target="_blank" rel="noopener noreffer me"><i class="fab fa-github fa-fw" aria-hidden="true"></i></a><a href="https://www.youtube.com/channel/UCIk0qQcaVTxhfTD9sK_0PtQ" title="YouTube" target="_blank" rel="noopener noreffer me"><i class="fab fa-youtube fa-fw" aria-hidden="true"></i></a><a href="https://discord.com/invite/b48D4m8jNs" title="Discord" target="_blank" rel="noopener noreffer me"><i class="fab fa-discord fa-fw" aria-hidden="true"></i></a><a href="mailto:joshuafhiggins@gmail.com" title="Email" rel="me"><i class="far fa-envelope fa-fw" aria-hidden="true"></i></a><a href="/index.xml" title="RSS" target="_blank" rel="noopener noreffer me"><i class="fas fa-rss fa-fw" aria-hidden="true"></i></a></div></div>
<article class="single summary" itemscope itemtype="http://schema.org/Article"><div class="featured-image-preview">
<a href="/prank-suite-release/"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/prank-suite-release/featured-image.png"
data-srcset="/prank-suite-release/featured-image.png, /prank-suite-release/featured-image.png 1.5x, /prank-suite-release/featured-image.png 2x"
data-sizes="auto"
alt="/prank-suite-release/featured-image.png"
title="The next step in pranking your friends and family." /></a>
</div><h1 class="single-title" itemprop="name headline">
<a href="/prank-suite-release/">Prank Suite Release</a>
</h1><div class="post-meta"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-publish">published on <time datetime="2023-04-08">2023-04-08</time></span>&nbsp;<span class="post-category">included in <a href="/categories/pranksuite/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>Prank Suite</a></span></div><div class="content"><p>The next step in pranking your friends and family.</p></div><div class="post-footer">
<a href="/prank-suite-release/">Read More</a><div class="post-tags">
<i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/update/">Update</a>,&nbsp;<a href="/tags/release/">Release</a>,&nbsp;<a href="/tags/programming/">Programming</a></div></div>
</article><article class="single summary" itemscope itemtype="http://schema.org/Article"><div class="featured-image-preview">
<a href="/spring-break-redesign/"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/spring-break-redesign/featured-image.png"
data-srcset="/spring-break-redesign/featured-image.png, /spring-break-redesign/featured-image.png 1.5x, /spring-break-redesign/featured-image.png 2x"
data-sizes="auto"
alt="/spring-break-redesign/featured-image.png"
title="I made no posts for the rest of 2022, since the last redesign, and then I felt like redesigning the site again." /></a>
</div><h1 class="single-title" itemprop="name headline">
<a href="/spring-break-redesign/">Spring Cleaning: April 2023</a>
</h1><div class="post-meta"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-publish">published on <time datetime="2023-04-08">2023-04-08</time></span>&nbsp;<span class="post-category">included in <a href="/categories/general/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>General</a></span></div><div class="content"><p>I made no posts for the rest of 2022 since the last redesign, and then I felt like redesigning the site again. (AI generated image btw)</p></div><div class="post-footer">
<a href="/spring-break-redesign/">Read More</a><div class="post-tags">
<i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/website/">Website</a>,&nbsp;<a href="/tags/general/">General</a></div></div>
</article><article class="single summary" itemscope itemtype="http://schema.org/Article"><div class="featured-image-preview">
<a href="/site-redesigned-2022/"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/site-redesigned-2022/featured-image.png"
data-srcset="/site-redesigned-2022/featured-image.png, /site-redesigned-2022/featured-image.png 1.5x, /site-redesigned-2022/featured-image.png 2x"
data-sizes="auto"
alt="/site-redesigned-2022/featured-image.png"
title="Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched." /></a>
</div><h1 class="single-title" itemprop="name headline">
<a href="/site-redesigned-2022/">I Redesigned the Site</a>
</h1><div class="post-meta"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-publish">published on <time datetime="2022-08-23">2022-08-23</time></span>&nbsp;<span class="post-category">included in <a href="/categories/general/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>General</a></span></div><div class="content"><p>Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched.</p></div><div class="post-footer">
<a href="/site-redesigned-2022/">Read More</a><div class="post-tags">
<i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/website/">Website</a>,&nbsp;<a href="/tags/update/">Update</a></div></div>
</article><article class="single summary" itemscope itemtype="http://schema.org/Article"><div class="featured-image-preview">
<a href="/butter-dejavu/"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/butter-dejavu/featured-image.png"
data-srcset="/butter-dejavu/featured-image.png, /butter-dejavu/featured-image.png 1.5x, /butter-dejavu/featured-image.png 2x"
data-sizes="auto"
alt="/butter-dejavu/featured-image.png"
title="I feel like I wrote this code before..." /></a>
</div><h1 class="single-title" itemprop="name headline">
<a href="/butter-dejavu/">Getting Deja Vu Right Now</a>
</h1><div class="post-meta"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-publish">published on <time datetime="2021-08-08">2021-08-08</time></span>&nbsp;<span class="post-category">included in <a href="/categories/butterengine/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>Butter Engine</a></span></div><div class="content"><p>I feel like I wrote this code before&hellip;</p></div><div class="post-footer">
<a href="/butter-dejavu/">Read More</a><div class="post-tags">
<i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/butter-engine/">Butter Engine</a>,&nbsp;<a href="/tags/update/">Update</a>,&nbsp;<a href="/tags/programming/">Programming</a></div></div>
</article><article class="single summary" itemscope itemtype="http://schema.org/Article"><div class="featured-image-preview">
<a href="/general-catchingup/"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/general-catchingup/featured-image.png"
data-srcset="/general-catchingup/featured-image.png, /general-catchingup/featured-image.png 1.5x, /general-catchingup/featured-image.png 2x"
data-sizes="auto"
alt="/general-catchingup/featured-image.png"
title="General things I need to do with the site" /></a>
</div><h1 class="single-title" itemprop="name headline">
<a href="/general-catchingup/">Catching Up & Centralizing</a>
</h1><div class="post-meta"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-publish">published on <time datetime="2021-08-08">2021-08-08</time></span>&nbsp;<span class="post-category">included in <a href="/categories/general/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>General</a></span></div><div class="content"><p>General things I need to do with the site</p></div><div class="post-footer">
<a href="/general-catchingup/">Read More</a><div class="post-tags">
<i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/website/">Website</a>,&nbsp;<a href="/tags/general/">General</a></div></div>
</article></div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/typeit@8.6.0/dist/index.umd.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"data":{"id-1":"This website features the latest news on my projects."},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"},"typeit":{"cursorChar":"|","cursorSpeed":1000,"data":{"id-1":["id-1"]},"duration":-1,"speed":100}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

File diff suppressed because one or more lines are too long

View File

@@ -1,50 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/</link>
<description>It&#39;s his blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><lastBuildDate>Sat, 08 Apr 2023 22:12:00 -0400</lastBuildDate>
<atom:link href="https://higgy999.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Prank Suite Release</title>
<link>https://higgy999.github.io/prank-suite-release/</link>
<pubDate>Sat, 08 Apr 2023 22:12:00 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/prank-suite-release/</guid>
<description><![CDATA[<p>The next step in pranking your friends and family.</p>]]></description>
</item>
<item>
<title>Spring Cleaning: April 2023</title>
<link>https://higgy999.github.io/spring-break-redesign/</link>
<pubDate>Sat, 08 Apr 2023 14:55:00 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/spring-break-redesign/</guid>
<description><![CDATA[<p>I made no posts for the rest of 2022 since the last redesign, and then I felt like redesigning the site again. (AI generated image btw)</p>]]></description>
</item>
<item>
<title>I Redesigned the Site</title>
<link>https://higgy999.github.io/site-redesigned-2022/</link>
<pubDate>Tue, 23 Aug 2022 00:09:32 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/site-redesigned-2022/</guid>
<description><![CDATA[<p>Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched.</p>]]></description>
</item>
<item>
<title>Getting Deja Vu Right Now</title>
<link>https://higgy999.github.io/butter-dejavu/</link>
<pubDate>Sun, 08 Aug 2021 21:21:30 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/butter-dejavu/</guid>
<description><![CDATA[<p>I feel like I wrote this code before&hellip;</p>]]></description>
</item>
<item>
<title>Catching Up &amp; Centralizing</title>
<link>https://higgy999.github.io/general-catchingup/</link>
<pubDate>Sun, 08 Aug 2021 20:29:20 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/general-catchingup/</guid>
<description><![CDATA[<p>General things I need to do with the site</p>]]></description>
</item>
</channel>
</rss>

4
js/theme.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://higgy999.github.io/</title>
<link rel="canonical" href="https://higgy999.github.io/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://higgy999.github.io/">
</head>
</html>

View File

@@ -1,111 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>All Posts - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Posts" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/posts/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Posts"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/posts/" /><link rel="alternate" href="/posts/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/posts/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item active" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster">All Posts</h2><h3 class="group-title">2023</h3><article class="archive-item">
<a href="/prank-suite-release/" class="archive-item-link">Prank Suite Release</a>
<span class="archive-item-date">04-08</span>
</article><article class="archive-item">
<a href="/spring-break-redesign/" class="archive-item-link">Spring Cleaning: April 2023</a>
<span class="archive-item-date">04-08</span>
</article><h3 class="group-title">2022</h3><article class="archive-item">
<a href="/site-redesigned-2022/" class="archive-item-link">I Redesigned the Site</a>
<span class="archive-item-date">08-23</span>
</article><h3 class="group-title">2021</h3><article class="archive-item">
<a href="/butter-dejavu/" class="archive-item-link">Getting Deja Vu Right Now</a>
<span class="archive-item-date">08-08</span>
</article><article class="archive-item">
<a href="/general-catchingup/" class="archive-item-link">Catching Up & Centralizing</a>
<span class="archive-item-date">08-08</span>
</article></div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,48 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>All Posts - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/posts/</link>
<description>All Posts | LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><lastBuildDate>Sat, 08 Apr 2023 22:12:00 -0400</lastBuildDate><atom:link href="https://higgy999.github.io/posts/" rel="self" type="application/rss+xml" /><item>
<title>Prank Suite Release</title>
<link>https://higgy999.github.io/prank-suite-release/</link>
<pubDate>Sat, 08 Apr 2023 22:12:00 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/prank-suite-release/</guid>
<description><![CDATA[<p>The next step in pranking your friends and family.</p>]]></description>
</item>
<item>
<title>Spring Cleaning: April 2023</title>
<link>https://higgy999.github.io/spring-break-redesign/</link>
<pubDate>Sat, 08 Apr 2023 14:55:00 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/spring-break-redesign/</guid>
<description><![CDATA[<p>I made no posts for the rest of 2022 since the last redesign, and then I felt like redesigning the site again. (AI generated image btw)</p>]]></description>
</item>
<item>
<title>I Redesigned the Site</title>
<link>https://higgy999.github.io/site-redesigned-2022/</link>
<pubDate>Tue, 23 Aug 2022 00:09:32 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/site-redesigned-2022/</guid>
<description><![CDATA[<p>Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched.</p>]]></description>
</item>
<item>
<title>Getting Deja Vu Right Now</title>
<link>https://higgy999.github.io/butter-dejavu/</link>
<pubDate>Sun, 08 Aug 2021 21:21:30 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/butter-dejavu/</guid>
<description><![CDATA[<p>I feel like I wrote this code before&hellip;</p>]]></description>
</item>
<item>
<title>Catching Up &amp; Centralizing</title>
<link>https://higgy999.github.io/general-catchingup/</link>
<pubDate>Sun, 08 Aug 2021 20:29:20 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/general-catchingup/</guid>
<description><![CDATA[<p>General things I need to do with the site</p>]]></description>
</item>
</channel>
</rss>

View File

@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://higgy999.github.io/posts/</title>
<link rel="canonical" href="https://higgy999.github.io/posts/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://higgy999.github.io/posts/">
</head>
</html>

View File

@@ -1,202 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Prank Suite Release - LitlToast&#39;s Blog</title><meta name="Description" content="The next step in pranking your friends and family."><meta property="og:title" content="Prank Suite Release" />
<meta property="og:description" content="The next step in pranking your friends and family." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://higgy999.github.io/prank-suite-release/" /><meta property="og:image" content="https://higgy999.github.io/prank-suite-release/featured-image.png"/><meta property="article:section" content="posts" />
<meta property="article:published_time" content="2023-04-08T22:12:00-04:00" />
<meta property="article:modified_time" content="2023-04-08T22:16:44-04:00" /><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/prank-suite-release/featured-image.png"/>
<meta name="twitter:title" content="Prank Suite Release"/>
<meta name="twitter:description" content="The next step in pranking your friends and family."/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/prank-suite-release/" /><link rel="prev" href="https://higgy999.github.io/spring-break-redesign/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "Prank Suite Release",
"inLanguage": "en",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https:\/\/higgy999.github.io\/prank-suite-release\/"
},"image": [{
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/prank-suite-release\/featured-image.png",
"width": 902 ,
"height": 341
}],"genre": "posts","keywords": "Update, Release, Programming","wordcount": 228 ,
"url": "https:\/\/higgy999.github.io\/prank-suite-release\/","datePublished": "2023-04-08T22:12:00-04:00","dateModified": "2023-04-08T22:16:44-04:00","publisher": {
"@type": "Organization",
"name": "LitlToast","logo": {
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/images\/dark-avatar.png",
"width": 288 ,
"height": 288
}},"author": {
"@type": "Person",
"name": "LitlToast"
},"description": "The next step in pranking your friends and family."
}
</script></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="toc" id="toc-auto">
<h2 class="toc-title">Contents</h2>
<div class="toc-content" id="toc-content-auto"></div>
</div><article class="page single"><h1 class="single-title animate__animated animate__flipInX">Prank Suite Release</h1><div class="post-meta">
<div class="post-meta-line"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-category">included in <a href="/categories/pranksuite/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>Prank Suite</a></span></div>
<div class="post-meta-line"><i class="far fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;<time datetime="2023-04-08">2023-04-08</time>&nbsp;<i class="fas fa-pencil-alt fa-fw" aria-hidden="true"></i>&nbsp;228 words&nbsp;
<i class="far fa-clock fa-fw" aria-hidden="true"></i>&nbsp;2 minutes&nbsp;</div>
</div><div class="featured-image"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/prank-suite-release/featured-image.png"
data-srcset="/prank-suite-release/featured-image.png, /prank-suite-release/featured-image.png 1.5x, /prank-suite-release/featured-image.png 2x"
data-sizes="auto"
alt="/prank-suite-release/featured-image.png"
title="The next step in pranking your friends and family." /></div><div class="details toc" id="toc-static" data-kept="">
<div class="details-summary toc-title">
<span>Contents</span>
<span><i class="details-icon fas fa-angle-right" aria-hidden="true"></i></span>
</div>
<div class="details-content toc-content" id="toc-content-static"><nav id="TableOfContents">
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#changes-since-weeb-detector">Changes since Weeb Detector</a></li>
<li><a href="#setup">Setup</a></li>
<li><a href="#the-development-path">The Development Path</a></li>
</ul>
</nav></div>
</div><div class="content" id="content"><p>The next step in pranking your friends and family.</p>
<p>NOTE: This software can be used maliciously. I am no way responsible for the use of this software and encourage its use in good faith.</p>
<h2 id="features">Features</h2>
<ul>
<li>See and close open user&rsquo;s windows</li>
<li>Trigger popups with custom text</li>
<li>Trigger HTML popups</li>
<li>Remotely play sounds</li>
<li>Remotely change the user&rsquo;s wallpaper</li>
</ul>
<h2 id="changes-since-weeb-detector">Changes since Weeb Detector</h2>
<ul>
<li>Trigger HTML popups</li>
<li>Remotely play sounds</li>
<li>UI Redesign for ease of pranking</li>
<li>Ability to transfer files for all pranks</li>
</ul>
<h2 id="setup">Setup</h2>
<ol>
<li>Download the source code from <a href="https://github.com/higgy999/PrankSuite" target="_blank" rel="noopener noreffer ">GitHub</a></li>
<li>Open the project in IntelliJ and change the <code>SERVER_IP</code> in <code>PSClient.java</code> to your computers local IP address</li>
<li>Build the server and client artifacts</li>
<li>Download <a href="https://gluonhq.com/products/javafx/" target="_blank" rel="noopener noreffer ">JavaFX SDK</a> and extract it somewhere safe</li>
<li>When running the client and server, add <code>--module-path .\PATH_TO\javafx-sdk-XX.X.X\lib</code> and <code>--add-modules=javafx.controls,javafx.fxml,javafx.web</code> to the run command</li>
</ol>
<h2 id="the-development-path">The Development Path</h2>
<p>By default, Kyronet doesn&rsquo;t support sending files across the network. Although this post is being made way after release, I remember this process being hard to debug, but this isn&rsquo;t a fault of Kyronet. Both the client and server are kept in one source file. I never want to design an app like this again, but it was a carryover from Weeb Detector which was smaller in scope. Like most things, I want to remake this in Rust and have an easier way of changing the supplied IP address to the client.</p></div><div class="post-footer" id="post-footer">
<div class="post-info">
<div class="post-info-line">
<div class="post-info-mod">
<span>Updated on 2023-04-08&nbsp;<a class="git-hash" href="https://github.com/higgy999/higgy999.github.io/commit/eaccb7fb2cfeafbd22039d1956401bd041e92f84" target="_blank" title="commit by Litl Toast(joshuafhiggins@gmail.com) eaccb7fb2cfeafbd22039d1956401bd041e92f84: Wasn&#39;t public">
<i class="fas fa-hashtag fa-fw" aria-hidden="true"></i>eaccb7f</a></span>
</div></div>
<div class="post-info-line">
<div class="post-info-md"><span>
<a class="link-to-markdown" href="/prank-suite-release/index.md" target="_blank">Read Markdown</a>
</span></div>
<div class="post-info-share">
<span><a href="javascript:void(0);" title="Share on Twitter" data-sharer="twitter" data-url="https://higgy999.github.io/prank-suite-release/" data-title="Prank Suite Release" data-hashtags="Update,Release,Programming"><i class="fab fa-twitter fa-fw" aria-hidden="true"></i></a><a href="javascript:void(0);" title="Share on Reddit" data-sharer="reddit" data-url="https://higgy999.github.io/prank-suite-release/"><i class="fab fa-reddit fa-fw" aria-hidden="true"></i></a></span>
</div>
</div>
</div>
<div class="post-info-more">
<section class="post-tags"><i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/update/">Update</a>,&nbsp;<a href="/tags/release/">Release</a>,&nbsp;<a href="/tags/programming/">Programming</a></section>
<section>
<span><a href="javascript:void(0);" onclick="window.history.back();">Back</a></span>&nbsp;|&nbsp;<span><a href="/">Home</a></span>
</section>
</div>
<div class="post-nav"><a href="/spring-break-redesign/" class="prev" rel="prev" title="Spring Cleaning: April 2023"><i class="fas fa-angle-left fa-fw" aria-hidden="true"></i>Spring Cleaning: April 2023</a></div>
</div>
</article></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/css/lightgallery-bundle.min.css"><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/lightgallery.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/thumbnail/lg-thumbnail.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/zoom/lg-zoom.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"comment":{},"lightgallery":true,"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,172 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>I Redesigned the Site - LitlToast&#39;s Blog</title><meta name="Description" content="Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched."><meta property="og:title" content="I Redesigned the Site" />
<meta property="og:description" content="Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://higgy999.github.io/site-redesigned-2022/" /><meta property="og:image" content="https://higgy999.github.io/site-redesigned-2022/featured-image.png"/><meta property="article:section" content="posts" />
<meta property="article:published_time" content="2022-08-23T00:09:32-04:00" />
<meta property="article:modified_time" content="2022-08-24T18:19:37-04:00" /><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/site-redesigned-2022/featured-image.png"/>
<meta name="twitter:title" content="I Redesigned the Site"/>
<meta name="twitter:description" content="Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched."/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/site-redesigned-2022/" /><link rel="prev" href="https://higgy999.github.io/butter-dejavu/" /><link rel="next" href="https://higgy999.github.io/spring-break-redesign/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "I Redesigned the Site",
"inLanguage": "en",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https:\/\/higgy999.github.io\/site-redesigned-2022\/"
},"image": [{
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/site-redesigned-2022\/featured-image.png",
"width": 1920 ,
"height": 600
}],"genre": "posts","keywords": "Website, Update","wordcount": 220 ,
"url": "https:\/\/higgy999.github.io\/site-redesigned-2022\/","datePublished": "2022-08-23T00:09:32-04:00","dateModified": "2022-08-24T18:19:37-04:00","publisher": {
"@type": "Organization",
"name": "LitlToast","logo": {
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/images\/dark-avatar.png",
"width": 288 ,
"height": 288
}},"author": {
"@type": "Person",
"name": "LitlToast"
},"description": "Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched."
}
</script></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="toc" id="toc-auto">
<h2 class="toc-title">Contents</h2>
<div class="toc-content" id="toc-content-auto"></div>
</div><article class="page single"><h1 class="single-title animate__animated animate__flipInX">I Redesigned the Site</h1><div class="post-meta">
<div class="post-meta-line"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-category">included in <a href="/categories/general/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>General</a></span></div>
<div class="post-meta-line"><i class="far fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;<time datetime="2022-08-23">2022-08-23</time>&nbsp;<i class="fas fa-pencil-alt fa-fw" aria-hidden="true"></i>&nbsp;220 words&nbsp;
<i class="far fa-clock fa-fw" aria-hidden="true"></i>&nbsp;2 minutes&nbsp;</div>
</div><div class="featured-image"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/site-redesigned-2022/featured-image.png"
data-srcset="/site-redesigned-2022/featured-image.png, /site-redesigned-2022/featured-image.png 1.5x, /site-redesigned-2022/featured-image.png 2x"
data-sizes="auto"
alt="/site-redesigned-2022/featured-image.png"
title="Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched." /></div><div class="details toc" id="toc-static" data-kept="">
<div class="details-summary toc-title">
<span>Contents</span>
<span><i class="details-icon fas fa-angle-right" aria-hidden="true"></i></span>
</div>
<div class="details-content toc-content" id="toc-content-static"><nav id="TableOfContents"></nav></div>
</div><div class="content" id="content"><p>Hopefully this will not be a yearly tradition of me updating the site, making one post, and leaving it untouched.</p>
<p>I wanted to write some posts this summer, <em>(not really this summer more like five days ago)</em>, and either Jekyll wouldnt put them into each projects feed or they wouldnt show up. I had recently watched “<em><a href="https://www.youtu.be/0RKpf3rK57I" target="_blank" rel="noopener noreffer ">Hugo in 100 seconds</a></em>” by <a href="https://www.youtube.com/c/Fireship" target="_blank" rel="noopener noreffer ">Fireship</a> and had been looking at themes for a bit. So then instead of trying to recall what painful, voodoo witchcraft I needed to do to actually get these posts to display, <em>(this was because I made my own theme, Jekyll is actually very cool)</em> I switched over to Hugo and the LoveIt theme. Ill probably fork and mess around with a custom color palette, but its now way simpler to write a post, just do <code>hugo new content\posts\postname\index.md</code> and write! Another reason for the move is that I wont get security alerts for the Gemfile being out of date, Hugo isnt included in the website repo and everything is just a mostly static webpage anyways. The theme also looks more modern than the old one, and it supports comments. Im unsure whether or not to allow comments or if I can under GitHub pages. By the way, go check out the video. The guy makes good informational content.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/0RKpf3rK57I" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div><div class="post-footer" id="post-footer">
<div class="post-info">
<div class="post-info-line">
<div class="post-info-mod">
<span>Updated on 2022-08-24&nbsp;<a class="git-hash" href="https://github.com/higgy999/higgy999.github.io/commit/e47cba1008c19d651f4a8e21b53ca3a52b3816eb" target="_blank" title="commit by Litl Toast(joshuafhiggins@gmail.com) e47cba1008c19d651f4a8e21b53ca3a52b3816eb: Fixed rename, Projects all show now">
<i class="fas fa-hashtag fa-fw" aria-hidden="true"></i>e47cba1</a></span>
</div></div>
<div class="post-info-line">
<div class="post-info-md"><span>
<a class="link-to-markdown" href="/site-redesigned-2022/index.md" target="_blank">Read Markdown</a>
</span></div>
<div class="post-info-share">
<span><a href="javascript:void(0);" title="Share on Twitter" data-sharer="twitter" data-url="https://higgy999.github.io/site-redesigned-2022/" data-title="I Redesigned the Site" data-hashtags="Website,Update"><i class="fab fa-twitter fa-fw" aria-hidden="true"></i></a><a href="javascript:void(0);" title="Share on Reddit" data-sharer="reddit" data-url="https://higgy999.github.io/site-redesigned-2022/"><i class="fab fa-reddit fa-fw" aria-hidden="true"></i></a></span>
</div>
</div>
</div>
<div class="post-info-more">
<section class="post-tags"><i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/website/">Website</a>,&nbsp;<a href="/tags/update/">Update</a></section>
<section>
<span><a href="javascript:void(0);" onclick="window.history.back();">Back</a></span>&nbsp;|&nbsp;<span><a href="/">Home</a></span>
</section>
</div>
<div class="post-nav"><a href="/butter-dejavu/" class="prev" rel="prev" title="Getting Deja Vu Right Now"><i class="fas fa-angle-left fa-fw" aria-hidden="true"></i>Getting Deja Vu Right Now</a>
<a href="/spring-break-redesign/" class="next" rel="next" title="Spring Cleaning: April 2023">Spring Cleaning: April 2023<i class="fas fa-angle-right fa-fw" aria-hidden="true"></i></a></div>
</div>
</article></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/css/lightgallery-bundle.min.css"><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/lightgallery.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/thumbnail/lg-thumbnail.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/zoom/lg-zoom.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"comment":{},"lightgallery":true,"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,28 +0,0 @@
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
><url>
<loc>https://higgy999.github.io/</loc><lastmod>2023-04-08T22:16:44-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/posts/</loc><lastmod>2023-04-08T22:16:44-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/prank-suite-release/</loc><lastmod>2023-04-08T22:16:44-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/tags/programming/</loc><lastmod>2023-04-08T22:16:44-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/tags/release/</loc><lastmod>2023-04-08T22:16:44-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/tags/</loc><lastmod>2023-04-08T22:16:44-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/tags/update/</loc><lastmod>2023-04-08T22:16:44-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/tags/general/</loc><lastmod>2023-04-08T16:16:00-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/spring-break-redesign/</loc><lastmod>2023-04-08T16:16:00-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/tags/website/</loc><lastmod>2023-04-08T16:16:00-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/site-redesigned-2022/</loc><lastmod>2022-08-24T18:19:37-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/tags/butter-engine/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/butter-dejavu/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/general-catchingup/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/about/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/butterengine/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/gametimemod/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/general/</loc><lastmod>2022-08-23T21:32:18-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/leftclickcountermod/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/pranksuite/</loc><lastmod>2023-04-08T22:13:28-04:00</lastmod><changefreq>weekly</changefreq><priority>1</priority></url><url>
<loc>https://higgy999.github.io/categories/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/sparticus/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/tf2opengl/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url><url>
<loc>https://higgy999.github.io/categories/undergroundduels/</loc><lastmod>2022-08-23T15:10:16-04:00</lastmod><changefreq>weekly</changefreq><priority>0.5</priority></url></urlset>

View File

@@ -1,240 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Spring Cleaning: April 2023 - LitlToast&#39;s Blog</title><meta name="Description" content="I made no posts for the rest of 2022, since the last redesign, and then I felt like redesigning the site again."><meta property="og:title" content="Spring Cleaning: April 2023" />
<meta property="og:description" content="I made no posts for the rest of 2022, since the last redesign, and then I felt like redesigning the site again." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://higgy999.github.io/spring-break-redesign/" /><meta property="og:image" content="https://higgy999.github.io/april2023-website.png" /><meta property="og:image" content="https://higgy999.github.io/april2023-bard.png" /><meta property="og:image" content="https://higgy999.github.io/april2023-toaster.png" /><meta property="article:section" content="posts" />
<meta property="article:published_time" content="2023-04-08T14:55:00-04:00" />
<meta property="article:modified_time" content="2023-04-08T16:16:00-04:00" /><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/april2023-website.png"/>
<meta name="twitter:title" content="Spring Cleaning: April 2023"/>
<meta name="twitter:description" content="I made no posts for the rest of 2022, since the last redesign, and then I felt like redesigning the site again."/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/spring-break-redesign/" /><link rel="prev" href="https://higgy999.github.io/site-redesigned-2022/" /><link rel="next" href="https://higgy999.github.io/prank-suite-release/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript><script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BlogPosting",
"headline": "Spring Cleaning: April 2023",
"inLanguage": "en",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https:\/\/higgy999.github.io\/spring-break-redesign\/"
},"image": [{
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/spring-break-redesign\/featured-image.png",
"width": 1920 ,
"height": 1080
}],"genre": "posts","keywords": "Website, General","wordcount": 443 ,
"url": "https:\/\/higgy999.github.io\/spring-break-redesign\/","datePublished": "2023-04-08T14:55:00-04:00","dateModified": "2023-04-08T16:16:00-04:00","publisher": {
"@type": "Organization",
"name": "LitlToast","logo": {
"@type": "ImageObject",
"url": "https:\/\/higgy999.github.io\/images\/dark-avatar.png",
"width": 288 ,
"height": 288
}},"author": {
"@type": "Person",
"name": "LitlToast"
},"description": "I made no posts for the rest of 2022, since the last redesign, and then I felt like redesigning the site again."
}
</script></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="toc" id="toc-auto">
<h2 class="toc-title">Contents</h2>
<div class="toc-content" id="toc-content-auto"></div>
</div><article class="page single"><h1 class="single-title animate__animated animate__flipInX">Spring Cleaning: April 2023</h1><div class="post-meta">
<div class="post-meta-line"><span class="post-author"><a href="/" title="Author" rel="author" class="author"><i class="fas fa-user-circle fa-fw" aria-hidden="true"></i>LitlToast</a></span>&nbsp;<span class="post-category">included in <a href="/categories/general/"><i class="far fa-folder fa-fw" aria-hidden="true"></i>General</a></span></div>
<div class="post-meta-line"><i class="far fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;<time datetime="2023-04-08">2023-04-08</time>&nbsp;<i class="fas fa-pencil-alt fa-fw" aria-hidden="true"></i>&nbsp;443 words&nbsp;
<i class="far fa-clock fa-fw" aria-hidden="true"></i>&nbsp;3 minutes&nbsp;</div>
</div><div class="featured-image"><img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/spring-break-redesign/featured-image.png"
data-srcset="/spring-break-redesign/featured-image.png, /spring-break-redesign/featured-image.png 1.5x, /spring-break-redesign/featured-image.png 2x"
data-sizes="auto"
alt="/spring-break-redesign/featured-image.png"
title="I made no posts for the rest of 2022, since the last redesign, and then I felt like redesigning the site again." /></div><div class="details toc" id="toc-static" data-kept="">
<div class="details-summary toc-title">
<span>Contents</span>
<span><i class="details-icon fas fa-angle-right" aria-hidden="true"></i></span>
</div>
<div class="details-content toc-content" id="toc-content-static"><nav id="TableOfContents">
<ul>
<li><a href="#updated-website">Updated Website</a></li>
<li><a href="#discord-server">Discord Server</a></li>
<li><a href="#plans--current-projects">Plans &amp; Current Projects</a></li>
</ul>
</nav></div>
</div><div class="content" id="content"><p>I made no posts for the rest of 2022 since the last redesign, and then I felt like redesigning the site again. (AI generated image btw)</p>
<h2 id="updated-website">Updated Website</h2>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span><span class="lnt">2
</span><span class="lnt">3
</span><span class="lnt">4
</span><span class="lnt">5
</span><span class="lnt">6
</span><span class="lnt">7
</span><span class="lnt">8
</span><span class="lnt">9
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">Changes:
</span></span><span class="line"><span class="cl">- Redid color palette for light and dark mode
</span></span><span class="line"><span class="cl">- New header with translucency
</span></span><span class="line"><span class="cl">- Rounded scroll bar
</span></span><span class="line"><span class="cl">- Replaced fonts with Ubuntu, JetBrains Mono, and Stratum 2 (from Counter-Strike 2)
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">Known Bugs:
</span></span><span class="line"><span class="cl">- General: Dark mode is too blue
</span></span><span class="line"><span class="cl">- Mobile: Hamburger menu missing when reading a post, this existed before but really shouldn&#39;t have
</span></span></code></pre></td></tr></table>
</div>
</div><p><figure><a class="lightgallery" href="/images/april2023-website.png" title="april2023-website" data-thumbnail="/images/april2023-website.png" data-sub-html="<h2>The new design!</h2><p>april2023-website</p>">
<img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/april2023-website.png"
data-srcset="/images/april2023-website.png, /images/april2023-website.png 1.5x, /images/april2023-website.png 2x"
data-sizes="auto"
alt="/images/april2023-website.png" width="1920" height="1080" />
</a><figcaption class="image-caption">The new design!</figcaption>
</figure></p>
<p>Light theme looks better than before, and better than dark mode in my opinion. The new header bar is inspired by Hearthstone&rsquo;s website too, although I kept some of the old design on mobile. Several changes had to be made to the theme itself, at some point I need to find a way to move all changes that were made to <code>_override.scss</code>. Maybe now I&rsquo;ll make an update post for Prank Suite?</p>
<h2 id="discord-server">Discord Server</h2>
<p>I made a <a href="https://discord.gg/b48D4m8jNs" target="_blank" rel="noopener noreffer ">Discord server</a>! There&rsquo;s channels for asking for help with Java, Kotlin, and Rust, as well as helpful resources. I encourage everyone to put your favorite resources for the languages in their respective channels. I often forget cool things I find and this will be my way of having a whole list to revisit anytime I want. You can also showcase your projects as a thread in the <a href="https://discord.gg/b48D4m8jNs" target="_blank" rel="noopener noreffer "><code>#showcase</code></a> channel. I look forward to seeing you there!</p>
<div style="display: flex; flex-direction: row; justify-content: center;">
<p><figure><a class="lightgallery" href="/images/april2023-bard.png" title="april2023-bard" data-thumbnail="/images/april2023-bard.png" data-sub-html="<h2>Music bot</h2><p>april2023-bard</p>">
<img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/april2023-bard.png"
data-srcset="/images/april2023-bard.png, /images/april2023-bard.png 1.5x, /images/april2023-bard.png 2x"
data-sizes="auto"
alt="/images/april2023-bard.png" width="512" height="512" />
</a><figcaption class="image-caption">Music bot</figcaption>
</figure>
<figure><a class="lightgallery" href="/images/april2023-toaster.png" title="april2023-toaster" data-thumbnail="/images/april2023-toaster.png" data-sub-html="<h2>Server icon</h2><p>april2023-toaster</p>">
<img
class="lazyload"
src="/svg/loading.min.svg"
data-src="/images/april2023-toaster.png"
data-srcset="/images/april2023-toaster.png, /images/april2023-toaster.png 1.5x, /images/april2023-toaster.png 2x"
data-sizes="auto"
alt="/images/april2023-toaster.png" width="512" height="512" />
</a><figcaption class="image-caption">Server icon</figcaption>
</figure></p>
</div>
<h2 id="plans--current-projects">Plans &amp; Current Projects</h2>
<p>If you have been following my GitHub while this website was abandoned, I&rsquo;ve been making projects in Rust and loving them. I&rsquo;m going to be moving Butter Engine to Rust and have progressed about as far as the last blog post on the Engine, in terms of rendering. This would be the 3rd time I have redone Butter Engine, and ultimately I don&rsquo;t care! Rust is forcing me to write better code for when I build off of the engine in the future and I felt that moving forward with what I have in Java would be a headache in many ways. I&rsquo;ll make this into it&rsquo;s own post, but for right now I want to move all my workflows to Rust to learn it better. I guess that means I need to find a Hugo alternative but I&rsquo;ll wait another year and no blog posts for that 😉.</p>
<p>So to recap, I have a new <a href="https://discord.gg/b48D4m8jNs" target="_blank" rel="noopener noreffer ">Discord server</a> for programmers, made the website look nice, my life in Rust, two more posts coming next week, and who knows what will happen after this break ends?</p></div><div class="post-footer" id="post-footer">
<div class="post-info">
<div class="post-info-line">
<div class="post-info-mod">
<span>Updated on 2023-04-08&nbsp;<a class="git-hash" href="https://github.com/higgy999/higgy999.github.io/commit/50c0539552fda60c44596a2925d8e7d66895893e" target="_blank" title="commit by Litl Toast(joshuafhiggins@gmail.com) 50c0539552fda60c44596a2925d8e7d66895893e: Removed inline html">
<i class="fas fa-hashtag fa-fw" aria-hidden="true"></i>50c0539</a></span>
</div></div>
<div class="post-info-line">
<div class="post-info-md"><span>
<a class="link-to-markdown" href="/spring-break-redesign/index.md" target="_blank">Read Markdown</a>
</span></div>
<div class="post-info-share">
<span><a href="javascript:void(0);" title="Share on Twitter" data-sharer="twitter" data-url="https://higgy999.github.io/spring-break-redesign/" data-title="Spring Cleaning: April 2023" data-hashtags="Website,General"><i class="fab fa-twitter fa-fw" aria-hidden="true"></i></a><a href="javascript:void(0);" title="Share on Reddit" data-sharer="reddit" data-url="https://higgy999.github.io/spring-break-redesign/"><i class="fab fa-reddit fa-fw" aria-hidden="true"></i></a></span>
</div>
</div>
</div>
<div class="post-info-more">
<section class="post-tags"><i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;<a href="/tags/website/">Website</a>,&nbsp;<a href="/tags/general/">General</a></section>
<section>
<span><a href="javascript:void(0);" onclick="window.history.back();">Back</a></span>&nbsp;|&nbsp;<span><a href="/">Home</a></span>
</section>
</div>
<div class="post-nav"><a href="/site-redesigned-2022/" class="prev" rel="prev" title="I Redesigned the Site"><i class="fas fa-angle-left fa-fw" aria-hidden="true"></i>I Redesigned the Site</a>
<a href="/prank-suite-release/" class="next" rel="next" title="Prank Suite Release">Prank Suite Release<i class="fas fa-angle-right fa-fw" aria-hidden="true"></i></a></div>
</div>
</article></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/css/lightgallery-bundle.min.css"><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/lightgallery.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/thumbnail/lg-thumbnail.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lightgallery@2.5.0/plugins/zoom/lg-zoom.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"comment":{},"lightgallery":true,"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

Before

Width:  |  Height:  |  Size: 905 B

After

Width:  |  Height:  |  Size: 905 B

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" style="margin:auto;background:0 0" width="60" height="60" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" display="block"><circle cx="50" cy="50" r="20" stroke-width="4" stroke="#a5a5a5" stroke-dasharray="31.416 31.416" fill="none" stroke-linecap="round" transform="rotate(67.21 50 50)"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" keyTimes="0;1" values="0 50 50;360 50 50"/></circle></svg>

Before

Width:  |  Height:  |  Size: 482 B

View File

@@ -1,105 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Butter Engine - Tag - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Butter Engine" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/tags/butter-engine/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Butter Engine"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/tags/butter-engine/" /><link rel="alternate" href="/tags/butter-engine/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/tags/butter-engine/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="fas fa-tag fa-fw" aria-hidden="true"></i>&nbsp;Butter Engine</h2><h3 class="group-title">2021</h3><article class="archive-item">
<a href="/butter-dejavu/" class="archive-item-link">Getting Deja Vu Right Now</a>
<span class="archive-item-date">08-08</span>
</article></div>
<div class="page single">
<div class="content">
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,16 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Butter Engine - Tag - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/tags/butter-engine/</link>
<description>Butter Engine - Tag - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><lastBuildDate>Sun, 08 Aug 2021 21:21:30 -0400</lastBuildDate><atom:link href="https://higgy999.github.io/tags/butter-engine/" rel="self" type="application/rss+xml" /><item>
<title>Getting Deja Vu Right Now</title>
<link>https://higgy999.github.io/butter-dejavu/</link>
<pubDate>Sun, 08 Aug 2021 21:21:30 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/butter-dejavu/</guid>
<description><![CDATA[<p>I feel like I wrote this code before&hellip;</p>]]></description>
</item>
</channel>
</rss>

View File

@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://higgy999.github.io/tags/butter-engine/</title>
<link rel="canonical" href="https://higgy999.github.io/tags/butter-engine/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://higgy999.github.io/tags/butter-engine/">
</head>
</html>

View File

@@ -1,108 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>General - Tag - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="General" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/tags/general/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="General"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/tags/general/" /><link rel="alternate" href="/tags/general/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/tags/general/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="fas fa-tag fa-fw" aria-hidden="true"></i>&nbsp;General</h2><h3 class="group-title">2023</h3><article class="archive-item">
<a href="/spring-break-redesign/" class="archive-item-link">Spring Cleaning: April 2023</a>
<span class="archive-item-date">04-08</span>
</article><h3 class="group-title">2021</h3><article class="archive-item">
<a href="/general-catchingup/" class="archive-item-link">Catching Up & Centralizing</a>
<span class="archive-item-date">08-08</span>
</article></div>
<div class="page single">
<div class="content">
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,24 +0,0 @@
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>General - Tag - LitlToast&#39;s Blog</title>
<link>https://higgy999.github.io/tags/general/</link>
<description>General - Tag - LitlToast&#39;s Blog</description>
<generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>joshuafhiggins@gmail.com (LitlToast)</managingEditor>
<webMaster>joshuafhiggins@gmail.com (LitlToast)</webMaster><lastBuildDate>Sat, 08 Apr 2023 14:55:00 -0400</lastBuildDate><atom:link href="https://higgy999.github.io/tags/general/" rel="self" type="application/rss+xml" /><item>
<title>Spring Cleaning: April 2023</title>
<link>https://higgy999.github.io/spring-break-redesign/</link>
<pubDate>Sat, 08 Apr 2023 14:55:00 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/spring-break-redesign/</guid>
<description><![CDATA[<p>I made no posts for the rest of 2022 since the last redesign, and then I felt like redesigning the site again. (AI generated image btw)</p>]]></description>
</item>
<item>
<title>Catching Up &amp; Centralizing</title>
<link>https://higgy999.github.io/general-catchingup/</link>
<pubDate>Sun, 08 Aug 2021 20:29:20 -0400</pubDate>
<author>LitlToast</author>
<guid>https://higgy999.github.io/general-catchingup/</guid>
<description><![CDATA[<p>General things I need to do with the site</p>]]></description>
</item>
</channel>
</rss>

View File

@@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>https://higgy999.github.io/tags/general/</title>
<link rel="canonical" href="https://higgy999.github.io/tags/general/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://higgy999.github.io/tags/general/">
</head>
</html>

View File

@@ -1,95 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>All Tags - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Tags" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/tags/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Tags"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/tags/" /><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item active" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster">All Tags</h2><div class="tag-cloud-tags"><a href="/tags/update/">Update <sup>3</sup></a><a href="/tags/website/">Website <sup>3</sup></a><a href="/tags/general/">General <sup>2</sup></a><a href="/tags/programming/">Programming <sup>2</sup></a><a href="/tags/butter-engine/">Butter Engine <sup>1</sup></a><a href="/tags/release/">Release <sup>1</sup></a></div></div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

View File

@@ -1,108 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>Programming - Tag - LitlToast&#39;s Blog</title><meta name="Description" content="It&#39;s his blog"><meta property="og:title" content="Programming" />
<meta property="og:description" content="It&#39;s his blog" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://higgy999.github.io/tags/programming/" /><meta property="og:image" content="https://higgy999.github.io/images/dark-avatar.png"/><meta property="og:site_name" content="LitlToast&#39;s Blog" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://higgy999.github.io/images/dark-avatar.png"/>
<meta name="twitter:title" content="Programming"/>
<meta name="twitter:description" content="It&#39;s his blog"/>
<meta name="application-name" content="LitlToast&#39;s Blog">
<meta name="apple-mobile-web-app-title" content="LitlToast&#39;s Blog"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://higgy999.github.io/tags/programming/" /><link rel="alternate" href="/tags/programming/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog">
<link rel="feed" href="/tags/programming/index.xml" type="application/rss+xml" title="LitlToast&#39;s Blog"><link rel="stylesheet" href="/css/style.min.css"><link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/css/all.min.css"></noscript><link rel="preload" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css"></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item" href="/posts/"> Posts </a><a class="menu-item" href="/categories/"> Projects </a><a class="menu-item" href="/tags/"> Tags </a><a class="menu-item" href="/about/"> About </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="Search titles or contents..." id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="LitlToast&#39;s Blog">LitlToast</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="Search titles or contents..." id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/posts/" title="">Posts</a><a class="menu-item" href="/categories/" title="">Projects</a><a class="menu-item" href="/tags/" title="">Tags</a><a class="menu-item" href="/about/" title="">About</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page archive"><h2 class="single-title animate__animated animate__pulse animate__faster"><i class="fas fa-tag fa-fw" aria-hidden="true"></i>&nbsp;Programming</h2><h3 class="group-title">2023</h3><article class="archive-item">
<a href="/prank-suite-release/" class="archive-item-link">Prank Suite Release</a>
<span class="archive-item-date">04-08</span>
</article><h3 class="group-title">2021</h3><article class="archive-item">
<a href="/butter-dejavu/" class="archive-item-link">Getting Deja Vu Right Now</a>
<span class="archive-item-date">08-08</span>
</article></div>
<div class="page single">
<div class="content">
</div>
</div></div>
</main><footer class="footer">
<div class="footer-container"><div class="footer-line">Powered by <a href="https://gohugo.io/" target="_blank" rel="noopener noreffer" title="Hugo 0.111.3">Hugo</a> | Theme - <a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="noopener noreffer" title="LoveIt 0.2.11"><i class="far fa-kiss-wink-heart fa-fw" aria-hidden="true"></i> LoveIt</a>
</div><div class="footer-line" itemscope itemtype="http://schema.org/CreativeWork"><i class="far fa-copyright fa-fw" aria-hidden="true"></i><span itemprop="copyrightYear">2021 - 2023</span><span class="author" itemprop="copyrightHolder">&nbsp;<a href="/" target="_blank">LitlToast</a></span></div>
</div>
</footer></div>
<div id="fixed-buttons"><a href="#" id="back-to-top" class="fixed-button" title="Back to Top">
<i class="fas fa-arrow-up fa-fw" aria-hidden="true"></i>
</a><a href="#" id="view-comments" class="fixed-button" title="View Comments">
<i class="fas fa-comment fa-fw" aria-hidden="true"></i>
</a>
</div><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/autocomplete.js@0.38.1/dist/autocomplete.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lunr@2.3.9/lunr.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lazysizes@5.3.2/lazysizes.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clipboard@2.0.11/dist/clipboard.min.js"></script><script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sharer.js@0.5.1/sharer.min.js"></script><script type="text/javascript">window.config={"code":{"copyTitle":"Copy to clipboard","maxShownLines":50},"search":{"highlightTag":"em","lunrIndexURL":"/index.json","maxResultLength":10,"noResultsFound":"No results found","snippetLength":30,"type":"lunr"}};</script><script type="text/javascript" src="/js/theme.min.js"></script></body>
</html>

Some files were not shown because too many files have changed in this diff Show More