frew [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=10195 Cart Downloader Tool <p>I keep seeing tweets with URLs to cartridges that I should check out. I'm super lazy so I wrote a tool to download the cart automatically.</p> <p>Should run on any Linux and <strong>probably</strong> OSX:</p> <div> <div class=scrollable_with_touch style="width:100%; max-width:800px; overflow:auto; margin-bottom:12px"> <table style="width:100%" cellspacing=0 cellpadding=0> <tr><td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> <td background=/gfx/code_bg0.png> <div style="font-family : courier; color: #000000; display:absolute; padding-left:10px; padding-top:4px; padding-bottom:4px; "> <pre> #!/usr/bin/env perl use strict; use warnings; use feature 'say'; use HTTP::Tiny; use File::Path 'mkpath'; my $ua = HTTP::Tiny-&gt;new; my $re = qr{ &lt;a \s+ href=/(bbs/cposts/[^&gt;]+.png)&gt;\n\s+ &lt;b&gt;&lt;font \s+ color=\#ff0080 \s+ size=3&gt;(.+) \s+ (.+)&lt;/font&gt;&lt;/b&gt;&lt;/a&gt; }xi; my $res = $ua-&gt;get(shift); if ($res-&gt;{content} =~ $re) { my ($url, $name, $ver) = ($1, $2, $3); my $dir = &quot;$ENV{HOME}/.lexaloffle/pico-8/carts/dl/&quot;; mkpath($dir); my $path = $dir . lc $name . '.png'; say &quot;Downloading $name v$ver Cart to $path&quot;; $ua-&gt;mirror(&quot;https://lexaloffle.com/$url&quot;, $path); } else { die &quot;Could not find game data; are you sure it was a valid URL?\n&quot; } </pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p><a href="https://gist.github.com/frioux/a3a8e32da5f01be43715">May receive updates here</a></p> https://www.lexaloffle.com/bbs/?tid=2296 https://www.lexaloffle.com/bbs/?tid=2296 Sat, 22 Aug 2015 04:18:11 UTC Pong <p> <table><tr><td> <a href="/bbs/?pid=11871#p"> <img src="/bbs/thumbs/pico11977.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=11871#p"> Pong 3</a><br><br> by <a href="/bbs/?uid=10195"> frew</a> <br><br><br> <a href="/bbs/?pid=11871#p"> [Click to Play]</a> </td></tr></table> </p> <p> <table><tr><td> <a href="/bbs/?pid=11871#p"> <img src="/bbs/thumbs/pico11879.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=11871#p"> Pong 2</a><br><br> by <a href="/bbs/?uid=10195"> frew</a> <br><br><br> <a href="/bbs/?pid=11871#p"> [Click to Play]</a> </td></tr></table> </p> <p> <table><tr><td> <a href="/bbs/?pid=11871#p"> <img src="/bbs/thumbs/pico11870.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=11871#p"> Pong 1</a><br><br> by <a href="/bbs/?uid=10195"> frew</a> <br><br><br> <a href="/bbs/?pid=11871#p"> [Click to Play]</a> </td></tr></table> </p> <p>This is my first (nearly!) working game in PICO-8. It's a simple Pong clone. Currently lacks sound but I'll update it once I figure out how the SFX editor works.</p> https://www.lexaloffle.com/bbs/?tid=2165 https://www.lexaloffle.com/bbs/?tid=2165 Sun, 26 Jul 2015 23:19:19 UTC SFX/Music Editor HOWTO? <p>I can't for the life of me figure out how sound effects or music editing works! Does anyone have any information anywhere? I suspect that if I already knew how any other tracker worked I would be able to understand this, but I do not.</p> <p>I read what the manual said but it is too abstract. Can anyone give just a <em>little</em> more information?</p> <p>Thanks</p> https://www.lexaloffle.com/bbs/?tid=2164 https://www.lexaloffle.com/bbs/?tid=2164 Sun, 26 Jul 2015 23:15:17 UTC