~jacksonchen666/jacksonchen666.com

f0217478ff3d8ec58f7667df196158026be784c6 — Jackson Chen 3 years ago c36504c
Jekyll transfer (#11)

* removed live html editor as for transfer of jekyll (and it's unusability)
* transformed life.html
* transformed colorful
* transformed animation testing
* transformed looper-commands
* transformed old-ideas
* transformed apple-script
* transformed coding
* transformed credits
* transformed ideas (and fixed a mistake)
* transformed memes
* transformed old-questions
* transformed portfolio
* transformed questions
* transformed sitemap
* transformed social-media
* transformed testing
* transformed thing
* transformed whateveries
45 files changed, 623 insertions(+), 1618 deletions(-)

A .bundle/config
M .gitignore
M 404.html
D 404.md
A Gemfile
A Gemfile.lock
D LHE-FAQ.html
D Live-HTML-Editor.html
A _config.yml
R HTML-template.html => _layouts/default.html
D animation-testing.html
A animation-testing.md
R apple-script.html => apple-script.md
D coding.html
A coding.md
D colorful.html
A colorful.md
D credits.html
A credits.md
D ideas.html
A ideas.md
D index.html
A index.md
D life.html
A life.md
R looper-commands.html => looper-commands.md
D memes.html
A memes.md
D old-ideas.html
A old-ideas.md
D old-questions.html
A old-questions.md
D portfolio.html
A portfolio.md
D questions.html
A questions.md
D sitemap.html
A sitemap.md
D social-media.html
A social-media.md
D testing.html
A testing.md
D thing.html
A thing.md
R whateveries.html => whateveries.md
A .bundle/config => .bundle/config +2 -0
@@ 0,0 1,2 @@
---
BUNDLE_PATH: "vendor/bundle"

M .gitignore => .gitignore +5 -2
@@ 1,3 1,6 @@
.DS_Store
venv
web-app/twitter-last-interactions/config.cfg
\ No newline at end of file
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor

M 404.html => 404.html +29 -24
@@ 1,30 1,35 @@
---
permalink: /404.html
title: Error 404
---

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>JacksonChen666 - Error 404</title>
	<meta name="viewport" content="width=device-width initial-scale=1">
	<meta name="description" content="Error page">
	<style type="text/css">
		button{border-radius:5px;}
		*{background-color:black;color:white;text-shadow:10px 10px 2px;font-family:Arial;}
		.deadend{float:top;unicode-bidi:bidi-override;direction:rtl;letter-spacing:10vw;}
		.deadend:first-letter{letter-spacing:0;}
		.text{text-align:center;}
		main:first-child{margin-top:40vh;}
		.buttons{display:flex;justify-content:center;}
	</style>
        <meta charset="utf-8">
        <title>JacksonChen666 - Error 404</title>
        <meta name="viewport" content="width=device-width initial-scale=1">
        <meta name="description" content="Error page">
        <style type="text/css">
                button{border-radius:5px;}
                *{background-color:black;color:white;text-shadow:10px 10px 2px;font-family:Arial;}
                .deadend{float:top;unicode-bidi:bidi-override;direction:rtl;letter-spacing:10vw;}
                .deadend:first-letter{letter-spacing:0;}
                .text{text-align:center;}
                main:first-child{margin-top:40vh;}
                .buttons{display:flex;justify-content:center;}
        </style>
</head>
<body>
	<main>
		<div class="text">
			<p>sorry, you've reached the</p>
			<p class="deadend">dnedaed</p>
		</div>
		<div class="buttons">
			<a href="/"><button>home</button></a>
			<button onclick="window.history.back();">back</button>
		</div>
	</main>
        <main>
                <div class="text">
                        <p>sorry, you've reached the</p>
                        <p class="deadend">dnedaed</p>
                </div>
                <div class="buttons">
                        <a href="/"><button>home</button></a>
                        <button onclick="window.history.back();">back</button>
                </div>
        </main>
</body>
</html>
\ No newline at end of file
</html>

D 404.md => 404.md +0 -3
@@ 1,3 0,0 @@
---
permalink: 404.html
---

A Gemfile => Gemfile +32 -0
@@ 0,0 1,32 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
#     bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 4.2.0"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.5"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
  gem "jekyll-feed", "~> 0.12"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
  gem "tzinfo", "~> 1.2"
  gem "tzinfo-data"
end

gem "jekyll-github-metadata"

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]


A Gemfile.lock => Gemfile.lock +97 -0
@@ 0,0 1,97 @@
GEM
  remote: https://rubygems.org/
  specs:
    addressable (2.7.0)
      public_suffix (>= 2.0.2, < 5.0)
    colorator (1.1.0)
    concurrent-ruby (1.1.8)
    em-websocket (0.5.2)
      eventmachine (>= 0.12.9)
      http_parser.rb (~> 0.6.0)
    eventmachine (1.2.7)
    faraday (1.3.0)
      faraday-net_http (~> 1.0)
      multipart-post (>= 1.2, < 3)
      ruby2_keywords
    faraday-net_http (1.0.1)
    ffi (1.15.0)
    forwardable-extended (2.6.0)
    http_parser.rb (0.6.0)
    i18n (1.8.9)
      concurrent-ruby (~> 1.0)
    jekyll (4.2.0)
      addressable (~> 2.4)
      colorator (~> 1.0)
      em-websocket (~> 0.5)
      i18n (~> 1.0)
      jekyll-sass-converter (~> 2.0)
      jekyll-watch (~> 2.0)
      kramdown (~> 2.3)
      kramdown-parser-gfm (~> 1.0)
      liquid (~> 4.0)
      mercenary (~> 0.4.0)
      pathutil (~> 0.9)
      rouge (~> 3.0)
      safe_yaml (~> 1.0)
      terminal-table (~> 2.0)
    jekyll-feed (0.15.1)
      jekyll (>= 3.7, < 5.0)
    jekyll-github-metadata (2.13.0)
      jekyll (>= 3.4, < 5.0)
      octokit (~> 4.0, != 4.4.0)
    jekyll-sass-converter (2.1.0)
      sassc (> 2.0.1, < 3.0)
    jekyll-seo-tag (2.7.1)
      jekyll (>= 3.8, < 5.0)
    jekyll-watch (2.2.1)
      listen (~> 3.0)
    kramdown (2.3.1)
      rexml
    kramdown-parser-gfm (1.1.0)
      kramdown (~> 2.0)
    liquid (4.0.3)
    listen (3.5.0)
      rb-fsevent (~> 0.10, >= 0.10.3)
      rb-inotify (~> 0.9, >= 0.9.10)
    mercenary (0.4.0)
    minima (2.5.1)
      jekyll (>= 3.5, < 5.0)
      jekyll-feed (~> 0.9)
      jekyll-seo-tag (~> 2.1)
    multipart-post (2.1.1)
    octokit (4.20.0)
      faraday (>= 0.9)
      sawyer (~> 0.8.0, >= 0.5.3)
    pathutil (0.16.2)
      forwardable-extended (~> 2.6)
    public_suffix (4.0.6)
    rb-fsevent (0.10.4)
    rb-inotify (0.10.1)
      ffi (~> 1.0)
    rexml (3.2.4)
    rouge (3.26.0)
    ruby2_keywords (0.0.4)
    safe_yaml (1.0.5)
    sassc (2.4.0)
      ffi (~> 1.9)
    sawyer (0.8.2)
      addressable (>= 2.3.5)
      faraday (> 0.8, < 2.0)
    terminal-table (2.0.0)
      unicode-display_width (~> 1.1, >= 1.1.1)
    unicode-display_width (1.7.0)

PLATFORMS
  universal-darwin-20

DEPENDENCIES
  jekyll (~> 4.2.0)
  jekyll-feed (~> 0.12)
  jekyll-github-metadata
  minima (~> 2.5)
  tzinfo (~> 1.2)
  tzinfo-data
  wdm (~> 0.1.1)

BUNDLED WITH
   2.2.15

D LHE-FAQ.html => LHE-FAQ.html +0 -50
@@ 1,50 0,0 @@
<!DOCTYPE html>
<html>
<head>
	<title>LHE FAQ</title>
	<meta name="viewport" content="width=device-width initial-scale=1">
	<link rel="icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAKE0lEQVR42uzdUYSVaRzH8UeSkZG5yMgaIyNJF8nISlaykrUykpFkr1aystZepIsuhnSRZCVdjGQlWV2sJCPZi66y1lrJGiNjL8ZIxhpjjS7WOMZv/xfvrtG+nZnO857zPv/3+X74kYrXOXN858yZ97wnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACSI2mLbAFAc0kasn1hu217blu0tVQo/rxY/Nvt4v8OBQA+Sdpm+9o2rc69tJ2zbQ0A0iep33bFtqzqLNsmbP0BQJoknbYtqHsWbCcDgHQUT/cfqnfu8WwASICkEdsr9d7vvFAI1EjSbtsb1WfeNhIA9JakYdsb1W/O9lEAUOjNK/3TSscLflUI9Iike0rPZADQXZLGlK7PAoDukLTVNqd0/WHrCwCqJ+mC0vdtAFAtSX22BaXvNe8wBCom6Yz8OBWAXpK0w3bcdt52yTaR2I5E3r6n8uNJ5G09ksjXbO0u2c4Xj7EdAfWTtMV21varbVVpm4g817+laqzapor77XCxc7YnFd6HLdu2iNs7obStFo+5s/y4UxNJJ2zz8iMmAMdVjWnbaJvjjFZ4gtHnDQ7AWvO2sYDekLTZdkf+xATgmuJN2wY2cKwB24ziXc0kACpM2jYHdP0p/5R8ignAlOK0bHs/4Hh7bS3FeZxZAGSm+JGgiyQ9kF8xAZhVnPsdHPO+4sxkGACZHwKqJ+m8fIsJwKLijHX0GkucxUwDIHMuoDqSBm1v5VtMAFYUZ08Hx9yjOH9nHIBl2/aAaki6If8uhA4p3q4OjrlLkRp+yvN6vguIJ6m/Ad/9ZU7UGICjHRzzWI0BOCn/lrlGQn6nwL5Py7a9xgDc6OCYN2sMwKCDE7s24nRAHEnfy79HIYLivbUNfsDxtlfxrCvyNj+Wf3cC4kh6Id9WbPtCBFXjJ9umDRxrk+2pTM0B2G9rybcXAXEk/SXfLoRIqs4T28A6ZwE+VUVCJEkX5dtSQBzn3wUmgkkoADJLtsu2UVt/sdHi75ZkUglAMJIuy69WQFIP/l6Zs41lfh+oyjd+JX4ptPcKyOLB3yoeoA9s47bNGd4H/9OFN4GNF/fxnJdnhgFJPfif2U7aBm2bghNyKjhRxGWH7ZTt5xzvg2SpGqu2i8EhSZvkl5vIvnN/XyEAiUjpxbg6SNomv9x+grCkWwRgHU4CMOv5Qg2S9suvfcEpSVttCwSgDScBcH2deknfyK+vgmOSrhOANpwE4EBwTNJv8uuX4JikMQLQhpMAuP3oaknj8u94cErSAQLQhpMAuLyGu6TdtiX596dtJDgkaZQAtEEAukPSIScfA7ZRr22jwRkCsA4CUC1JO22TDXkv/LtWbNc8XSqLAKyDAFRD0lHbXduKmm/ZdtN2KCSOAKyDAESdbXbMdsvrm1wqMmO7ajuY4lmDBGAdBODDSPrUdte2KLxrwXYnpWcGBGAdTgLwUaiZpMO258JGPbMdDO0QgDx4DkBxOuldoROrtklbXyhBADLhNQCShm0zQqyXZV9DApAJjwGQNGJ7I1Rl3rYzrEEAMuEtAJIGbLNC1V7ZBkKBAGTCYQAeCt3yY/gXAciDpwA05COtUjcegiEAefASAElbMj+pp1fmbX0EIBOOAvCl8J8mXGiEALRFANaSNC30yiwByISHAEj6WOi1TwhABpwE4IbQa7cIQAacBIDf+/feHAHIQOoBkDQk1GVn6pdkD2h8AJpw4U6vzhCAhnMQgKtCXa4TgIZzEIBHQl2mCEDDOQgAv/+vzwwBaDgHAVgW6rJMABou9QCguQhAewQAjUYA2iMAaDQC0B4BQKMRgPYIABqNALRHANBoBKA9LwEYCgAB8IkAoAwByAQBQBkCkAkCgDIEIBMEAGUIQCYIAMoQgEwQAJQhAJkgAChDADJBAFCGAGSCAKAMAchE3QFQwwUQgJQRAAJQigDkgQAQgFIEIA8EgACUIgB5IAAEoC6S9nH/vh8BaIAAApAyAkAAShGAPBAAAlCKAOSBE4FQhgBkggCgDAHIBAFAGQKQCQKAMgQgEwQAZQhAJggAyhCATBAAlCEAmVC84QAQAJ8IAMoQgEwQAJQhAJkgAChDADJBAFCGAGSCAKAMAcgEAUAZApAJAoAyBCATBABlCEAmFG+YC4I0FwFoOAIAApCxf9q5YxW7qiiOw5sQJKWPEESCBAuR1BbiE4iIzBOI+AASxC5YiA8gPo5YiHWwkCFlCCF1mGLY2RdSpFh3QXLuzZy91/fBv58De/8YLocjAAhAYQKAABQmAAhAYQKAABQmANxgAD7d899XggAgAIV5EYiMACxOAIgIQBECQEQAihAAIgJQhAAQEYAiBICIABQhAEQEoAgBICIARfTt7jYQgDkJABEBKEIAiAhAEQJARACKEAAiAlCEABARgCIEgIgAFCEARASgiFMEwAdBIvN/sEMAChCAubWJCUBOAFj6AghATgBY+gIIQE4AWPoCCEBOAFj6AghATgBY+gIIQE4AWPoCCECuRACoq/d+XwCOEwCWJgA5AWBpApATAJYmADkBYGkCkBMAliYAOQFgaQKQEwCWJgA5AWBpApCbJQAfNRCAOQkAEQEoQgCICEARAkBEAIoQACICUIQAEBGAIgSAiAAUcYoA+CDIfrUdE4CcACAAEz/fFARgbW3HBCAnAAjAxM83BQFYW9sxAcgJAAIw8fNNQQDW1nZMAHICgABM/HxT8CIQEQEoQgCICEARAkBEAIoQAG5K7/0TAThOAFiaAOQEgKUJQE4AWJoA5ASApQlATgBYmgDkBIClCUBulgB83EAA5iQARASgCAEgIgBFCAARAShCAIgIQBECQEQAijhFAHwQZJNfWlECkBOAGgRAAEICUIMACEBIAGoQAAEICUANAiAAIQGoQQAEICQANQiAAIQEoAYBEIBQiQBQlwDkBIClCUBOAFiaAOQEgKUJQE4AWJoA5ASApfXe7wnAcQLA0gQgJwAsTQByAsDSBCAnACxNAHICwNIEICcALE0AcrME4F4DAZiTABARgCIEgIgAFCEARASgCAEgIgBFCAARASiib/dFg3dwODsCcNwsAXjY4B0czo4AHDdLAC7HPmjwFg5nZuxSAI6bJQAHjxq83bn7tQ8CcNxMATj4eexWg/y83R571AcByM0WgIN/xi7G7o59aPbG7o/9OPa4DwKwEx0m1hAA6mpsDsBVhzldNTYH4FmHOT1tbA7A3x3m9FdjcwB+7zCn3xqbA/BVhzl92dgcgFtjTzrM5dKLZ6eLwA8d5vJ946SvZ/7XYQ6Px243ThqBz70TwARejn3WOEsEvhu77rBP12PfNs4agQv/CbBDV2MXjfcSgQdjlx324f+xB43A+SJwZ+zh2PMON+P52E9jdxqJ84fgm7E/x/4de+F3As7geuzF6zP2x9jXLj4AAAAAAAAAAAAAAAAAAABwDq8Aw9SOAC2Y8AUAAAAASUVORK5CYII=">
	<style type="text/css">
	*{margin:10;padding:0;color:white;background-color:#202020;}
	ul{list-style-type:circle;}
	</style>
</head>
<body>
	<h1 style="text-align: center;margin-top: 5px;">Live HTML Editor FAQ</h1>
	<a style="font-size: 12px;" href="Live-HTML-Editor.html">Return to editing</a>
	<p>
		Q: How is this made?<br>
		A: This was inspired by the Real Time HTML editor by someone else who had already made. <a href="https://www.youtube.com/watch?v=onLsz9BwP7M">You can find it here.</a>
	</p>
	<p>
		Q: Why do I need to enable JavaScript to run?<br>
		A: This was originally created on JavaScript. There's nothing else within HTML that I can use to even replicate this.
	</p>
	<p>
		Q: How are the files saved?<br>
		A: Local storage. Clearing it will remove any text saved. This also means switching between devices won't be the same.
	</p>
	<p>
		Q: What are the limitations of this live editor?<br>
		A: Limitations:
		</ <ul>
		<li>You can only edit HTML</li>
		<li>The data only gets saved on to the specific site. If you transfer to another website, it's not saved unless you open a file.</li>
		<li>No Syntax Highlighting (better remember those syntax)</li>
		<li>No code suggestions</li>
		</ul>
	</p>
	<p>
		Q: When does the editor save the changes?<br>
		A: After refreshing which is after 750 MS of inactivity only after a key release.<br>
	</p>
	<p>
		Q: The editor on the site I was using removed the editor and I have important stuff on there! What do I do?<br>
		A: This might not be easy. Go to the site, open inspect element (<a href="https://adao.co.uk/blog/inspect-element-on-safari-on-iphone-mobile/" target="_blank">iPhone and Safari</a>, <a href="https://developers.google.com/web/tools/chrome-devtools/remote-debugging?utm_campaign=2016q3&utm_medium=redirect&utm_source=dcc" target="_blank">Android Chrome</a>), application, local storage, and copy the text from the "RTE_HTML" key. (Remember, the data is most likely save only on one browser!)
	</p>
	<p>
		Q: Why is this project now no longer maintained and deprecated?<br>
		A: Because I did not maintain this no longer. Also, it is deprecated because it was made on top of another editor that was made, and it's design is also flawfull.
	</p>
</body>
</html>
\ No newline at end of file

D Live-HTML-Editor.html => Live-HTML-Editor.html +0 -613
@@ 1,613 0,0 @@
<!DOCTYPE html>
<!-- 
TODO:
Allow switching from files to files (have to figure out the loadLocal params first)
Multi-file editing with HTML, CSS, and JS, all saved seprately, and is usable after saving somehow, with labels
-->
<html>

<head>
	<title id="webpage-title">Live HTML Editor</title>
	<meta name="viewport" content="width=device-width initial-scale=1" />
	<link rel="icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAKE0lEQVR42uzdUYSVaRzH8UeSkZG5yMgaIyNJF8nISlaykrUykpFkr1aystZepIsuhnSRZCVdjGQlWV2sJCPZi66y1lrJGiNjL8ZIxhpjjS7WOMZv/xfvrtG+nZnO857zPv/3+X74kYrXOXN858yZ97wnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACSI2mLbAFAc0kasn1hu217blu0tVQo/rxY/Nvt4v8OBQA+Sdpm+9o2rc69tJ2zbQ0A0iep33bFtqzqLNsmbP0BQJoknbYtqHsWbCcDgHQUT/cfqnfu8WwASICkEdsr9d7vvFAI1EjSbtsb1WfeNhIA9JakYdsb1W/O9lEAUOjNK/3TSscLflUI9Iike0rPZADQXZLGlK7PAoDukLTVNqd0/WHrCwCqJ+mC0vdtAFAtSX22BaXvNe8wBCom6Yz8OBWAXpK0w3bcdt52yTaR2I5E3r6n8uNJ5G09ksjXbO0u2c4Xj7EdAfWTtMV21varbVVpm4g817+laqzapor77XCxc7YnFd6HLdu2iNs7obStFo+5s/y4UxNJJ2zz8iMmAMdVjWnbaJvjjFZ4gtHnDQ7AWvO2sYDekLTZdkf+xATgmuJN2wY2cKwB24ziXc0kACpM2jYHdP0p/5R8ignAlOK0bHs/4Hh7bS3FeZxZAGSm+JGgiyQ9kF8xAZhVnPsdHPO+4sxkGACZHwKqJ+m8fIsJwKLijHX0GkucxUwDIHMuoDqSBm1v5VtMAFYUZ08Hx9yjOH9nHIBl2/aAaki6If8uhA4p3q4OjrlLkRp+yvN6vguIJ6m/Ad/9ZU7UGICjHRzzWI0BOCn/lrlGQn6nwL5Py7a9xgDc6OCYN2sMwKCDE7s24nRAHEnfy79HIYLivbUNfsDxtlfxrCvyNj+Wf3cC4kh6Id9WbPtCBFXjJ9umDRxrk+2pTM0B2G9rybcXAXEk/SXfLoRIqs4T28A6ZwE+VUVCJEkX5dtSQBzn3wUmgkkoADJLtsu2UVt/sdHi75ZkUglAMJIuy69WQFIP/l6Zs41lfh+oyjd+JX4ptPcKyOLB3yoeoA9s47bNGd4H/9OFN4GNF/fxnJdnhgFJPfif2U7aBm2bghNyKjhRxGWH7ZTt5xzvg2SpGqu2i8EhSZvkl5vIvnN/XyEAiUjpxbg6SNomv9x+grCkWwRgHU4CMOv5Qg2S9suvfcEpSVttCwSgDScBcH2deknfyK+vgmOSrhOANpwE4EBwTNJv8uuX4JikMQLQhpMAuP3oaknj8u94cErSAQLQhpMAuLyGu6TdtiX596dtJDgkaZQAtEEAukPSIScfA7ZRr22jwRkCsA4CUC1JO22TDXkv/LtWbNc8XSqLAKyDAFRD0lHbXduKmm/ZdtN2KCSOAKyDAESdbXbMdsvrm1wqMmO7ajuY4lmDBGAdBODDSPrUdte2KLxrwXYnpWcGBGAdTgLwUaiZpMO258JGPbMdDO0QgDx4DkBxOuldoROrtklbXyhBADLhNQCShm0zQqyXZV9DApAJjwGQNGJ7I1Rl3rYzrEEAMuEtAJIGbLNC1V7ZBkKBAGTCYQAeCt3yY/gXAciDpwA05COtUjcegiEAefASAElbMj+pp1fmbX0EIBOOAvCl8J8mXGiEALRFANaSNC30yiwByISHAEj6WOi1TwhABpwE4IbQa7cIQAacBIDf+/feHAHIQOoBkDQk1GVn6pdkD2h8AJpw4U6vzhCAhnMQgKtCXa4TgIZzEIBHQl2mCEDDOQgAv/+vzwwBaDgHAVgW6rJMABou9QCguQhAewQAjUYA2iMAaDQC0B4BQKMRgPYIABqNALRHANBoBKA9LwEYCgAB8IkAoAwByAQBQBkCkAkCgDIEIBMEAGUIQCYIAMoQgEwQAJQhAJkgAChDADJBAFCGAGSCAKAMAchE3QFQwwUQgJQRAAJQigDkgQAQgFIEIA8EgACUIgB5IAAEoC6S9nH/vh8BaIAAApAyAkAAShGAPBAAAlCKAOSBE4FQhgBkggCgDAHIBAFAGQKQCQKAMgQgEwQAZQhAJggAyhCATBAAlCEAmVC84QAQAJ8IAMoQgEwQAJQhAJkgAChDADJBAFCGAGSCAKAMAcgEAUAZApAJAoAyBCATBABlCEAmFG+YC4I0FwFoOAIAApCxf9q5YxW7qiiOw5sQJKWPEESCBAuR1BbiE4iIzBOI+AASxC5YiA8gPo5YiHWwkCFlCCF1mGLY2RdSpFh3QXLuzZy91/fBv58De/8YLocjAAhAYQKAABQmAAhAYQKAABQmANxgAD7d899XggAgAIV5EYiMACxOAIgIQBECQEQAihAAIgJQhAAQEYAiBICIABQhAEQEoAgBICIARfTt7jYQgDkJABEBKEIAiAhAEQJARACKEAAiAlCEABARgCIEgIgAFCEARASgiFMEwAdBIvN/sEMAChCAubWJCUBOAFj6AghATgBY+gIIQE4AWPoCCEBOAFj6AghATgBY+gIIQE4AWPoCCECuRACoq/d+XwCOEwCWJgA5AWBpApATAJYmADkBYGkCkBMAliYAOQFgaQKQEwCWJgA5AWBpApCbJQAfNRCAOQkAEQEoQgCICEARAkBEAIoQACICUIQAEBGAIgSAiAAUcYoA+CDIfrUdE4CcACAAEz/fFARgbW3HBCAnAAjAxM83BQFYW9sxAcgJAAIw8fNNQQDW1nZMAHICgABM/HxT8CIQEQEoQgCICEARAkBEAIoQAG5K7/0TAThOAFiaAOQEgKUJQE4AWJoA5ASApQlATgBYmgDkBIClCUBulgB83EAA5iQARASgCAEgIgBFCAARAShCAIgIQBECQEQAijhFAHwQZJNfWlECkBOAGgRAAEICUIMACEBIAGoQAAEICUANAiAAIQGoQQAEICQANQiAAIQEoAYBEIBQiQBQlwDkBIClCUBOAFiaAOQEgKUJQE4AWJoA5ASApfXe7wnAcQLA0gQgJwAsTQByAsDSBCAnACxNAHICwNIEICcALE0AcrME4F4DAZiTABARgCIEgIgAFCEARASgCAEgIgBFCAARASiib/dFg3dwODsCcNwsAXjY4B0czo4AHDdLAC7HPmjwFg5nZuxSAI6bJQAHjxq83bn7tQ8CcNxMATj4eexWg/y83R571AcByM0WgIN/xi7G7o59aPbG7o/9OPa4DwKwEx0m1hAA6mpsDsBVhzldNTYH4FmHOT1tbA7A3x3m9FdjcwB+7zCn3xqbA/BVhzl92dgcgFtjTzrM5dKLZ6eLwA8d5vJ946SvZ/7XYQ6Px243ThqBz70TwARejn3WOEsEvhu77rBP12PfNs4agQv/CbBDV2MXjfcSgQdjlx324f+xB43A+SJwZ+zh2PMON+P52E9jdxqJ84fgm7E/x/4de+F3As7geuzF6zP2x9jXLj4AAAAAAAAAAAAAAAAAAABwDq8Aw9SOAC2Y8AUAAAAASUVORK5CYII=">
	<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
	<style>
		:root {--body-color:#222;--editor-bg:#333;--editor-text:#fff;--border-color:#444;--viewer-bg:#333;--viewer-text:#fff;--btn-color:#555}
		[theme=dark]{--body-color:#222;--editor-bg:#333;--editor-text:#fff;--border-color:#444;--viewer-bg:#333;--viewer-text:#fff;--btn-color:#555}
		[theme=light]{--body-color:#bdc3c7;--editor-bg:#fff;--editor-text:#000;--border-color:#ddd;--viewer-bg:#fff;--viewer-text:#000;--btn-color:#999}
		body {overflow:hidden;font-family:Arial,sans-serif;margin:0;overflow:hidden;background-color:var(--body-color);color:var(--editor-text)}
		button {background-color:#fff;color:#000}
		.main {width:100%;height:92vh;margin-bottom:0;display:inline-flex;flex-direction:row}
		.main * {border-radius:2px;min-width:100px;min-height:250px;margin:10px;width:100%;height:100%;border:1px solid var(--border-color);outline:0}
		.editor {overflow:auto;white-space:nowrap;background-color:var(--editor-bg);color:var(--editor-text);padding:5px 5px 0 5px;font-size:18px;font-family:Inconsolata,monospace;resize:none}
		#viewer {height:100.66%;width:101.4%;background-color:var(--viewer-bg);color:var(--viewer-text)}
		@media all and (max-width:768px) {.main{float:top;flex-direction:column;width:95vw}}
		noscript {font-size:300px}
		#buttons {text-align:center}
		.medium {font-size:16px}
		.small {font-size:12px}
		.mini {font-size:8px}
		.no-margin {margin:0}
		.mini-margin {margin:5px}
		.no-padding {padding:0}
		.middle {text-align:center}
		#file {display:none}
		#toolbar ::selection,#toolbar::selection {color:none;background:0 0}
		.dropbtn {background-color:var(--btn-color);margin-top:10px;outline:0;color:var(--editor-text);padding:8px 16px 8px 16px;font-size:16px;margin-right:-5px;border:none}
		.dropdown {position:relative;display:inline-block}
		.dropdown:first-child {margin-left:10px}
		.dropdown-content {display:none;position:absolute;background-color:var(--btn-color);width:180px;box-shadow:0 2px 16px 0 rgba(0,0,0,.2);z-index:1}
		.dropdown-content * {color:var(--editor-text);padding:12px 16px;text-decoration:none;display:block}
		.dropdown-content p {padding:0 16px}
		.dropdown-content hr {margin:5px;padding:0;border-radius:50px;border-width:2px;border:1px solid gray}
		.dropdown-content a:hover {background-color:#777}
		.dropdown-content .disabled,.dropdown-content .work-in-progress {color:#777}
		.dropdown-content .disabled:hover,.dropdown-content .work-in-progress:hover {background-color:#555;cursor:not-allowed}
		.dropdown-content .disabled::after {content:" (Disabled)"}
		.dropdown-content .work-in-progress::after {content:" (Work-In-Progress"}
		.dropdown:hover .dropdown-content {display:block}
		.dropdown:hover .dropbtn {background-color:#777}
		* {transition:color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out}
		a {cursor:pointer}
	</style>
</head>

<body>
	<noscript>Enable JavaScript</noscript>
	<form name="fileForm">
		<input type="file" id='file' name='file[]' accept=".HTML" />
	</form>
	<div id="toolbar">
		<div class="dropdown" id="filesMenu">
			<button class="dropbtn">File</button>
			<div class="dropdown-content">
				<a id="newSave">New</a>
				<a id="open">Open...</a>
				<a id="save">Save...</a>
				<hr>
				<a id="newNoSave">New without saving</a>
				<hr>
				<a id="nonHTMLBtn">Switch to Non-HTML editing</a>
			</div>
		</div>
		<div class="dropdown" id="viewMenu">
			<button class="dropbtn">View</button>
			<div class="dropdown-content">
				<a id="refresh">Refresh</a>
				<a id="setRefresh">Set Refresh time...</a>
				<a id="stopRefresh">Stop Dynamic Refresh</a>
				<a id="instantRefreshBtn">Enable Instant Refresh</a>
				<hr>
				<a id="eIframe">Open Iframe externally</a>
				<hr>
				<a id="indentSize">Set Tab Size...</a>
				<a id="fontSize">Set Font Size...</a>
				<a id="wrappingBtn">Enable wrapping</a>
				<hr>
				<a id="changeLightMode">Change light mode</a>
				<hr>
				<a id="forceReload">Force Reload Page</a>
			</div>
		</div>
		<div class="dropdown" id="otherMenu">
			<button class="dropbtn">Misc</button>
			<div class="dropdown-content">
				<a id="oldLoad">Load from old local storage</a>
				<a href="LHE-FAQ.html">FAQ</a>
				<hr>
				<a href="https://www.youtube.com/watch?v=onLsz9BwP7M" target="_blank">Original</a>
				<hr>
				<a id="settingsReset">Reset Settings</a>
			</div>
		</div>
		<div class="dropdown" id="fixesMenu">
			<button class="dropbtn">Fixes</button>
			<div class="dropdown-content">
				<a id="help1">"The editor doesn't refresh the preview!" (Reset Settings)</a>
			</div>
		</div>
		<div class="dropdown" id="helpMenu">
			<button class="dropbtn">Help</button>
			<div class="dropdown-content">
				<a href="https://www.w3schools.com/html/default.asp" target="_blank" id="html-tutorial">HTML Tutorial</a>
				<hr>
				<a href="https://htmlformatter.com/" target="_blank" id="prettify">Prettify HTML</a>
				<hr>
				<a href="https://htmlcodeeditor.com/" target="_parent">Alternative Live HTML Editor</a>
			</div>
		</div>
	</div>
	<form name='editor'>
		<div class="main" id="main">
			<!-- Grammarly disabled https://stackoverflow.com/a/46777787/13104233 -->
			<textarea id="editor-textarea" class="editor" autocomplete="off" autocapitalize="off" spellcheck="false" autofocus placeholder="HTML, CSS, and/or JS" data-gramm_editor="false">
<!DOCTYPE html>
<html>

<head>
	<title>Your Title Here</title>
	<meta name="viewport" content="width=device-width initial-scale=1">
	<link rel="stylesheet" type="text/css" href="path/to/stylesheet">
	<style>
		/* Styling */
	</style>
	<!-- Metadata and stuff -->
</head>

<body>
	<!-- Elements -->
</body>

<script>
	// Javascript
</script>

</html>
</textarea>
	</form>
	<iframe id="viewer">
		<p>Sorry, your browser doesn't support iframes. Try with another browser or just <a id="nonHTMLbtn">edit without a preview.</a></p>
	</iframe>
	</div>
</body>
<script>
var dSettings =  {
		'refreshInterval': 500,
		'autoRefresh': true,
		'instantRefresh': false,
		'tabSize': 4,
		'fontSize': 18,
		'disableWrapping': true,
		'lightMode': false
	},
	settings = dSettings,
	saved = false,
	fileName,
	wideLocalStorageName = "RTE_HTML",
	mainFunctions = [],
	windowExternalWindow,
	windowFeatures = "menubar=yes,location=no,resizable=yes,scrollbars=no,status=yes,fullscreen=yes";
load();
function settingsCheck()  {
	if (localStorage.settings == '' || localStorage.settings == null || localStorage.settings == undefined)  {
		localStorage.settings = JSON.stringify(dSettings);
		return dSettings;
	} else  {
		var TempSettings = localStorage.settings;
		settings = JSON.parse(TempSettings); // https://stackoverflow.com/a/2010948/13104233
		instantRefreshCheck();
		document.getElementById('editor-textarea').style.fontSize = settings.fontSize + "px";
		document.getElementById('editor-textarea').style.tabSize = settings.tabSize;
		checkWrapping();
		checkLightMode();
		return settings
	}
}

function settingsSave()  {
	localStorage.settings = JSON.stringify(settings);
	return settings;
}

function settingsReset()  {
	localStorage.removeItem("settings");
	localStorage.settings = JSON.stringify(dSettings);
	location.reload(true);
	return settings;
}

function settingsChange(setting, value)  {
	settings[setting] = value;
	settingsSave();
	console.log("Settings changed");
	return settings;
}

function toggleLightMode()  {
	if (settings.lightMode)  {
		document.body.setAttribute('theme', 'dark');
		document.getElementById('editor-textarea').setAttribute('theme', 'dark');
		document.getElementById('viewer').setAttribute('theme', 'dark');
		settingsChange('lightMode', false);
	} else if (settings.lightMode === false)  {
		document.body.setAttribute('theme', 'light');
		document.getElementById('editor-textarea').setAttribute('theme', 'light');
		document.getElementById('viewer').setAttribute('theme', 'light');
		settingsChange('lightMode', true);
	} else  {
		settingsChange('lightMode', false);
	}
	return settings.lightMode;
}

function checkLightMode()  {
	if (settings.lightMode)  {
		document.body.setAttribute('theme', 'light');
		document.getElementById('editor-textarea').setAttribute('theme', 'light');
		document.getElementById('viewer').setAttribute('theme', 'light');
	}
	return settings.lightMode;
}

function instantRefreshCheck()  {
	if (settings.instantRefresh)  {
		document.getElementById('instantRefreshBtn').innerHTML = "Disable Instant Refresh";
	}
	return settings.instantRefresh;
}
// https://www.abeautifulsite.net/adding-and-removing-elements-on-the-fly-using-javascript
function removeElement(elementId)  {
	// Removes an element from the document
	var element = document.getElementById(elementId);
	element.parentNode.removeChild(element);
	return element;
}

function nonHTMLMode()  {
	removeElement('viewer');
	document.getElementById('nonHTMLBtn').removeEventListener("click", nonHTMLMode);
	document.getElementById('nonHTMLBtn').addEventListener('click', reloading);
	document.getElementById('nonHTMLBtn').innerHTML = "Switch back to HTML Editor";
}

function refresh(time, downUp)  {
	saveLocal();
	if (settings.autoRefresh)  {
		if (settings.instantRefresh)  {
			refreshING();
			eRefreshING();
		} else  {
			mainFunctions.forEach(clearTimeout); // https://stackoverflow.com/questions/54277835/how-to-stop-calling-a-function-js/54277902#54277902
			mainFunctions = [];
			console.log("Detected " + downUp + " typing");
			mainFunctions.push(setTimeout(refreshING, time));
			mainFunctions.push(setTimeout(eRefreshING, time));
		}
	} else if (downUp == 'forced')  {
		refreshING();
		eRefreshING();
	}
	return;
}

function refreshING()  {
	saved = false;
	try  {
		// Adopted from CodeMirror HTML5 preview
		var previewFrame = document.getElementById('viewer');
		var preview = previewFrame.contentDocument || previewFrame.contentWindow.document;
		preview.open();
		preview.write(document.getElementById('editor-textarea').value);
		preview.close();
		// Adopted from the original
		// document.getElementById('viewer').srcdoc = document.getElementById('editor-textarea').value;
	} catch (err)  {
		return err;
	}
	emptyAndLog("Refreshed");
	return true;
}

function eRefreshING()  {
	saved = false;
	try  {
		// Adopted from CodeMirror HTML5 preview
		var previewFrame = windowExternalWindow.document.getElementById('e-viewer');
		var preview = previewFrame.contentDocument || previewFrame.contentWindow.document;
		preview.open();
		preview.write(document.getElementById('editor-textarea').value);
		preview.close();
		// Adopted from the original
		// windowExternalWindow.document.getElementById('e-viewer').srcdoc = document.getElementById('editor-textarea').value;
	} catch (err)  {
		return err;
	}
	emptyAndLog("Refreshed Externally");
	return true;
}

function toggleInstantRefresh()  {
	if (settings.instantRefresh)  {
		document.getElementById('instantRefreshBtn').innerHTML = "Enable Instant Refresh";
		settingsChange("instantRefresh", false);
	} else if (settings.instantRefresh === false)  {
		document.getElementById('instantRefreshBtn').innerHTML = "Disable Instant Refresh";
		if (settings.autoRefresh === false)  {
			stopRefresh();
		}
		settingsChange("instantRefresh", true);
		return settings.instantRefresh;
	}
}

function reloading()  {
	try  {
		windowExternalWindow.close();
		saveLocal();
		location.reload(true);
	} catch (err)  {
		saveLocal();
		location.reload(true);
	}
	return;
}

function stopRefresh()  {
	if (settings.autoRefresh)  {
		settingsChange("autoRefresh", false);
		document.getElementById('stopRefresh').innerHTML = "Start Dynamic Refresh";
		if (settings.instantRefresh)  {
			toggleInstantRefresh();
		}
	} else  {
		settingsChange("autoRefresh", true);
		document.getElementById('stopRefresh').innerHTML = "Stop Dynamic Refresh";
		refreshING();
	}
	return settings.autoRefresh;
}

function setRefreshTime()  {
	var timeOfRefresh = parseInt(prompt("How long until refresh? (MS)", settings.refreshInterval));
	if (typeof timeOfRefresh === null || timeOfRefresh == 'NaN' || typeof timeOfRefresh === NaN)  {
		return timeOfRefresh;
	}
	settingsChange("refreshInterval", timeOfRefresh);
	return settings.refreshInterval;
}

function checkWrapping()  {
	if (settings.disableWrapping == false)  {
		document.getElementById('editor-textarea').style.whiteSpace = "normal"; // Allow
		document.getElementById('wrappingBtn').innerHTML = "Disable Wrapping";
	}
	return settings.disableWrapping;
}

function wrapping()  {
	if (settings.disableWrapping == true)  {
		document.getElementById('editor-textarea').style.whiteSpace = "normal"; // Allow
		document.getElementById('wrappingBtn').innerHTML = "Disable Wrapping";
		settingsChange("disableWrapping", false);
	} else if (settings.disableWrapping == null || settings.disableWrapping == undefined || settings.disableWrapping == '' || settings.disableWrapping == false)  {
		document.getElementById('editor-textarea').style.whiteSpace = "nowrap"; // Disallow
		document.getElementById('wrappingBtn').innerHTML = "Enable Wrapping";
		settingsChange("disableWrapping", true);
	}
	return settings.disableWrapping;
}

function saveLocal(localStorageName = wideLocalStorageName)  {
	saved = false;
	localStorage.setItem(localStorageName, document.getElementById('editor-textarea').value);
	logAndEmpty("Saved");

	return localStorage.getItem(localStorageName);
}

function loadLocal()  {
	if (typeof localStorage.RTE_HTML == undefined || typeof localStorage.RTE_HTML == null || localStorage.RTE_HTML == '')  {
		return false;
	} else {
		document.getElementById('editor-textarea').value = localStorage.RTE_HTML;
		refreshING();
	}
	return localStorage.RTE_HTML;
}

function oldLoadLocal(oldLocalStorageName)  {
	if (localStorage.oldLocalStorageName == 'undefined' || localStorage.oldLocalStorageName == 'null' || localStorage.oldLocalStorageName == undefined || localStorage.oldLocalStorageName == null)  {
		console.log('Old local storage not found! ' + oldLocalStorageName);
		return false;
	} else  {
		document.getElementById('editor-textarea').value = localStorage.oldLocalStorageName;
		console.log("Loaded from old local storage! '" + localStorage.oldLocalStorageName + "'");
		localStorage.removeItem(oldLocalStorageName);
		console.log("Converted from old local storage! " + oldLocalStorageName);
		refreshING();
		return true;
	}
}

function allOfOldLoadLocal()  {
	oldLoadLocal("RTE_HTML_File");
	return;
}

// Open the file
// https://www.javascripture.com/FileReader
var openFile = function(event)  {
	fileName = document.getElementById('file').value.replace("C:\\fakepath\\", "");
	console.log(fileName);
	var input = event.target;
	resetText();
	var reader = new FileReader();
	reader.onload = function()  {
		var text = reader.result;
		var editor = document.getElementById('editor-textarea');
		editor.value = text;
		refreshING();
		saveLocal();
		fileForm.reset(); // https://www.geeksforgeeks.org/how-to-reset-a-form-using-jquery-with-reset-method/
	};
	reader.readAsText(input.files[0]);
};

function downloadHTML(fileNames = fileName)  {
	fileNames = prompt("Choose a name for your file", fileName);
	if (fileNames != 'null')  {
		fileNames.replace(".html", "");
		download(fileNames + ".html", document.getElementById('editor-textarea').value);
		saved = true
		return;
	}
}

function backupHTML()  {
	if (saved == false)  {
		download("backupHTML.html", document.getElementById('editor-textarea').value);
		saved = true;
	}
	return;
}

function download(filename, text)  { // https://stackoverflow.com/questions/3665115/how-to-create-a-file-in-memory-for-user-to-download-but-not-through-server
	var element = document.createElement('a');
	element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
	element.setAttribute('download', filename);
	element.style.display = 'none';
	document.body.appendChild(element);
	element.click();
	document.body.removeChild(element);
	saved = true;
}

function openExternalWindow()  {
	if (typeof windowExternalWindow === "undefined")  {
		childWindowChecking = setInterval(childWindowCheck, 1000);
		windowExternalWindow = window.open("", "External HTML Live View", windowFeatures);
		windowExternalWindow.document.write("<script>function confirmExit() {return \"\"}window.onbeforeunload=confirmExit;<\/script><body style=\"margin:0px;overflow:hidden;\"><iframe style=\"width: 100%;height:100%;border:0px;\" id=\"e-viewer\"></iframe></body>");
		removeElement("viewer");
		eRefreshING();
	}
}

function childWindowCheck()  { // Use not found, but is used on line 2 of openExternalWindow() function
	if (windowExternalWindow.closed) {
		saveLocal();
		reloading();
	}
}

function resetText()  {
	backupHTML();
	editor.reset();
	refreshING();
	saved = true;
	return;
}

function emptyAndLog(text)  {
	console.log('');
	console.log(text);
}

function logAndEmpty(text)  {
	console.log(text);
	console.log('');
}

function setIndentSize()  {
	var indentSize = parseInt(prompt("How many spaces for indenting?", settings.tabSize));
	document.getElementById('editor-textarea').style.tabSize = indentSize;
	settingsChange("tabSize", indentSize);
	return settings.tabSize;
}

function fontSize()  {
	var fontSizeChoice = parseInt(prompt("What would you like the font size to be?", settings.fontSize));
	if (fontSizeChoice != '' || fontSizeChoice != 'NaN' || fontSizeChoice !== null || fontSizeChoice !== undefined || fontSizeChoice != null)  {
		document.getElementById('editor-textarea').style.fontSize = fontSizeChoice + "px";
		settingsChange("fontSize", fontSizeChoice);
	}
	return settings.fontSize;
}

function insertAtCaret(areaId, text)  { // https://stackoverflow.com/questions/1064089/inserting-a-text-where-cursor-is-using-javascript-jquery
	var txtarea = document.getElementById(areaId);
	if (!txtarea)  {
		return;
	}
	var scrollPos = txtarea.scrollTop;
	var strPos = 0;
	var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? "ff" : (document.selection ? "ie" : false));
	if (br == "ie")  {
		txtarea.focus();
		var range = document.selection.createRange();
		range.moveStart('character', -txtarea.value.length);
		strPos = range.text.length;
	} else if (br == "ff")  {
		strPos = txtarea.selectionStart;
	}
	var front = (txtarea.value).substring(0, strPos);
	var back = (txtarea.value).substring(strPos, txtarea.value.length);
	txtarea.value = front + text + back;
	strPos = strPos + text.length;
	if (br == "ie")  {
		txtarea.focus();
		var ieRange = document.selection.createRange();
		ieRange.moveStart('character', -txtarea.value.length);
		ieRange.moveStart('character', strPos);
		ieRange.moveEnd('character', 0);
		ieRange.select();
	} else if (br == "ff")  {
		txtarea.selectionStart = strPos;
		txtarea.selectionEnd = strPos;
		txtarea.focus();
	}
	txtarea.scrollTop = scrollPos;
}

function changeKeyPress(elementID, keyCode, text)  {
	document.getElementById(elementID).addEventListener("keydown", function(event)  {
		if (event.keyCode == keyCode)  {
			event.preventDefault();
			insertAtCaret(elementID, text);
		}
	});
}

function noMsgSaveLocal(localStorageName = wideLocalStorageName)  {
	localStorage.setItem(localStorageName, document.getElementById('editor-textarea').value);
	return localStorage.localStorageName;
}

function splitEditing()  {
	// get html, css, and js and then inject then display. oh, and also, change a variable that tells that it's in split edit mode which is also stored in local storage
}

function onStuff()  {
	document.body.addEventListener("beforeunload", reloading);
	document.getElementById('newSave').addEventListener("click", resetText);
	document.getElementById('open').addEventListener("click", function()  { document.getElementById('file').click() });
	document.getElementById('save').addEventListener("click", downloadHTML);
	document.getElementById('newNoSave').addEventListener("click", function()  { editor.reset(); refreshING(); });
	document.getElementById('nonHTMLBtn').addEventListener("click", nonHTMLMode);
	document.getElementById('refresh').addEventListener("click", function()  { refresh(0, 'forced'); });
	document.getElementById('setRefresh').addEventListener("click", setRefreshTime);
	document.getElementById('stopRefresh').addEventListener("click", stopRefresh);
	document.getElementById('instantRefreshBtn').addEventListener("click", toggleInstantRefresh);
	document.getElementById('eIframe').addEventListener("click", openExternalWindow);
	document.getElementById('indentSize').addEventListener("click", setIndentSize);
	document.getElementById('fontSize').addEventListener("click", fontSize);
	document.getElementById('wrappingBtn').addEventListener("click", wrapping);
	document.getElementById('changeLightMode').addEventListener("click", toggleLightMode);
	document.getElementById('forceReload').addEventListener("click", reloading);
	document.getElementById('oldLoad').addEventListener("click", allOfOldLoadLocal);
	document.getElementById('settingsReset').addEventListener("click", settingsReset);
	document.getElementById('help1').addEventListener("click", settingsReset);
	document.getElementById('editor-textarea').addEventListener("keyup", function()  { refresh(settings.refreshInterval, 'up') });
	document.getElementById('editor-textarea').addEventListener("keydown", function()  { refresh(settings.refreshInterval, 'down') });
	document.getElementById('file').addEventListener('change', function()  { openFile(event) } );
}

function load()  {
	var t0 = performance.now();
	console.clear();
	console.log("Ignore the fact it still uses document.write, it's to prevent flashing content");
	loadLocal();
	// https://www.html5rocks.com/en/tutorials/file/dndfiles/
	if (window.File && window.FileReader && window.FileList && window.Blob)  {} else  {alert('The File APIs are not fully supported in this browser. The file functions might not work correctly.');}
	settingsCheck();
	changeKeyPress('editor-textarea', 9, "\t");
	onStuff();
	setInterval(noMsgSaveLocal, 1000);
	setInterval(settingsSave, 1000);
	splitEditing();
	var t1 = performance.now();
	console.log("Took " + (t1 - t0) + "ms to load");
	alert("this page is no longer maintained and deprecated. no fixes will be given, and soon removed if not working anymore. you can find alternatives in the help menu.");
	return t1 - t0;
}
</script>
</html>
\ No newline at end of file

A _config.yml => _config.yml +55 -0
@@ 0,0 1,55 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
#
# If you need help with YAML syntax, here are some quick references for you: 
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.

title: JacksonChen666
description: >- # this means to ignore newlines until "baseurl:"
  JacksonChen666's site
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://jacksonchen666.com" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: JacksonChen666
github_username:  JacksonChen666

# Build settings
theme: minima
plugins:
  - jekyll-feed
  - jekyll-github-metadata

repository: JacksonChen666/JacksonChen666.github.io

# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
# the internal "default list".
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
#
# exclude:
#   - .sass-cache/
#   - .jekyll-cache/
#   - gemfiles/
#   - Gemfile
#   - Gemfile.lock
#   - node_modules/
#   - vendor/bundle/
#   - vendor/cache/
#   - vendor/gems/
#   - vendor/ruby/

R HTML-template.html => _layouts/default.html +5 -4
@@ 1,7 1,8 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - </title>
    <title>{{ site.title }} - {{ page.title }}</title>
    <meta name="google-site-verification" content="F07ZPniaA5zDRDgqVDMcvGqginMOIKnKhHtwVS49Irg">
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">


@@ 9,7 10,7 @@
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Template">
    <meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
</head>
<body>
<nav class="navbar">


@@ 25,7 26,7 @@
</nav>
<main>
<h1>Jackson Chen</h1>

{{ content }}
</main>
</body>
</html>
\ No newline at end of file
</html>

D animation-testing.html => animation-testing.html +0 -38
@@ 1,38 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
	<title>JacksonChen666 - Web animation testing</title>
	<link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Animation testing of JacksonChen666 website">
    <style>
        @keyframes crazy{0%{margin-top:-10vh;}100%{margin-top:90vh;}}
        .testing-animation {animation-name:crazy;animation-duration:0.0001s;animation-direction:alternate;animation-iteration-count:infinite;animation-timing-function:ease-in;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
    
<div class="testing-animation" id="testing-animation">
	<p>The quick brown fox jumps over the lazy dog</p>
</div>
</main>
</body>
</html>
\ No newline at end of file

A animation-testing.md => animation-testing.md +14 -0
@@ 0,0 1,14 @@
---
title: Web animation testing
description: Animation testing of JacksonChen666 website
layout: default
---

<style>
    @keyframes crazy{0%{margin-top:-10vh;}100%{margin-top:90vh;}}
    .testing-animation {animation-name:crazy;animation-duration:0.0001s;animation-direction:alternate;animation-iteration-count:infinite;animation-timing-function:ease-in;}
</style>

<div class="testing-animation" id="testing-animation">
    The quick brown fox jumps over the lazy dog
</div>

R apple-script.html => apple-script.md +34 -55
@@ 1,52 1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - AppleScript</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="AppleScript">
    <style>
        a+pre{display:none;}
        a:hover+pre,pre:hover{display:block;}
        pre{margin-bottom:-18px;margin-top:3px;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
    <div id="explanation">
        <p>I actually like programming stuff. So far, I've learned 4 total languages: Python, HTML (and related), Java, and AppleScript<br>
            AppleScript is for mac only. If you are on other OS, it won't work properly.</p>
        <a href="applescript-gen.html">AppleScript URL Encoder</a>
    </div>
    <div id="applescript">
        <p>Here is where I'll share my AppleScript scripts (hover to see code):<noscript>You'll need javascript to open code from links</noscript></p>
        <a href="#random-output-volume" onclick="openAppleScript();">Random Output Volume</a>
        <pre>set originalv to output volume of (get volume settings)
---
title: Applescript
description: Page of applescript
layout: default
---

<style>
    a+pre{display:none;}
    a:hover+pre,pre:hover{display:block;}
    pre{margin-bottom:-18px;margin-top:3px;}
</style>
<div id="explanation">
    I actually like programming stuff. So far, I've learned 4 total languages (and more counting): Python, HTML (and related), Java, and AppleScript<br>
    AppleScript is for mac only. If you are on other OS, it won't work properly.

    [AppleScript URL Encoder](applescript-gen.html)
</div>
<div id="applescript">
    Here is where I'll share my AppleScript scripts (hover to see code):<noscript>You'll need javascript to open code from links</noscript>
    <a href="#random-output-volume" onclick="openAppleScript();">Random Output Volume</a>
    <pre>set originalv to output volume of (get volume settings)
set repeatz to the text returned of (display dialog "How many times do you want to set the volume randomly?" default answer "100")
repeat repeatz times
    (set volume output volume random number from 0 to 100)
end repeat
set volume output volume originalv</pre>
        <br>
        <a href="#random-input-volume" onclick="openAppleScript();">Random Input Volume</a>
        <pre>set originalv to input volume of (get volume settings)
    <br>
    <a href="#random-input-volume" onclick="openAppleScript();">Random Input Volume</a>
    <pre>set originalv to input volume of (get volume settings)
repeat
    try
        set volume input volume (random number from 0 to 100)


@@ 56,9 36,9 @@ repeat
        return originalv
    end try
end repeat</pre>
        <br>
        <a href="#typing-spammer" onclick="openAppleScript();">Typing spammer</a>
        <pre>set spamText to the text returned of (display dialog "What to spam?" default answer "")
    <br>
    <a href="#typing-spammer" onclick="openAppleScript();">Typing spammer</a>
    <pre>set spamText to the text returned of (display dialog "What to spam?" default answer "")
set repeatTimes to the text returned of (display dialog "Times to spam" default answer "50")
delay 5
tell application "System Events"


@@ 67,9 47,9 @@ tell application "System Events"
        key code 36
    end repeat
end tell</pre>
        <br>
        <a href="#fun-progress-bar" onclick="openAppleScript();">Fun progress bar</a>
        <pre># Save as APP for extra enjoyment
    <br>
    <a href="#fun-progress-bar" onclick="openAppleScript();">Fun progress bar</a>
    <pre># Save as APP for extra enjoyment
(*
PTS means progress total steps
PD means progress descrition 


@@ 192,9 172,9 @@ on quit
    setPCS(0)
    continue quit
end quit</pre>
<br>
<a href="#auto-join-zoom" onclick="openAppleScript();">Auto join Zoom</a>
<pre># It is recommended that you save this script as an application, so you don't have to open Script editor.
    <br>
    <a href="#auto-join-zoom" onclick="openAppleScript();">Auto join Zoom</a>
    <pre># It is recommended that you save this script as an application, so you don't have to open Script editor.
(* 
It all started when I wanted to join zoom faster than a human could do with no prompt like how I expected like this.
I first discovered zoom.us's URL scheme to join meeting, but when I found out it doesn't work, I started to make this program.


@@ 566,5 546,4 @@ versionCheck()</pre>
    }
    window.addEventListener('hashchange', openAppleScript, false);
    openAppleScript();
</script>
</html>
\ No newline at end of file
</script>
\ No newline at end of file

D coding.html => coding.html +0 -35
@@ 1,35 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
	<title>JacksonChen666 - Coding stuff</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="JacksonChen666 coding">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<div id="coding">
<a href="https://github.com/JacksonChen666/Random-Python-Ideas-2" target="_blank" rel='noopener'>Python</a><br>
<a href="apple-script.html">AppleScript</a><br>
<a href="https://wakatime.com/@JacksonChen666" target="_blank" rel="noopener">Coding time stats</a><br>
</div>
</main>
</body>
</html>
\ No newline at end of file

A coding.md => coding.md +9 -0
@@ 0,0 1,9 @@
---
title: Coding stuff
description: JacksonChen666's page of code
layout: default
---

[Python](https://github.com/JacksonChen666/Random-Python-Ideas-2)<br>
[AppleScript](apple-script)<br>
[Coding time stats](https://wakatime.com/@JacksonChen666)

D colorful.html => colorful.html +0 -36
@@ 1,36 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - colorful</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="preload" href="hue-colorful.css" as="style">
    <link rel="stylesheet" type="text/css" href="hue-colorful.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="yeah it's very colorful and all">
    <style>
        .colorful{font-size: 48px; margin-top: 0;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<p class='colorful'>colorful</p>
</main>
</body>
</html>
\ No newline at end of file

A colorful.md => colorful.md +12 -0
@@ 0,0 1,12 @@
---
title: colorful
description: yeah it's very colorful and all
layout: default
---

<link rel="preload" href="hue-colorful.css" as="style">
<link rel="stylesheet" type="text/css" href="hue-colorful.css">
<style>
    .colorful{font-size: 48px; margin-top: 0;}
</style>
<span class='colorful'>colorful</span>

D credits.html => credits.html +0 -35
@@ 1,35 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - </title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Template">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<h2>Credits for most of this website's design:</h2>
<p>
<a href="https://www.youtube.com/watch?v=biOMz4puGt8">Sidebar</a>: <a href="https://www.youtube.com/channel/UCsBjURrPoezykLs9EqgamOA">Fireship</a><br>
Sidebar svg icons: <a href="https://css.gg">css.gg</a>
</p>
</main>
</body>
</html>
\ No newline at end of file

A credits.md => credits.md +9 -0
@@ 0,0 1,9 @@
---
title: Credits
description: Credits for everyone who made JacksonChen666's website possible
layout: default
---

## Credits for most of this website's design:
[Sidebar](https://youtu.be/biOMz4puGt8): [Fireship](https://www.youtube.com/channel/UCsBjURrPoezykLs9EqgamOA)<br>
Sidebar svg icons: [css.gg](https://css.gg)

D ideas.html => ideas.html +0 -54
@@ 1,54 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Questions</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="An Idea giver">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>

<div id="GIVE IDEA">
    <form action="https://JacksonChen666.000webhostapp.com/submit.php" method="post">
        <textarea name="i" maxlength="100000" cols="80" rows="20" placeholder="Idea or Suggestions"></textarea><br>
        <input type="submit" value="GIVE IDEA" name="formSubmit">
    </form>
</div>

<div id="ideas">
    <p>
        All time stamps are in UTC (+0) timezone<br>
        Date format: [MM/DD/YYYY @ hh:mm am/pm]<br>
        <br>
        01/20/2021 @ 1:06pm: ADD MORE MEMESSSSS<br>
        A (16/02/2021 @ 12:41pm): no, memes is dead<br>
        <br>
        03/09/2020 @ 7:34am: random games button and when you click on it it just takes you to the worst possible game.<br>
        A: Status of that: <del>Not now but minesweeperonline.com</del> nvm, nowhere to put it<br>
    </p>
</div>

<div id="old-ideas">
    <a href="old-ideas.html">Older ideas</a>
</div>
</main>
</body>
</html>
\ No newline at end of file

A ideas.md => ideas.md +24 -0
@@ 0,0 1,24 @@
---
title: Ideas
description: Giving ideas to JacksonChen666 on this page since i don't know
layout: default
---


<div id="GIVE IDEA">
    <form action="https://JacksonChen666.000webhostapp.com/submit.php" method="post">
        <textarea name="i" maxlength="100000" cols="80" rows="20" placeholder="Idea or Suggestions"></textarea><br>
        <input type="submit" value="GIVE IDEA" name="formSubmit">
    </form>
</div>

All time stamps are in UTC (+0) timezone<br>
Date format: [MM/DD/YYYY @ hh:mm am/pm]<br>

01/20/2021 @ 1:06pm: ADD MORE MEMESSSSS<br>
A (02/16/2021 @ 12:41pm): no, memes is dead<br>

03/09/2020 @ 7:34am: random games button and when you click on it it just takes you to the worst possible game.<br>
A: Status of that: <del>Not now but minesweeperonline.com</del> nvm, nowhere to put it<br>

[Old ideas](old-ideas)

D index.html => index.html +0 -91
@@ 1,91 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="google-site-verification" content="F07ZPniaA5zDRDgqVDMcvGqginMOIKnKhHtwVS49Irg">
    <script src="randomQuotes.js"></script>
    <script src="youtube-latest.js"></script>
    <title>JacksonChen666 - Home</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="JacksonChen666's home page or whatever">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>

<div id="introDiv">
    <h3 id="intro">Hello, My name is Jackson</h3>
    <p>
        <small id="random_quotes"><noscript>"Please enable JavaScript to view these quotes" -JacksonChen666</noscript></small><br><br>
        Website made by Jackson. Big love and support to Jackson<br>
        <br>
        Just another person on the planet you say that likes weird stuff right? No I am more than that. I like lots of
        stuff some might not like, and expect.<br>
        I was born in hungary, and I come from a chinese culture which is a bit different, but I like food that is not chinese for some reason.<br>
        On this website you can find stuff like <a href="life.html">my life</a> where you could learn more about
        me.<br>
        <div id="latest_video">
            <a id="latestVideoLink">Oh hey, you should check out my maybe new video here</a>
        </div>
        <noscript><style>#latest_video{display:none}</style><a href="https://www.youtube.com/channel/UCut1u2mQy5LMZw5UKgOQKjA" target="_blank">Oh hey, you could check out my youtube channel</a><br></noscript>
        <br>
        That's all for here, you can continue exploring as I continue creating and expanding this website lol.<br>
        While you are here, you might as well help me give some ideas so i can continue creating. You can also use github for it.<br>
        <br>
        <a href="ideas.html">Website suggestions and ideas</a><br>
        <br>
        <a href="https://github.com/JacksonChen666/JacksonChen666.github.io/issues" target='_blank' rel='noopener'>Website issues</a><br>
    </p>
</div>
<p style="font-size:5px;margin-top:105vh">Looking for Guest 666 since 2019</p>
</main>
<script type="text/javascript">
    var quotesLists = [
        "How hard is it to use a computer?",
        "I like bill wurtz",
        "please stop looking at my twitter banner",
        "hi youtube",
        "Wait, am I a developer?",
        "Wait, am I a programmer?",
        "I have reached the state of unmotivated depression",
        "Coding is fun",
        "Why are still alive",
        "<a href='https://twitter.com/jacksonchen666/status/1303089255007350787'>Mark Rober</a>",
        "What a nice day",
        "I am not interesting...",
        "distraction is inevitable",
        "Hello?",
        "haha very funny",
        "Do you like my website?",
        "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
        "why won't this WORK",
        "new video coming soon. maybe. maybe not. maybe i'm gone. idk",
        "no, I would rather destroy humanity other than signing up for an email list",
        "Please enable JavaScript to view these quotes"
    ]
    var endQuotes = "JacksonChen666";
    addQuotesListener("click", "random_quotes", quotesLists, endQuotes);
    constantRandomQuotes(quotesLists, endQuotes);
    randomQuotes(["Welcome to my new domain!"], "JacksonChen666");
    getLatestVideoID(function(id) {
        document.querySelector("#latestVideoLink").setAttribute("href", "https://youtu.be/" + id);
    });
</script>
</body>
</html>

A index.md => index.md +60 -0
@@ 0,0 1,60 @@
---
title: Home
layout: default
---
<script src="randomQuotes.js"></script>
<script src="youtube-latest.js"></script>

### Hello, My name is Jackson
<small id="random_quotes"><noscript>"Please enable JavaScript to view these quotes" -JacksonChen666</noscript></small>

Website made by Jackson. Big love and support to Jackson

Just another person on the planet you say that likes weird stuff right? No I am more than that. I like lots of stuff some might not like, and expect.<br>
I was born in Hungary, and I come from a Chinese culture which is aa bit differnet, but I like food that is not Chinese for some reason.<br>
On this website, you can find stuff like [my life](life.html) where you could learn more about me.

<div id="latest_video">
	<a id="latestVideoLink">Oh hey, you should check out my maybe new video here</a>
</div>
<!-- <noscript><style>#latest_video{displat:none}</style>[Oh hey, you could check out my youtube channel](https://youtube.com/JacksonChen666)</noscript> -->

That's all for here, you can continue exploring as I continue creating and expanding this website lol.<br>
While you are here, you might as well help me give some ideas so I can continue creating. You can also use [GitHub](https://github.com) for it.

[Website suggestions and ideas](ideas.html)

[Website issues](https://github.com/JacksonChen666/JacksonChen666.github.io/issues)

<script type="text/javascript">
    var quotesLists = [
        "How hard is it to use a computer?",
        "I like bill wurtz",
        "please stop looking at my twitter banner",
        "hi youtube",
        "Wait, am I a developer?",
        "Wait, am I a programmer?",
        "I have reached the state of unmotivated depression",
        "Coding is fun",
        "Why are still alive",
        "<a href='https://twitter.com/jacksonchen666/status/1303089255007350787'>Mark Rober</a>",
        "What a nice day",
        "I am not interesting...",
        "distraction is inevitable",
        "Hello?",
        "haha very funny",
        "Do you like my website?",
        "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
        "why won't this WORK",
        "new video coming soon. maybe. maybe not. maybe i'm gone. idk",
        "no, I would rather destroy humanity other than signing up for an email list",
        "Please enable JavaScript to view these quotes"
    ]
    var endQuotes = "JacksonChen666";
    addQuotesListener("click", "random_quotes", quotesLists, endQuotes);
    constantRandomQuotes(quotesLists, endQuotes);
    randomQuotes(["Welcome to my new domain!"], "JacksonChen666");
    getLatestVideoID(function(id) {
        document.querySelector("#latestVideoLink").setAttribute("href", "https://youtu.be/" + id);
    });
</script>

D life.html => life.html +0 -46
@@ 1,46 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - My life</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="My life explained">
    <style type="text/css">
        #aname{font-color:white;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<div id="life">
    <h2>My life</h2>
    <p><b>EDIT:</b> i have no life</p>
    <p>Interests:<br><br>
        <a href="https://github.com/JacksonChen666" target="_blank" rel='noopener' style="margin-left: 0px;">Programming</a><br>
        Socializing with school students<br>
        Video games (dont cause violence)<br>
        <a href="https://www.youtube.com" target="_blank" title="Youtube" rel='noopener' style="margin-left: 0px;">Watching youtube videos</a><br>
        <a href="https://www.youtube.com/channel/UCut1u2mQy5LMZw5UKgOQKjA" target="_blank" rel='noopener' style="margin-left: 0px;">Making youtube videos</a><br>
        <a href="https://www.youtube.com/watch?v=Gc2u6AFImn8&lc=UgylqFtsBWvFWnkQxFp4AaABAg" target="_blank" rel='noopener' style="margin-left: 0px;">Guest 666</a> (yes i am normal and not)<br>
        <a href="https://youtu.be/Tt7bzxurJ1I" rel='noopener' style="margin-left: 0px;">Master chief</a> (idk don't ask)<br>
    </p>
</div>
</main>
</body>
</html>

A life.md => life.md +22 -0
@@ 0,0 1,22 @@
---
title: My life
layout: default
---

<style>
    #aname{fond-color:white;}
</style>

## My life

**EDIT:** i have no life

Interests:

[Programming](https://github.com/JacksonChen666)<br>
Socializing with school students<br>
Video games<br>
[Watching youtube videos](https://youtube.com)<br>
[Making youtube videos](https://youtube.com/JacksonChen666)<br>
[Guest 666](https://www.youtube.com/watch?v=Gc2u6AFImn8&lc=UgylqFtsBWvFWnkQxFp4AaABAg) (yes i am normal and not)<br>
[Master chief](https://youtu.be/Tt7bzxurJ1I) (idk don't ask)

R looper-commands.html => looper-commands.md +8 -5
@@ 1,7 1,10 @@
---
title: Looper Commands
---

<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Looper Commands</title>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <style type="text/css">
        html{font-family:arial;font-size:1.2rem;}


@@ 96,10 99,10 @@
    </script>
</head>
<body>
    <h1>Looper commands</h1>
    <h3>What's this?</h3>
    <p>Basically for a video on <a href="https://youtu.be/mXWGVZVrAig">how to loop something extremely long (and also high quality, e.g. Yoshi 1 hour).</a> I used the command line to do the looping, but I think there are some people who want to do this, and may not be familiar with the command line (and I hate it when they don't know how to use tech). So I made this exact tool that "generates" a command that would help the user loop a video. <small>i also made this at 2 am it's fine</small></p>
    <p>do note that this will only work with the most common bash and zsh. If you're on windows, well then sorry.</p>
    # Looper commands
    ### What's this?
    Basically for a video on [how to loop something extremely long (and also high quality, e.g. Yoshi 1 hour).](https://youtu.be/mXWGVZVrAig) I used the command line to do the looping, but I think there are some people who want to do this, and may not be familiar with the command line (and I hate it when they don't know how to use tech). So I made this exact tool that "generates" a command that would help the user loop a video. <small>i also made this at 2 am it's fine</small></p>
    do note that this will only work with the most common bash and zsh. If you're on windows, well then sorry.
    <form action="javascript:createCommand(this.formLol);" method="post" name="formLol">
        <label>Looping video file name / path</label><input type="text" name="loopVideo" required><br>
        <label>Looping video length</label><input type="text" pattern="\d{2,}:\d{2,}:\d{2,}[.,]\d{2,}" placeholder="hh:mm:ss.ms" name="loopVideoLength" required><br>

D memes.html => memes.html +0 -50
@@ 1,50 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Memes</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Best of memes">
    <style>
        .memes p a{margin-left:0px;}
        .headline{font-size:1.75rem;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>

<div id="memes" class="memes">
    <p>
        <a href="https://youtu.be/7FEuZYRx41M" class="headline" target="_blank" rel='noopener'>Toast of the peak</a><br>
        <a href="https://youtu.be/7FEuZYRx41M?t=247" target="_blank" rel='noopener'>h</a><br>
        <a href="https://youtu.be/7FEuZYRx41M?t=264" target="_blank" rel='noopener'>This website was created on Feburary 26th \
            t</a><br>
        <a href="https://youtu.be/7FEuZYRx41M?t=370" target="_blank" rel='noopener'>hello everybody M Y &nbsp; N &nbsp; A &nbsp; M
            &nbsp; E &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; I &nbsp; &nbsp; &nbsp; S &nbsp; &nbsp; &nbsp;
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; J &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; A &nbsp; &nbsp;
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; K &nbsp; &nbsp; &nbsp; &nbsp;
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; O &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N</a><br>
    </p>
</div>
</main>
</body>
</html>
\ No newline at end of file

A memes.md => memes.md +13 -0
@@ 0,0 1,13 @@
---
title: Memes
description: Best of memes*
layout: default
---

<style>
    .headline{font-size:1.75rem;}
</style>
<span class="headline">[Toast of the peak](https://youtu.be/7FEuZYRx41M)</span><br>
[h](https://youtu.be/7FEuZYRx41M?t=247)<br>
[This website was created on Feburary 26th \t](https://youtu.be/7FEuZYRx41M?t=264)<br>
[hello everybody M Y &nbsp; N &nbsp; A &nbsp; M &nbsp; E &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; I &nbsp; &nbsp; &nbsp; S &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; J &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; A &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; K &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; S &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; O &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; N](https://youtu.be/7FEuZYRx41M?t=370)<br>

D old-ideas.html => old-ideas.html +0 -47
@@ 1,47 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Questions</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" conetnt="Old ideas">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<div id="newer-ideas">
    <p><a href="ideas.html" style="margin-left: 0px;">Newer ideas</a></p>
</div>
<div id="GIVE-IDEA">
    <form action="https://JacksonChen666.000webhostapp.com/submit.php" method="post">
        <textarea name="i" maxlength="100000" cols="40" rows="10" placeholder="Idea or Suggestions"></textarea><br>
        <input type="submit" value="GIVE IDEA" name="formSubmit">
    </form>
</div>
<div id="ideas">
    <p>
        All time stamps are in UTC (+0) timezone<br>
        <br>
        No older ideas :/<br>
    </p>
</div>
</div>
</main>
</body>
</html>
\ No newline at end of file

A old-ideas.md => old-ideas.md +17 -0
@@ 0,0 1,17 @@
---
title: Old Ideas
description: Old suggested ideas
layout: default
---

[Newer ideas](ideas)

<div id="GIVE-IDEA">
    <form action="https://JacksonChen666.000webhostapp.com/submit.php" method="post">
        <textarea name="i" maxlength="100000" cols="40" rows="10" placeholder="Idea or Suggestions"></textarea><br>
        <input type="submit" value="GIVE IDEA" name="formSubmit">
    </form>
</div>
All time stamps are in UTC (+0) timezone

No older ideas :/
\ No newline at end of file

D old-questions.html => old-questions.html +0 -54
@@ 1,54 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Old Questions</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" conetnt="Old questions">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<div id="q-nav">
    <p>
        <a href="questions.html">Back to questions</a><br>
        <a href="questions.html">More recent questions</a><br>
        <a href="old-questions.html">Previous questions</a>
    </p>
</div>

<div id="AS">
    <form action="https://JacksonChen666.000webhostapp.com/submit.php" method="post">
        <textarea name="q" maxlength="10000" cols="20" rows="5" placeholder="Question"></textarea><br>
        <input type="submit" value="ASK" name="formSubmit">
    </form>
</div>

<div id="old-q-list">
    <p>
        All time stamps are in UTC timezone<br>
        No old questions :/<br>
        Example:<br>
        <a href="/">[Date YYYY/MM]</a><br>
    </p>
</div>
</div>
</main>
</body>
</html>
\ No newline at end of file

A old-questions.md => old-questions.md +25 -0
@@ 0,0 1,25 @@
---
title: Old Questions
description: Old questions asked by the people of idk
layout: default
---

[Back to questions](questions)<br>
[More recent questions](questions)<br>
[Previous questions](old-questions)

<div id="AS">
    <form action="https://JacksonChen666.000webhostapp.com/submit.php" method="post">
        <textarea name="q" maxlength="10000" cols="20" rows="5" placeholder="Question"></textarea><br>
        <input type="submit" value="ASK" name="formSubmit">
    </form>
</div>

<div id="old-q-list">
    <p>
        All time stamps are in UTC timezone<br>
        No old questions :/<br>
        Example:<br>
        <a href="/">[Date YYYY/MM]</a><br>
    </p>
</div>

D portfolio.html => portfolio.html +0 -87
@@ 1,87 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Portfolio</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Template">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
    <h1>Jackson Chen</h1>
    <h2>Portfolio</h2>
    <p><strong>Disclaimer: </strong>Most of these projects were done with the help of the internet and existing solutions. Please don't expect me to make something powerful from scratch without knowledge on the topic.</p>
    <ul>
        <li>
            <strong>Python</strong>
            <ul>
                <li>
                    <em>Twitter API</em>
                    <ul>
                        <li><a href="https://github.com/JacksonChen666/TwitterLastInteractions">Last interactions</a></li>
                        <li><a href="https://github.com/JacksonChen666/BillWurtzMightQuitTwitter">Bill wurtz might quit song lyrics on a twitter thread</a></li>
                    </ul>
                </li>
                <li>
                    <em>Discord bots</em>
                    <ul>
                        <li><a href="https://github.com/JacksonChen666/Discords-Essentials">Discord bot full of features that discord has as commands</a></li>
                        <li><a href="https://github.com/JacksonChen666/AutoRole">Assign roles based on the level up messages on MEE6 bot.</a></li>
                        <li><em>Discord bots (private repo)</em></li>
                    </ul>
                </li>
                <li>
                    <em>Other</em>
                    <ul>
                        <li><a href="https://github.com/JacksonChen666/Random-Python-Ideas">Random ideas made into python</a></li>
                        <li><a href="https://github.com/JacksonChen666/Random-Python-Ideas-2">Random ideas made into python series 2</a></li>
                        <li><a href="https://github.com/JacksonChen666/video_manipulator">A "module" that can manipulate video information.</a></li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>
            <strong>Java (Self-taught)</strong>
            <ul>
                <li>
                    <em>Spigot plugins</em>
                    <ul>
                        <li><a href="https://github.com/JacksonChen666/treecapitator">Minecraft treecapitator plugin</a></li>
                        <li><a href="https://github.com/JacksonChen666/HypixelSkyblockRecreations">Recreating items from Hypixel Skyblock</a></li>
                    </ul>
                </li>
                <li>
                    <em>Bungeecord plugins</em>
                    <ul>
                        <li><a href="https://github.com/JacksonChen666/BungeecordMOTDServerCount">Add the amount of servers online on the bungeecord onto the MOTD</a></li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>
            <strong>HTML, JS, and the related stuff (Self-taught)</strong>
            <ul>
                <li><a href="https://jacksonchen666.com">My website</a></li>
                <li><a href="endless-typing">Endless typing</a></li>
            </ul>
        </li>
    </ul>
</main>
</body>
</html>
\ No newline at end of file

A portfolio.md => portfolio.md +29 -0
@@ 0,0 1,29 @@
---
title: Portfolio
description: Portfolio of things I made in the programming world
layout: default
---

## Portfolio
**Disclaimer:** Most of these projects were done with the help of the internet and existing solutions. Please don't expect me to make something powerful from scratch without knowledge on the topic.
- **Python**
    - *Twitter API*
        - [Last interactions](https://github.com/JacksonChen666/TwitterLastInteractions)
        - [Bill wurtz might quit song lyrics on a twitter thread](https://github.com/JacksonChen666/BillWurtzMightQuitTwitter)
    - *Discord bots*
        - [Discord bot full of features that discord has as commands](https://github.com/JacksonChen666/Discords-Essentials)
        - [Assign roles based on the level up messages on MEE6 bot.](https://github.com/JacksonChen666/AutoRole)
        - *Discord bots (private repo)*
    - *Other*
        - [Random ideas made into python](https://github.com/JacksonChen666/Random-Python-Ideas)
        - [Random ideas made into python series 2](https://github.com/JacksonChen666/Random-Python-Ideas-2)
        - [A "module" that can manipulate video information.](https://github.com/JacksonChen666/video_manipulator)
- **Java (self-taught)**
    - *Spigot plugins*
        - [Minecraft treecapitator plugin](https://github.com/JacksonChen666/treecapitator)
        - [Recreating items from Hypixel Skyblock](https://github.com/JacksonChen666/HypixelSkyblockRecreations)
    - *Bungeecord plugins*
        - [Add the amount of servers online on the bungeecord onto the MOTD](https://github.com/JacksonChen666/BungeecordMOTDServerCount)
- **HTML, JS, and the related stuff (self-taught)**
    - [My website](/)
    - [Endless typing](/endless-typing)

D questions.html => questions.html +0 -58
@@ 1,58 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Questions</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Questions for JacksonChen666">
    <style type="text/css">
        .questions-ask{width: 150px;height:70px;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>

<div id="ASK">
    <form action="https://jacksonchen666.000webhostapp.com/submit.php" method="post">
        <textarea name="q" maxlength="10000" cols="40" rows="10" for='questions' placeholder="Questions"></textarea><br>
        <input type="submit" value="ASK" name="formSubmit" for='questions'>
    </form>
</div>

<div id="questions">
    <p>
        All time stamps are in UTC (+0) timezone<br>
        Date format: [MM/DD/YYYY @ hh:mm am/pm]<br>
        <br>
        03/11/2020 @ 12:56pm: why are you gay<br>
        A: <del>yes</del> no<br>
        <br>
        03/09/2020 @ 7:30am: h?<br>
        A: h<br>
        <br>
    </p>
</div>

<div id="old-qs">
    <p><a href="old-questions.html">Older questions</a></p>
</div>
</main>
</body>
</html>
\ No newline at end of file

A questions.md => questions.md +22 -0
@@ 0,0 1,22 @@
---
title: Questions
descriptions: Questions for JacksonChen666
layout: default
---

<form action="https://jacksonchen666.000webhostapp.com/submit.php" method="post">
    <textarea name="q" maxlength="10000" cols="40" rows="10" for='questions' placeholder="Questions"></textarea><br>
    <input type="submit" value="ASK" name="formSubmit" for='questions'>
</form>


All time stamps are in UTC (+0) timezone<br>
Date format: [MM/DD/YYYY @ hh:mm am/pm]

03/11/2020 @ 12:56pm: why are you gay<br>
A: <del>yes</del> no

03/09/2020 @ 7:30am: h?<br>
A: h

[Older questions](old-questions)
\ No newline at end of file

D sitemap.html => sitemap.html +0 -66
@@ 1,66 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>JacksonChen666 - Site Index</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Site index">
    <style type="text/css">
        div ul li{list-style:none;margin-left:-39px;}
        @keyframes fake-hue-colorful {
            100% {
                filter: hue-rotate(360deg);
            }
        }
        #colorful{animation: fake-hue-colorful 300s linear normal}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<div id="sitemap" class="sitemap">
    <h2>Site Index</h2>
    <ul>
        <li><p><a href="/">Home</a></p></li>
        <li><p><a href="life.html">My life</a></p></li>
        <li><p><a href="questions.html">Questions</a></p></li>
        <li><p><a href="old-questions.html">Old questions</a></p></li>
        <li><p><a href="ideas.html">Ideas</a></p></li>
        <li><p><a href="old-ideas.html">Old ideas</a></p></li>
        <li><p><a href="apple-script.html">AppleScript</a></p></li>
        <li><p><a href="social-media.html">Social Media</a></p></li>
        <li><p><a href="memes.html" title="Memes">Memes</a></p></li>
        <li><p><a href="notes.html" title="Notes">Notes</a></p></li>
        <li><p><a href="ideas.html" title="Ideas">Ideas</a></p></li>
        <li><p><a href="thing.html" title="Thing">Thing</a></p></li>
        <li><p><a href="portfolio.html" title="Portfolio">Portfolio</a></p></li>
        <li><p><a href="endless-typing" title="Endless typing">Endless typing</a></p></li>
        <li><p><a href="fps.html">Browser FPS</a></p></li>
        <li><p><a href="Live-HTML-Editor.html">Live HTML Editor</a></p></li>
        <li><p><a href="animation-testing.html">Animation testing</a></p></li>
        <li><p><a href="top-secret.html">Top secret</a></p></li>
        <li><p><a href="sitemap.html">Site Index (itself)</a></p></li>
        <li><p id='colorful'><a href="colorful.html">colorful</a></p></li>
        <li><p><a href="credits.html">Credits</a></p></li>
    </ul>
</div>
</main>
</body>
</html>

A sitemap.md => sitemap.md +36 -0
@@ 0,0 1,36 @@
---
title: Site Idex
description: The site's pages
layout: default
---

<style type="text/css">
    @keyframes hue-colorful {
        100% {
            filter: hue-rotate(360deg);
        }
    }
    #colorful{animation: hue-colorful 300s linear normal}
</style>

## Site Index
- [Home](/)
- [My life](my-life)
- [Questions](questions)
- [Old questions](old-questions)
- [Ideas](ideas)
- [Old ideas](old-ideas)
- [AppleScript](apple-script)
- [Social Media](social-media)
- [Memes](memes)
- [Notes](notes)
- [Ideas](ideas)
- [Thing](thing)
- [Portfolio](portfolio)
- [Endless typing](endless-typing)
- [Browser FPS](fps)
- [Animation testing](animation-testing)
- [Top secret](top-secret)
- [Site Index (itself)](sitemap)
- <span id='colorful'>[colorful](colorful)</span>
- [Credits](credits)

D social-media.html => social-media.html +0 -47
@@ 1,47 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Social Media</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Social medias for JacksonChen666">
    <style>
        .srt{font-size:1px;margin:0px;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>

<div id="social-media" class="social-media">
    <p>
        My profiles and Social Medias:<br>
        <br>
        Twitter: <a href="https://twitter.com/JacksonChen666" target="_blank" rel='noopener' style="margin-left: 0px;">@JacksonChen666</a><br>
        Instagram: <a href="https://www.instagram.com/JacksonChen666" target="_blank" rel='noopener' style="margin-left: 0px;">@JacksonChen666</a><br>
        Reddit: <a href="https://www.reddit.com/u/JacksonChen666" target="_blank" rel='noopener' style="margin-left: 0px;">u/JacksonChen666</a> and <a
            href="https://www.reddit.com/r/JacksonChen666" target="_blank" rel='noopener' style="margin-left: 0px;">r/JacksonChen666</a><br>
        Youtube: <a href="https://www.youtube.com/channel/UCut1u2mQy5LMZw5UKgOQKjA" target="_blank" rel='noopener' style="margin-left: 0px;">Jackson Chen</a>
        (You can't rely on youtube search because of MusicNeverSleeps and irrelavent searches)<br>
    </p>
</div>
<p class="srt"><a href="https://twitter.com/yirenchen0731" target="_blank" rel='noopener'>secret</a></p>
</main>
</body>
</html>
\ No newline at end of file

A social-media.md => social-media.md +15 -0
@@ 0,0 1,15 @@
---
title: Social Media
description: Social medias for JacksonChen666
layout: default
---

<style>
    .srt{font-size:1px;margin:0px;}
</style>

My profiles and Social Medias:

[Twitter](https://twitter.com/JacksonChen666)<br>
[Sub](https://www.reddit.com/r/JacksonChen666)[reddit](https://www.reddit.com/u/JacksonChen666)<br>
[Youtube](https://youtube.com/JacksonChen666)

D testing.html => testing.html +0 -31
@@ 1,31 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - </title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="">
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod<br>tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</main>
</body>
</html>
\ No newline at end of file

A testing.md => testing.md +11 -0
@@ 0,0 1,11 @@
---
title: testing
layout: default
---

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod<br>
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br>
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo<br>
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse<br>
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non<br>
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

D thing.html => thing.html +0 -52
@@ 1,52 0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Thing</title>
    <link rel="preload" href="thing.js" as="script">
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Where i make stuff">
    <style>
        button{margin-left:5px}
        #text1{text-align:center;font-size:23px;}
        #cheatText{text-align:center}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
    <h1>Jackson Chen</h1>
    <noscript>This page requires javascript to run (!!!!!!!!!!!!!!!!!!!!!!!)</noscript>
    <br><br>
    <div id="thing">
        <p id="text1"></p>
        <p id="cheatText"></p>
        <br>
        <button id="remove-han" onclick="removeNav()">Remove header and nav</button>
        <button id="mobileCount" onclick="add()">Count</button>
        <button id="customText" onclick="cText()">Custom text</button>
        <button id="cheat" onclick="set()">Set number</button>
        <button id="resetBTN" onclick="reset()">Reset</button>
        <button id="undoReset" onclick="undoReset()">Undo reset</button>
        <br><br><br><br><br>
        <button id="hardReset" onclick="hardReset(true)">Hard reset</button>
    </div>
</main>
<script src="thing.js"></script>
</body>
</html>
\ No newline at end of file

A thing.md => thing.md +27 -0
@@ 0,0 1,27 @@
---
title: Thing
description: Space bar and something happens
layout: default
---

<style>
    button{margin-left:5px}
    #text1{text-align:center;font-size:23px;}
    #cheatText{text-align:center}
</style>
<noscript>This page requires javascript to run (!!!!!!!!!!!!!!!!!!!!!!!)</noscript>
<br><br>
<div id="thing">
    <p id="text1"></p>
    <p id="cheatText"></p>
    <br>
    <button id="remove-han" onclick="removeNav()">Remove header and nav</button>
    <button id="mobileCount" onclick="add()">Count</button>
    <button id="customText" onclick="cText()">Custom text</button>
    <button id="cheat" onclick="set()">Set number</button>
    <button id="resetBTN" onclick="reset()">Reset</button>
    <button id="undoReset" onclick="undoReset()">Undo reset</button>
    <br><br><br><br><br>
    <button id="hardReset" onclick="hardReset(true)">Hard reset</button>
</div>
<script src="thing.js"></script>

R whateveries.html => whateveries.md +11 -35
@@ 1,35 1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <title>JacksonChen666 - Notes</title>
    <link rel="preload" href="main.css" as="style">
    <link rel="preload" href="nav.css" as="style">
    <link rel="stylesheet" type="text/css" href="main.css">
    <link rel="stylesheet" type="text/css" href="nav.css">
    <link rel="preload" href="main.js" as="script">
    <script src="main.js"></script>
    <meta name="viewport" content="width=device-width initial-scale=1">
    <meta name="description" content="Notes of life">
    <style>
        .big{font-size:2rem;}
        .small{font-size:0.75rem;}
        #note{color:var(--main-color)!important;text-decoration:none;}
    </style>
</head>
<body>
<nav class="navbar">
    <ul class="navbar-nav">
        <li class="nav-item"><a href="/" title="Home Page" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 22.879c-1.6568 0-3-1.3432-3-3v-10c0-0.03389 0.00169-0.0674 0.00498-0.10043h-0.00498c0-0.57596 0.2288-1.1283 0.63607-1.5356l6.2426-6.2426c1.1715-1.1716 3.071-1.1716 4.2426 0l6.2426 6.2426c0.4073 0.40726 0.6361 0.95963 0.6361 1.5356h-5e-3c0.0033 0.03303 5e-3 0.06654 5e-3 0.10043v10c0 1.6568-1.3431 3-3 3h-12zm6.7071-19.464 6.2929 6.2929v10.172c0 0.5522-0.4477 1-1 1h-3v-5c0-1.6569-1.3431-3-3-3s-3 1.3431-3 3v5h-3c-0.55228 0-1-0.4478-1-1v-10.172l6.2929-6.293c0.3905-0.39052 1.0237-0.39052 1.4142 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Home</span></a></li>
        <li class="nav-item"><a href="questions.html" title="Questions" class="nav-link"><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><text stroke="null" fill="currentColor" x="4" y="19" id="svg_1" font-size="24" font-family="Helvetica, Arial, sans-serif" text-anchor="start" xml:space="preserve">?</text></svg><span class="link-text">Questions</span></a></li>
        <li class="nav-item"><a href="coding.html" title="Coding stuff" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.325 3.0501-4.6576 17.382 1.9319 0.5176 4.6575-17.382-1.9318-0.51764z" fill="currentColor"/><path d="m7.612 18.361 1.3594-1.4484-5e-4 -0.0191-5.0943-4.7812 4.7904-5.1041-1.4583-1.3687-6.1591 6.5624 6.5624 6.1591z" fill="currentColor"/><path d="m16.388 18.361-1.3594-1.4484 5e-4 -0.0191 5.0943-4.7812-4.7904-5.1041 1.4583-1.3687 6.1591 6.5624-6.5624 6.1591z" fill="currentColor"/></svg><span class="link-text">Coding</span></a></li>
        <li class="nav-item"><a href="whateveries.html" title="Whateveries" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 6c0-0.55228 0.44772-1 1-1h10c0.5523 0 1 0.44772 1 1s-0.4477 1-1 1h-10c-0.55229 0-1-0.44772-1-1z" fill="currentColor"/><path d="m6 10c0-0.55229 0.44772-1 1-1h10c0.5523 0 1 0.44771 1 1 0 0.5523-0.4477 1-1 1h-10c-0.55229 0-1-0.4477-1-1z" fill="currentColor"/><path d="m7 13c-0.55228 0-1 0.4477-1 1s0.44771 1 1 1h10c0.5523 0 1-0.4477 1-1s-0.4477-1-1-1h-10z" fill="currentColor"/><path d="m6 18c0-0.5523 0.44772-1 1-1h4c0.5523 0 1 0.4477 1 1s-0.4477 1-1 1h-4c-0.55228 0-1-0.4477-1-1z" fill="currentColor"/><path d="m2 4c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v16c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-16zm3-1h14c0.5523 0 1 0.44771 1 1v16c0 0.5523-0.4477 1-1 1h-14c-0.55228 0-1-0.4477-1-1v-16c0-0.55228 0.44771-1 1-1z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Whateveries</span></a></li>
        <li class="nav-item"><a href="portfolio.html" title="Portfolio" class="nav-link"><svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m4 1.5c-1.1046 0-2 0.89543-2 2v1c0 0.05666 0.00236 0.11278 0.00698 0.16825-1.1688 0.40986-2.007 1.5229-2.007 2.8318v12c0 1.6569 1.3432 3 3 3h18c1.6569 0 3-1.3431 3-3v-12c0-1.6568-1.3431-3-3-3h-9.126c-0.4441-1.7252-2.0102-3-3.874-3h-4zm5.7324 3c-0.34581-0.5978-0.99216-1-1.7324-1h-4v1h5.7324zm-6.7324 2c-0.55228 0-1 0.44772-1 1v12c0 0.5523 0.44772 1 1 1h18c0.5523 0 1-0.4477 1-1v-12c0-0.55228-0.4477-1-1-1h-18z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Portfolio</span></a></li>
        <li class="nav-item"><a href="sitemap.html" title="Index" class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.343 15.243c2.3432-2.3431 2.3432-6.1421 0-8.4852-2.3431-2.3432-6.1421-2.3432-8.4852 0-2.3431 2.3431-2.3431 6.1421 0 8.4852 2.3432 2.3432 6.1421 2.3432 8.4852 0zm1.4143-9.8994c2.8851 2.8852 3.1059 7.4258 0.6621 10.564 0.0153 0.0135 0.0303 0.0276 0.045 0.0422l4.2426 4.2427c0.3905 0.3905 0.3905 1.0237 0 1.4142s-1.0237 0.3905-1.4142 0l-4.2426-4.2426c-0.0147-0.0147-0.0288-0.0297-0.0423-0.045-3.1385 2.4438-7.6792 2.223-10.564-0.6621-3.1242-3.1242-3.1242-8.1896 0-11.314 3.1242-3.1242 8.1896-3.1242 11.314 0z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Index</span></a></li>
        <li class="nav-item" id="theme" onclick="toggleTheme();"><a class="nav-link"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m12 16c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.3137-2.6863-6-6-6-3.3137 0-6 2.6863-6 6 0 3.3137 2.6863 6 6 6z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/><path d="m11 0h2v4.0619c-0.3276-0.04085-0.6613-0.06189-1-0.06189s-0.6724 0.02104-1 0.06189v-4.0619zm-3.9057 5.6802-2.8726-2.8726-1.4142 1.4142 2.8726 2.8726c0.41061-0.52823 0.88598-1.0036 1.4142-1.4142zm-3.0324 5.3198h-4.0619v2h4.0619c-0.04085-0.3276-0.06189-0.6613-0.06189-1s0.02104-0.6724 0.06189-1zm1.6182 5.9056-2.8726 2.8726 1.4142 1.4142 2.8726-2.8726c-0.52822-0.4106-1.0036-0.886-1.4142-1.4142zm5.3199 3.0325v4.0619h2v-4.0619c-0.3276 0.0409-0.6613 0.0619-1 0.0619s-0.6724-0.021-1-0.0619zm5.9056-1.6182 2.8725 2.8725 1.4142-1.4142-2.8725-2.8725c-0.4106 0.5282-0.886 1.0036-1.4142 1.4142zm3.0325-5.3199h4.0619v-2h-4.0619c0.0409 0.3276 0.0619 0.6613 0.0619 1s-0.021 0.6724-0.0619 1zm-1.6183-5.9057 2.8725-2.8725-1.4142-1.4142-2.8725 2.8725c0.5282 0.41061 1.0036 0.88598 1.4142 1.4142z" clip-rule="evenodd" fill="currentColor" fill-rule="evenodd"/></svg><span class="link-text">Themes</span></a><noscript><style>#theme{display:none;}</style></noscript></li>
    </ul>
</nav>
<main>
<h1>Jackson Chen</h1>
---
title: Whateveries
description: Whateveries of words
layout: default
---

<style>
    .big{font-size:2rem;}
    .small{font-size:0.75rem;}
    #note{color:var(--main-color)!important;text-decoration:none;}
</style>
<div id="notes">
    <p class="small">
        hint hint: click date to reference so you can just copy and yeet the link


@@ 228,6 207,3 @@
    const links = Array.prototype.slice.call(document.getElementById("notes").querySelectorAll("a"));
    links.forEach(addDate);
</script>
</main>
</body>
</html>