34 comments

  • vintermann8 hours ago
    There were many really nice demos on Revision this year. Hacker News favorite (and mine, too!) LFT put out another microcontroller demo, Sum Ergo Demonstro:<p><a href="https:&#x2F;&#x2F;youtube.com&#x2F;watch?v=v8zKDotYh9A&amp;is=xAbW7VZVGLn0986B" rel="nofollow">https:&#x2F;&#x2F;youtube.com&#x2F;watch?v=v8zKDotYh9A&amp;is=xAbW7VZVGLn0986B</a><p>But I think my favorite so far from the ones I&#x27;ve seen has to be Second Nature, an OCS Amiga demo by Desire &amp; The Twitch Elite, and music by Hoffman.
    • HellMood7 hours ago
      i second that. &quot;Second Nature&quot; is also my party favorite! <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=KFVxntafsXM&amp;t=1764s" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=KFVxntafsXM&amp;t=1764s</a>
      • dark-star7 hours ago
        How they pulled that off on a stock A500 (okay, a stock A500 with 512kb RAM expansion, but still) is far beyond me. It&#x27;s pretty awesome and really deserved the 1st place
    • contingencies3 hours ago
      Classic first comment on the Youtube video: <i>Hey lft, I designed the RISC-V core you&#x27;re using, and I had a ton of fun watching and re-watching this video and trying to guess some of the tricks you used. Awesome work and I&#x27;m looking forward to a write-up!</i>
  • masternight8 hours ago
    Ah wow.<p>I really enjoyed the demoscene back in the 90s. Was never a part of it but I was always fascinated by the effects and music and ascii art that these guys created.<p>A BBS in my city always had the latest e-zines like Reality Check Network and Affinity, and others I forget. Reading up on the scene and about groups like Razor1911 was something I spent a lot of time on when I was younger.<p>Amazing demo and homage to the era.
    • TacticalCoder3 hours ago
      &gt; I really enjoyed the demoscene back in the 90s. Was never a part of it but I was always fascinated by the effects and music and ascii art that these guys created.<p>It was quite something... I take it there are quite a few hotshots on HN who used to be in the top groups. I was in a group and we were writing small intros for BBSes with a couple of friends and then we&#x27;d get infinite leech&#x2F;upload ratio on those BBSes. Best memory was driving through Belgium &#x2F; the Netherlands &#x2F; Denmark &#x2F; putting the car on the boat &#x2F; Sweden (Uppsala) with our computers (Amiga, Atari ST and PCs) to participate at a demo compo. Forgot its name but in the PC category we tied first place with Future Crew (we would have been first had I not screwed the sound playback routine which crashed half-way the demo), before they had their big breakthrough on the PC demoscene. I think that was in 1991.<p>Cops&#x2F;customs stopped us as the boat arrived in Sweden and thought we were dealing drugs: they tore the car apart and had no idea what we were talking about when we were explaining them in broken english that we were going to participate in a demo compo :-&#x2F;<p>I still have a few effects as executables but I don&#x27;t have the code anymore for these.<p>Thankfully I still have the entire source code of a game I made in assembly (for PC &#x2F; 386+) in 1991 (never published but it&#x27;s how my career started, long story) and lately I&#x27;ve been having a huge lot of fun trying to compile it again with Claude Code CLI &#x2F; Sonnet. I&#x27;m using UASM, which is compatible with MASM which I used to use. I managed to have all the utilities I wrote back then (picture converters &#x2F; sprites extractor &#x2F; etc.) compiling and running (in DOSBox) but haven&#x27;t managed to compile the main game yet. A few more hours with Claude Code CLI and I should get it running.<p>FWIW it&#x27;s hilarious to go back to code from 1991 and see comments in my code talking about this and that bug and asking the LLM: <i>&quot;Find where that bug could be&quot;</i> and the LLM manages to find it. It&#x27;s also insane the lack of version control: version control was copying entire directories. Copy&#x2F;pasta code everywhere. And then 10 000 lines of code per source code file.<p>What an era. Diving in that old code of mine brings me back: the decades they&#x27;ve been flying.<p>P.S: funnily enough by lack of luck a macro I had used back then happen to become a reserved keyword&#x2F;macro in assemblers later on. I had named back then a macro &quot;incbin&quot; and that was preventing my code from compiling in UASM: Claude Code &#x2F; Sonnet 4.6 found that issue instantly.<p>P.P.S: 0x777 in hex gives 1911. RZR, legendary: probably the most legendary of them all. Probably still have a few 5&quot;1&#x2F;4 floppies (both C64 and Amiga for I had an Amiga with a little software mod to read 5&quot;1&#x2F;4 floppies as if they were 3&quot;1&#x2F;2 for the 5&quot;1&#x2F;4 were way cheaper) with Razor 1911 &quot;cracktros&quot; (even if they weren&#x27;t called that yet) still working (back in 2020 quite a few of my floppies were still reading: maybe half to 2&#x2F;3rd of them). I know it won&#x27;t last, nothing will.
      • DrJokepu1 hour ago
        What are using as a linker? Also, do you use protected mode and if yes, what do you use for that, PMODE or CWSDPMI or something else?
        • TacticalCoder6 minutes ago
          It&#x27;s an old MS-DOS .EXE. Actually it compiles with the &quot;.286&quot; directive too. So I don&#x27;t use protected mode.<p>It requires a VGA card and those were more common in 386 IIRC and, anyway, performance-wise to run at 60 Hz it needs a 386. I never tried to run it on a 286 with a VGA card: don&#x27;t know if that was a thing.<p>It&#x27;s funny looking at that old assembly code and see ax, bx, cx, dx registers and not the eax, etc. ones.<p>The utilities I&#x27;ve compiled to .EXE so far are self-contained in one file and I just use UASM to create directly the .EXE:<p><pre><code> uasm -mz myutil.asm </code></pre> UASM v2.57 does the job in my case (note that I compile from Linux: UASM exists for several platforms&#x2F;OSes):<p><a href="https:&#x2F;&#x2F;www.terraspace.co.uk&#x2F;uasm.html" rel="nofollow">https:&#x2F;&#x2F;www.terraspace.co.uk&#x2F;uasm.html</a><p>I haven&#x27;t tried yet to compile the entire game yet: that one is more involved as it implies many files.
  • pierrec1 hour ago
    The parts where it exits fullscreen and starts messing around with separate windows is really well done. In a way it&#x27;s playing with the limits of what defines a demo (ie. the user&#x27;s desktop is part of the performance), which is something I love to see. Same with the notepad animation part. I wonder if they implemented their own notepad-alike from scratch or it they used something like this: <a href="https:&#x2F;&#x2F;kylehalladay.com&#x2F;blog&#x2F;2020&#x2F;05&#x2F;20&#x2F;Rendering-With-Notepad.html" rel="nofollow">https:&#x2F;&#x2F;kylehalladay.com&#x2F;blog&#x2F;2020&#x2F;05&#x2F;20&#x2F;Rendering-With-Note...</a>
  • pogue8 hours ago
    That was amazing, really great song &amp; visuals too. Takes me back to the days when you couldn&#x27;t close the keygen because the midi playing was such a banger.<p><a href="https:&#x2F;&#x2F;keygenmusic.tk&#x2F;" rel="nofollow">https:&#x2F;&#x2F;keygenmusic.tk&#x2F;</a>
    • vardump7 hours ago
      MIDI songs? I checked, I couldn&#x27;t find any from the link you posted. Most were different module formats, like XM, Protracker, S3M, Impulse Tracker. Those have nothing to do with midi other than they also produce music.
      • embedding-shape4 hours ago
        At one point in time, (I think maybe in connection with some mobile phone being able to play .midi files?) MIDI songs was (incorrectly) referring to a style&#x2F;type of music rather than the transport&#x2F;protocol we use for sending notes between instruments&#x2F;devices, or the file format.<p>I&#x27;m still since then always assuming the above when someone says &quot;MIDI music&quot;; they really mean &quot;really basic&#x2F;simple music&quot; or just straight up &quot;chiptune&quot; sometimes.<p>It has nothing to do with MIDI really, just a misnomer.
        • neonstatic4 hours ago
          A more appropriate term is &quot;chiptunes&quot;. I also heard people refer to it as keygen music.
          • vardump2 hours ago
            If it&#x27;s a tracker module of some kind with very short looping samples, then yeah, it&#x27;s a chiptune.
            • teddyh21 minutes ago
              IMHO, a “chiptune” is music for an FM synthesis chip, like on the NES, the SID chip in Commodore 64, or the AdLib sound card for PC. A “mod” or “tracker music” is music made for a range of platforms in a rather narrow time-band, that could play digital samples, but could not reasonably store entire songs recorded digitally, like the Amiga, Atari ST, or early PC’s like 386s or 486s.
      • pogue5 hours ago
        They&#x27;ve probably been converted over the years, just like you might convert an mp3 into flac or ogg or whatever.
    • tetrisgm8 hours ago
      Do you know if someone is hosting these in web radio format so I could stream in a car and such?
      • vrganj8 hours ago
        You might enjoy this: <a href="https:&#x2F;&#x2F;scenestream.net&#x2F;demovibes&#x2F;streams&#x2F;" rel="nofollow">https:&#x2F;&#x2F;scenestream.net&#x2F;demovibes&#x2F;streams&#x2F;</a>
      • dither87 hours ago
        qUAntUm RaDio<p><a href="https:&#x2F;&#x2F;radio.erb.pw&#x2F;public&#x2F;subspace" rel="nofollow">https:&#x2F;&#x2F;radio.erb.pw&#x2F;public&#x2F;subspace</a>
      • pogue8 hours ago
        I don&#x27;t. I&#x27;m sure you could find an archive of just midi files out there though.
  • JetSetIlly6 hours ago
    Superb demos this year at Revision. Triplet by Otomata Labs for the Atari 2600 is exceptional<p>Original release video (probably running on Stella)<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=aEJ0A8Wvdxs" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=aEJ0A8Wvdxs</a><p>And a video of it running on Gopher2600.<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=ixFH22MxqEg" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=ixFH22MxqEg</a>
  • tetrisgm10 hours ago
    Legendary demo group Razor 1911 submitted this beautiful demo as the closer for the Revision 2026 demo competition.<p>It is an homage to 40 years of hacking from the group.<p>For context, they were pioneers in both the demoscene and in the warez scene in the 80s-00s.
  • rast12345 hours ago
    Executable here: <a href="https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=105954" rel="nofollow">https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=105954</a>
  • uzyn6 hours ago
    This is so sick!<p>Revision faded out the credits part, which is still really cool on its own. The full version (10m 16s) can be viewed at <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=2AnbYNudAyM" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=2AnbYNudAyM</a>
    • embedding-shape4 hours ago
      Sadly, that full version isn&#x27;t in 4K, unlike the submission.<p>But this is Hacker News, we can do much better! Here is the actual binary: <a href="https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=105954" rel="nofollow">https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=105954</a><p>Sadly I couldn&#x27;t get it to work on Linux with Wine&#x2F;Proton, like a lot of demos they seem to really be using less common paths, so of course it crashes.
      • crtasm41 minutes ago
        the nfo notes &gt;This demo will not run on intel iris gpus and only in 1080p
  • amatecha9 hours ago
    Oh man, I watched &quot;non-live&quot; earlier today but hearing the live vers with the crowd audio is amazing. So damn good &lt;3
  • magicalhippo6 hours ago
    Really cool retro-mix, and some slick transitions.<p>Most of that was before my time though, so 1995 by Kewlers[1] hit harder for me, since that was when I really got into the demo scene and with it my drive to learn programming.<p>Glad the demo scene is alive and kicking, though I get why a lot is oriented around old hardware, modern hardware makes things too easy almost.<p>[1]: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=2mtctbodNXY" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=2mtctbodNXY</a> (20 years old this year, now I feel <i>really</i> old)
    • tetrisgm5 hours ago
      Great demo. My favorite of theirs is MF Real. Nothing crazy but so stylish <a href="https:&#x2F;&#x2F;youtu.be&#x2F;rvhGp9NGwos" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;rvhGp9NGwos</a>
  • NKosmatos7 hours ago
    I upvote every post related to the demoscene due to my age, so I couldn&#x27;t let this one, especially when it&#x27;s coming from RZR. Imagine if we could get a new release from FC as well in 2026 (40 years since their founding)!!!<p>More about Razor 1911 and Future Crew for the young readers of HN: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Razor_1911" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Razor_1911</a> <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Future_Crew" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Future_Crew</a><p>P.S. Too many groups to mention, but these two hold a special place in my mind ;-)<p>P.S.2. Extra mention to the most famous Greek demo group - ASD (Andromeda Software Development) - <a href="https:&#x2F;&#x2F;www.pouet.net&#x2F;groups.php?which=1317" rel="nofollow">https:&#x2F;&#x2F;www.pouet.net&#x2F;groups.php?which=1317</a>
    • whizzter6 hours ago
      Razor 1911 and FC are different in that FC was one of those team&#x2F;friend-groups that depended more on a constellation of people working together and producing until life took them away to other things.<p>Razor, Fairlight and some others became more of continious groups with evolving memberships (I was briefly a member of the demoteam back in 1999 and did one production in association with the people that moved over to Fairlight).
      • tetrisgm5 hours ago
        Damn, that’s awesome. Any memory to share?
        • whizzter2 hours ago
          Wasn&#x27;t a member for too long, I think there was some anti-piracy raids around that time that I vaguely remember where some of the fallout for whatever reason was the other guys going over to Fairlight but I were already involved enough with other groups (and our highschool equivalent or perhaps work by that time?).<p>Funniest thing perhaps is that Smash was a musician back then for 2 things where I did the code (one musicdisc and one joke intro), Smash then went on to become a damn accomplished coder of quite a few famous Fairlight demos, Sony tools and made the commercial Notch visual toolset&#x2F;editor&#x2F;player that has roots in the Fairlight demoeditor codebase (Notch startup logo often pops up in democompos for those that haven&#x27;t followed the scene).
    • tetrisgm7 hours ago
      ASD - Spin lives rent free in my head. I remember a colleague explaining how the morphing between meshes was really just random noise but the proximity and speed made it look like a real transformation. So cool.<p>Should out to TheBlackLotus, Fairlight, Orange, CNCD also for those of you who want to look up epic demos.
      • ErneX6 hours ago
        I also liked Triton. They made great demos and also FastTracker 2!
        • xyproto6 hours ago
          FT2 was written in Borland Pascal 7 and TASM, btw.
          • ErneX6 hours ago
            Shout out also to Cubic Team, I spent countless hours using Cubic Player, they also made some cool demos&#x2F;intros.
      • bananaboy7 hours ago
        CNCD and Orange are two of my most favorite groups! Inside, Secret Life of Mr Black, Megablast are some of my favorites of all time.
    • pjc507 hours ago
      Future Crew&#x27;s &quot;Second Reality&quot; was my introduction to demos, back in the 486 PC days.
    • tomaytotomato7 hours ago
      Yes - Razor 1911 was a core memory unlocked.<p>Along with Skidrow and Paradox crews
  • Incipient8 hours ago
    Demos used to have sizes - I can&#x27;t see one for this, is it just an &#x27;open&#x27; category? This thing is far too insane to be size limited, surely?
    • skrebbel8 hours ago
      In demoscene nomenclature, an &quot;intro&quot; is a demo with a sizelimit. This was entered in the demo compo, ergo &quot;no size limit&quot;.<p>With file size, most democoders go all the way, both ways. By that I mean that if they choose a sizelimit category, they squeeze out every last byte, and if they don&#x27;t, most don&#x27;t care about filesize <i>at all</i>. There&#x27;s demos these days that are many times bigger than an acceptable video recording would be because nobody bothered to eg compress the assets, it includes an entire game engine, etc. Like 800MB for a 3 minute audiovisual show. Kinda ridiculous but it&#x27;s just.. well, call it either laziness or focused pragmatism :-) Gotta get that prod out before the deadline!<p>The Razor1911 zip[1] is 30MB, which actually is very much on the small side for a current-day demo.<p>[1] <a href="https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=105954" rel="nofollow">https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=105954</a> has a download link
      • whizzter6 hours ago
        30 megs is like 2005 era size :D , obvious that it&#x27;s realtime stuff (and music is probably a significant fraction?).
        • embedding-shape52 minutes ago
          &gt; The Razor1911 zip[1] is 30MB, which actually is very much on the small side for a current-day demo.<p>&gt; and music is probably a significant fraction?<p>For the Razor1911.exe in the ZIP which ends up being 31MB on disk, which is almost entirely made out of a compressed 145MB executable, whose size is mostly 48 PNG files (11MB), 69MB of zeros (nice?), 329 compiled DirectX shader blobs (DXBC) totaling 6MB, One large MP3 of about 17MB and finally like 34MB of what seems to be other types of runtime data like asset tables, font and UI data,
          • crtasm37 minutes ago
            from the nfo &gt;Sorry for the not very optimized file size for this party version, we&#x27;ll make sure to push a PROPER once Revision 2026 is finished
    • richrichardsson6 hours ago
      This came up in the Discord party chat, basically there isn&#x27;t a size limit in the rules[1], but going beyond 2GB would be concerning that it&#x27;s not a real-time demo but instead just playback of animation.<p>[1] <a href="https:&#x2F;&#x2F;2026.revision-party.net&#x2F;competitions&#x2F;pc&#x2F;" rel="nofollow">https:&#x2F;&#x2F;2026.revision-party.net&#x2F;competitions&#x2F;pc&#x2F;</a>
    • tetrisgm8 hours ago
      Edit: better answer below<p>Idk what Revision actually enforces but that used to be the rule at Assembly.<p>For the 1k, 4k, retro systems etc it’s specified!
      • skrebbel8 hours ago
        Revision had no maximum filesize in the demo compo.
  • keyle7 hours ago
    I like that you linked the live show instead of the video of the demo alone, as the crowd noise adds to the experience.
    • tetrisgm7 hours ago
      This demo is a salute to everyone in the scene. And it’s emotional. Had to be this version!
  • tetrisgm7 hours ago
    The song can be gotten for free &#x2F; pay what you want at: <a href="https:&#x2F;&#x2F;dubmood.bandcamp.com&#x2F;track&#x2F;fighting-words-feat-goto80-master-boot-record" rel="nofollow">https:&#x2F;&#x2F;dubmood.bandcamp.com&#x2F;track&#x2F;fighting-words-feat-goto8...</a>
    • ninjin6 hours ago
      In addition, here is the Bright White Lightning discography:<p><a href="https:&#x2F;&#x2F;dataairlines.bandcamp.com&#x2F;album&#x2F;bad-teeth-data024" rel="nofollow">https:&#x2F;&#x2F;dataairlines.bandcamp.com&#x2F;album&#x2F;bad-teeth-data024</a><p><a href="https:&#x2F;&#x2F;dataairlines.bandcamp.com&#x2F;album&#x2F;dirty-nails-data038" rel="nofollow">https:&#x2F;&#x2F;dataairlines.bandcamp.com&#x2F;album&#x2F;dirty-nails-data038</a><p>Having not seen anything from them since 2014, so I am very happy for another track.
    • dark-star7 hours ago
      or you can unpack the executable (it&#x27;s packed with UPX) and extract the MP3 from that ;-) You can also get high-res PNGs of some of the scenes that way (e.g. the floppy disk pan, or the fake Windows desktops)
  • allenu9 hours ago
    Beautiful. Masterfully done. I love all the BBS-era aesthetics and callouts. I hadn&#x27;t seen FILE_ID.DIZ art in forever.
    • tetrisgm8 hours ago
      When I was learning to make games and just hack around the pc, I used to try to copy paste the characters from their nfos to make my own “releases” of mini mods. Didn’t know there were ascii drawing programs! Wonder if you did the same. I’m sure we all did but pre www era made it difficult!
      • allenu8 hours ago
        Copy-pasting is a clever way to do it!<p>I used to use TheDraw for doing ANSI art, but I also ended up making my own ANSI drawing tool back then. It&#x27;s stupid to think of now, but one reason I made it was because I had a monochrome monitor, so I couldn&#x27;t &quot;see&quot; color. I wanted a feature where I could put the cursor over a character and it would tell me the color there when I was drawing so I could still use color in the work.<p>I wasn&#x27;t prolific, but did do a handful of ANSI art pieces for local BBS SysOps who liked them well enough. Only later on I realized when I got an actual color monitor that I had a few color mistakes in them and they never told me. lol
        • tetrisgm8 hours ago
          Damn, more OG than me. I must have looked up to you and your peers back then! It’s crazy how it was so common to just go in a hex editor and mess with files to see what would happen. Would love to see a submission of what you &#x2F; group &#x2F; other notables did.
      • california-og3 hours ago
        I keep a list of all current ASCII art (and related + other creative tools) editors out there, if you&#x27;re interested:<p><a href="https:&#x2F;&#x2F;hlnet.notion.site&#x2F;text-art-tools" rel="nofollow">https:&#x2F;&#x2F;hlnet.notion.site&#x2F;text-art-tools</a><p>I recommend Moebius for traditional ASCII and ANSI art.
      • Morromist8 hours ago
        I dabble in ASCII art and use Playscii these days. Its still pretty hard to make amazing looking art even with these great tools, which just shows how legendary the demoscene is.
  • dom968 hours ago
    Absolutely amazing.<p>Nice to be reminded that Revision is still active, on my bucket list to visit at least once in my life.
  • Cthulhu_2 hours ago
    Awesome, I remember some of these from back when, mostly from the 90&#x27;s and early 2000&#x27;s I believe.
  • bowmessage9 hours ago
    incredible work!<p>such a nice way to remember their fallen teammates at the end there.
    • tetrisgm9 hours ago
      First time the shout outs weren’t just respect or cheese. RIP, til Valhalla.<p>PS: I never knew Westbam (of Love Parade fame?!) was involved.
      • janfoeh7 hours ago
        Different Westbam. The DJ you&#x27;re thinking of is still alive.
  • ttoinou6 hours ago
    Wow, and this is their “mid career retrospective”. Wait for the end of caree retrospective…
  • WhitneyLand4 hours ago
    Great music.<p>Bright White Lightning, but didn’t see a track name.<p>Overall, wow.
  • ttoinou6 hours ago
    Anyone understand why multiple demos have voices singing now.. how do they do it ?
    • amiga3862 hours ago
      It has been a thing for some time. Even back in the 16-bit days:<p>- Movement <i>Mina Omistan</i> (1994): <a href="https:&#x2F;&#x2F;youtu.be&#x2F;Ryq8fz_XAhI" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;Ryq8fz_XAhI</a><p>- TBL <i>Tint</i> (1996) second part: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;KcSV4qAG-xk?t=459" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;KcSV4qAG-xk?t=459</a>
    • whizzter6 hours ago
      Most full demo (no tech or sizelimit) soundtracks since the early 00s are just mp3 streams or alike, size-coded that have soft-synths or retro categories were singing is an issue due to datasize or hardware power often don&#x27;t (sometimes they do as a technical demonstration).<p>But I did notice some 64k&#x27;s and small synths-executables had singing this year, I&#x27;ve added small voice-samples (compressed) but that&#x27;s just seconds whilst these entries had longer sequences so I&#x27;m a tad curious as well.
    • rustyhancock6 hours ago
      I wish there was more info about how they&#x27;re made but I suppose part of the demo scene has always been secretive and reverse engineer it if you want to know.<p>The first one said made with Godot and blender so is it using premade assets? (Which I thought was not allowed)<p>Edit: #22 Heart of Glass says 144kB of WebGL + audio. I assume this means the audio is separate.
      • ErneX4 hours ago
        This 64kb intro has speech synthesis to generate the voice of the song.<p><a href="https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=9424" rel="nofollow">https:&#x2F;&#x2F;www.pouet.net&#x2F;prod.php?which=9424</a><p>More info: <a href="https:&#x2F;&#x2F;www.flipcode.com&#x2F;archives&#x2F;08-04-2003.shtml" rel="nofollow">https:&#x2F;&#x2F;www.flipcode.com&#x2F;archives&#x2F;08-04-2003.shtml</a>
    • tetrisgm6 hours ago
      Literally just singing! It’s an mp3 :)
  • appstorelottery7 hours ago
    OMG. Thanks <i>so</i> much for posting this - completely awesome! Such a nostalgic roller coaster ride, from Qmodem to Xcopy and everything in between... brought back so many memories... - thanks again!
  • igleria7 hours ago
    as a broke kid from the third world, the amount of coping Razor1911 enabled for me with gaming got me through high school during the 2000s (edit due to not finishing a sentence originally) cannot be understated.
  • tomaytotomato8 hours ago
    Wow, a real throwback to my earlier years exploring the Warez scene as cash poor teenager, which meant you had to get creative to find what you wanted.<p>Looking back in my 30s, I think part of my brain has atrophied because I can now purchase and download games and content with a few clicks on Steam and £40, which will be ready to play after dinner.<p>Before you had to think and search forums (both public and private) for DDL links, CD keys, cracks, passwords to unzip files.<p>Then once you had downloaded these multiple RAR&#x2F;Zip files you then had to check and verify them for corruption or viruses. After that it was reading the sacred README.nfo file included in the crack zip. Which if you didn&#x27;t specify to open in Notepad or Notepad++, it would open the Windows System information window.<p>The last stage before firing up a game was the patching&#x2F;cracking phase; that could involved things like editing hosts files, unplugging or disconnecting from the internet, or modifying your firewall to prevent network requests for anti-piracy software. Then you ran your crack or copied a patched .exe file over into the game directory. Aye presto, you&#x27;re ready to fire up (hopefully it didn&#x27;t have a virus or rootkit)<p>...but wait there is no loading videos or splash screen (panic). Well that&#x27;s because the pirates were saving storage space and removed unnecessary game videos and music assets.<p>&lt;Play game&gt; Bioshock<p>Ah, that was a nice nostalgia trip.<p>Also for any other nostalgia trippers, do you remember the first thing you always installed was a cracked version of WinRar (before 7zip became cool), running on a fresh install of Windows_7_SP3_BLACK_EDITION_XXX.iso
    • tetrisgm8 hours ago
      Such a throwback. If you were doing floppies there was the whole sing and dance you’d do with pkzip or arj to split your files across many disks!
  • krige9 hours ago
    Excellent demo and good music to go with it. My favorite part was probably the X-Copy sector map transitioning into a 3D cube with a running sprite.
    • richrichardsson6 hours ago
      Same! Beautiful nod to this amazing demo : <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=YMFBAOjuMWw" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=YMFBAOjuMWw</a>
    • tetrisgm9 hours ago
      The tunnel going from ascii to RT gave me chills and made me teary. It was 40 years of progress in seconds.
  • ptype7 hours ago
    not sure I&#x27;ve experienced goosebumps like this before
  • esafak2 hours ago
    I think a modern equivalent might be WebGPU. Anybody doing cool stuff that? I&#x27;d like to see the code.
  • conceptme2 hours ago
    absolute banger :D
  • jansan7 hours ago
    That Dynamic Duo disk at the beginning reminded me of my friend who got his house raided in 1987 for exchanging (not selling) cracked computer games for the C64 at the age of 18 in super rural Germany. He still managed to get into the army as an officer.
    • tetrisgm6 hours ago
      Somebody needed to hack the Soviets! CCC were beasts
  • 0xbs0d10 hours ago
    This is awesome!
    • tetrisgm9 hours ago
      A lot of old school demo enthusiasts cried. These guys cracked all the games we couldn’t afford as kids&#x2F;teens and did the coolest demos and cracktros to show off how cool they were. I saw them as high tech Robin Hoods. Hope you were around for that!
  • andrepd7 hours ago
    My first time hearing the name RAZOR1911 was on the cracktro for GTA IV, which had this banger of a music <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=fy4-9PsZHqI" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=fy4-9PsZHqI</a>
    • tetrisgm6 hours ago
      The game was notoriously hard to crack too. Rockstar had a lot of former demosceners, so they put all sorts of protection that would mess with the game.<p>I recall my friend describing Nico being randomly drunk, or vehicles suddenly accelerating. Razor eventually nailed it iirc
  • moodiverse10 hours ago
    Nice!
  • dist-epoch6 hours ago
    Did they state if&#x2F;how much AI agents they used in creating this demo?
    • vrganj5 hours ago
      How many inkjet printers did Da Vinci use for the Mona Lisa?
    • tetrisgm6 hours ago
      None. That would defeat the entire purpose
    • unkeen6 hours ago
      Of course they used none.
  • MrBuddyCasino10 hours ago
    Direct link with the correct timecode: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=Lw4W9V57SKs&amp;t=5716s" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=Lw4W9V57SKs&amp;t=5716s</a>
    • tetrisgm10 hours ago
      Ty. I pinged the mods and they updated it