# HG changeset patch # User Paper # Date 1747677501 14400 # Node ID 250f40874439ff1fecd66daae41afa0a270a83f3 # Parent 7c8191bab90c64d55c4e4a801e54a9b174753f3b *: update lots of things now we minify the html,css,etc before deploying, so it hopefully will load faster :) diff -r 7c8191bab90c -r 250f40874439 .build.yml --- a/.build.yml Sun Apr 06 19:44:28 2025 -0400 +++ b/.build.yml Mon May 19 13:58:21 2025 -0400 @@ -9,6 +9,7 @@ - ruby-bundler tasks: - package: | + export JEKYLL_ENV="production" cd web bundle config set --local path ".bundler" bundle install diff -r 7c8191bab90c -r 250f40874439 Gemfile --- a/Gemfile Sun Apr 06 19:44:28 2025 -0400 +++ b/Gemfile Mon May 19 13:58:21 2025 -0400 @@ -4,3 +4,5 @@ # gem "rails" gem "jekyll", "~> 4.3" gem "jekyll-feed", "~> 0.17.0" + +gem "jekyll-minifier", "~> 0.1.10" diff -r 7c8191bab90c -r 250f40874439 Gemfile.lock --- a/Gemfile.lock Sun Apr 06 19:44:28 2025 -0400 +++ b/Gemfile.lock Mon May 19 13:58:21 2025 -0400 @@ -5,10 +5,12 @@ public_suffix (>= 2.0.2, < 6.0) colorator (1.1.0) concurrent-ruby (1.2.3) + cssminify2 (2.0.1) em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) eventmachine (1.2.7) + execjs (2.10.0) ffi (1.16.3) forwardable-extended (2.6.0) google-protobuf (3.25.3) @@ -17,6 +19,7 @@ google-protobuf (3.25.3-x86-linux) google-protobuf (3.25.3-x86_64-darwin) google-protobuf (3.25.3-x86_64-linux) + htmlcompressor (0.4.0) http_parser.rb (0.8.0) i18n (1.14.5) concurrent-ruby (~> 1.0) @@ -38,10 +41,19 @@ webrick (~> 1.7) jekyll-feed (0.17.0) jekyll (>= 3.7, < 5.0) + jekyll-minifier (0.1.10) + cssminify2 (~> 2.0) + htmlcompressor (~> 0.4) + jekyll (>= 3.5) + json-minify (~> 0.0.3) + uglifier (~> 4.1) jekyll-sass-converter (3.0.0) sass-embedded (~> 1.54) jekyll-watch (2.2.1) listen (~> 3.0) + json (2.12.0) + json-minify (0.0.3) + json (> 0) kramdown (2.4.0) rexml kramdown-parser-gfm (1.1.0) @@ -72,6 +84,8 @@ strscan (3.1.0) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) + uglifier (4.2.1) + execjs (>= 0.3.0, < 3) unicode-display_width (2.5.0) webrick (1.8.1) @@ -96,6 +110,7 @@ DEPENDENCIES jekyll (~> 4.3) jekyll-feed (~> 0.17.0) + jekyll-minifier (~> 0.1.10) BUNDLED WITH 2.5.10 diff -r 7c8191bab90c -r 250f40874439 _config.yml --- a/_config.yml Sun Apr 06 19:44:28 2025 -0400 +++ b/_config.yml Mon May 19 13:58:21 2025 -0400 @@ -8,3 +8,4 @@ plugins: - jekyll-feed + - jekyll-minifier diff -r 7c8191bab90c -r 250f40874439 _data/plugs.yml --- a/_data/plugs.yml Sun Apr 06 19:44:28 2025 -0400 +++ b/_data/plugs.yml Mon May 19 13:58:21 2025 -0400 @@ -12,4 +12,13 @@ alt: 'Un4seen' - url: '/media/plugs/tarc.gif' href: 'https://discord.gg/VxVYXMJZ9G' - alt: 'TARC' \ No newline at end of file + alt: 'TARC' +- url: '/media/plugs/debian.gif' + href: 'https://www.debian.org/' + alt: 'Powered by Debian' + title: 'The GNU/Linux distribution for lesbians' +- url: '/media/plugs/sublime.gif' + href: 'https://www.sublimetext.com/' + alt: 'Made with Sublime Text' +- url: '/media/plugs/firefox.gif' + alt: 'Firefox' \ No newline at end of file diff -r 7c8191bab90c -r 250f40874439 code/index.html --- a/code/index.html Sun Apr 06 19:44:28 2025 -0400 +++ b/code/index.html Mon May 19 13:58:21 2025 -0400 @@ -47,6 +47,22 @@
+
+
+ web + turtles all the way down +
+
+ + The source code to this website. It's built using jekyll, and is fairly simple to set up. + See the '.build.yml' file for the exact commands used when deploying. + +

+ Mercurial source tree +
+ +
+
msvpvf @@ -77,6 +93,7 @@
  • Mercurial source tree
  • +

    @@ -89,7 +106,9 @@
    A Winamp plugin that uses the Discord GameSDK to provide rich - presence. + presence. It also uses the WinHTTP API provided in Windows XP + and newer to show album covers scraped from Deezer within the + status.

    Download (32-bit) diff -r 7c8191bab90c -r 250f40874439 css/style.css --- a/css/style.css Sun Apr 06 19:44:28 2025 -0400 +++ b/css/style.css Mon May 19 13:58:21 2025 -0400 @@ -199,10 +199,21 @@ flex-wrap: wrap; justify-content: center; - /* column-gap: 4px; */ row-gap: 0.5em; } +/* +don't need this + +.plugs-list { + column-gap: 2px; +} +*/ + +.blips-list { + column-gap: 10px; +} + .blips-list-item, .plugs-list-item { display: block; diff -r 7c8191bab90c -r 250f40874439 index.html --- a/index.html Sun Apr 06 19:44:28 2025 -0400 +++ b/index.html Mon May 19 13:58:21 2025 -0400 @@ -15,20 +15,13 @@
    -

    things you don't care about

    -
      -
    • location: USA
    • -
    • favorite genres: dreampop, experimental electronic, lots of indie...
    • -
    • steak or chicken?: chicken 100%
    • -
    -

    socials / contact

    diff -r 7c8191bab90c -r 250f40874439 media/plugs/debian.gif Binary file media/plugs/debian.gif has changed diff -r 7c8191bab90c -r 250f40874439 media/plugs/firefox.gif Binary file media/plugs/firefox.gif has changed diff -r 7c8191bab90c -r 250f40874439 media/plugs/sublime.gif Binary file media/plugs/sublime.gif has changed