diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json index c0abdf6..4023a39 100644 --- a/.vs/VSWorkspaceState.json +++ b/.vs/VSWorkspaceState.json @@ -1,7 +1,6 @@ { "ExpandedNodes": [ "", - "\\assets", "\\assets\\image", "\\assets\\music", "\\assets\\music\\1kije3", @@ -9,8 +8,9 @@ "\\_credits", "\\_data", "\\_includes", - "\\_layouts" + "\\_layouts", + "\\_posts" ], - "SelectedNode": "\\favicon-16x16.png", + "SelectedNode": "\\_layouts\\post.html", "PreviewInSolutionExplorer": false } \ No newline at end of file diff --git a/.vs/alphazero-official.github.io/v16/.suo b/.vs/alphazero-official.github.io/v16/.suo index 44bb0cb..b2c883a 100644 Binary files a/.vs/alphazero-official.github.io/v16/.suo and b/.vs/alphazero-official.github.io/v16/.suo differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index e62ee70..7e0f230 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/Gemfile b/Gemfile index 85e7284..a85ebb6 100644 --- a/Gemfile +++ b/Gemfile @@ -1,35 +1,14 @@ 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.3.2" -# This is the default theme for new Jekyll sites. You may change this to anything you like. gem "minima", "~> 2.5.1" -# 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" gem "jekyll-target-blank" gem "jekyll-seo-tag" 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", "< 3" gem "tzinfo-data" end - -# Performance-booster for watching directories on Windows gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] - -# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem -# do not have a Java counterpart. -gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] +gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] \ No newline at end of file diff --git a/_config.yml b/_config.yml index bf485c7..24b35c4 100644 --- a/_config.yml +++ b/_config.yml @@ -1,28 +1,8 @@ -# 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: αlpha.zero +title: αlpha.zero email: dotzeroalpha@gmail.com -description: >- # this means to ignore newlines until "baseurl:" -baseurl: # the subpath of your site, e.g. /blog -url: https://alphazero-official.github.io # the base hostname & protocol for your site, e.g. http://example.com +description: >- +baseurl: +url: https://alphazero-official.github.io twitter_username: alphazeroOFF youtube_username: alphazeroOfficial github_username: alphazero-official @@ -56,14 +36,6 @@ logo: "/assets/image/AZ2022.png" disqus: shortname: alphazero-1 -# 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/ @@ -74,4 +46,4 @@ disqus: # - vendor/bundle/ # - vendor/cache/ # - vendor/gems/ -# - vendor/ruby/ +# - vendor/ruby/ \ No newline at end of file diff --git a/_data/music.yml b/_data/music.yml index 16edb98..0ecd6e7 100644 --- a/_data/music.yml +++ b/_data/music.yml @@ -5,4 +5,5 @@ length: "3:48" genres: "lo-fi, bass" year: 2023 - type: single \ No newline at end of file + type: single + price: "free release" \ No newline at end of file diff --git a/_layouts/music.html b/_layouts/music.html index 3a3a13a..171f5b1 100644 --- a/_layouts/music.html +++ b/_layouts/music.html @@ -16,7 +16,7 @@

{{ page.title | escape }}

{{ release.title }} ({{ release.year }})

-

{{ release.type }} by {{ release.artist }} | {{ release.genres }} | {{ release.length }}

+

{{ release.type }} by {{ release.artist }} | {{ release.genres }} | {{ release.length }} | {{ release.price }}

{% unless forloop.last %}
{% endunless %} {%- endfor -%} diff --git a/_layouts/post.html b/_layouts/post.html index 9e154f1..8767c5c 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -14,7 +14,7 @@

{{ page.title | escape }} • {%- for category in page.categories -%} - {{ category }} + {{ category }}{%- unless forloop.last -%}, {%- endunless -%} {%- endfor -%} {%- endif -%} diff --git a/_layouts/posts.html b/_layouts/posts.html index 78d9f96..49a9606 100644 --- a/_layouts/posts.html +++ b/_layouts/posts.html @@ -14,7 +14,7 @@

{{ page.list_title | default: "Posts" }} ( {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} - +

{{ post.title | escape }} diff --git a/_posts/2023-07-01-oops.md b/_posts/2023-07-01-oops.md index 5520ea6..565afa8 100644 --- a/_posts/2023-07-01-oops.md +++ b/_posts/2023-07-01-oops.md @@ -2,7 +2,7 @@ layout: post title: i love caver date: <2023-07-01> -categories: [Updates, Website] +categories: [Shitpost] author: 1oolm comments: true --- diff --git a/_posts/2023-07-20-release.md b/_posts/2023-07-20-release.md new file mode 100644 index 0000000..cb7c1ce --- /dev/null +++ b/_posts/2023-07-20-release.md @@ -0,0 +1,31 @@ +--- +layout: post +title: Site Public Release +date: <2023-07-20> +categories: [Updates, Website] +author: 1oolm +comments: true +important: true +--- + +The alpha.zero official website has been officially launched to my official Discord server of my official audience. +It's technically been public for weeks now, but not ready. But now it is!
+ +Here, me and the alpha.zero team can host information about the studio and its history, post updates, etc. Sure hope this won't die out as I forget to use it... welp, it's a personal website and my footprint on Internet history, that should be enough encouragement. + +One advantage I can think of over using social media like Twitter or Tumblr is the absolute lack of bloat. Seriously. Check this shit out.

+ +

+The ENTIRE WEBSITE (minus assets like images) is under *half a megabyte* large. You could probably look at alpha.zero blogs on your Dreamcast.
+Also, we could add whatever we'd like here without worrying about some "tweet limit" or whatever. +


+Yeah, right. I also got to release my first track today.
1_KIJE^3, formerly known as "X Cubed (Cubic Root Remix)". Last minute change because I realised X Cubed is kind of dead in the water right now. +

+Check it out if you wanna, it's at the price of free. Because sanctions. I can't even provide y'all the option to pay for it.
Use it in videos, listen at 10:54PM, whatever. It gets a bit nutty.
+
+"bass boosted" channels will still find their way +


+So, yeah! Hey guys. Enjoy your stay, and don't forget to give some feedback on this ordeal.

+ +
+(don't tell me this'll die out because people don't read blogs) \ No newline at end of file diff --git a/assets/image/2023-07-20_bass.png b/assets/image/2023-07-20_bass.png new file mode 100644 index 0000000..088820a Binary files /dev/null and b/assets/image/2023-07-20_bass.png differ diff --git a/assets/image/2023-07-20_flex.png b/assets/image/2023-07-20_flex.png new file mode 100644 index 0000000..61ef5ca Binary files /dev/null and b/assets/image/2023-07-20_flex.png differ