Silverchase
- 12 Posts
- 4 Comments
There was a very big plot arc from 2009 to 2019. The story is officially over and the comic has returned to gag-a-day format, but now with the expanded cast from the storyline.
I recommend diving into the archive to read through that arc. It’s one of my favourite webcomic storylines.
Silverchase@sh.itjust.worksOPto aww@lemmy.world•Fox pups pop out of a pipe to go playEnglish0·8 months agoThe mythical Renardeaux, Quebec, the nation’s best-kept secret
Silverchase@sh.itjust.worksto Fediverse@lemmy.world•Newgrounds is considering adding activitypub support but is concerned about hosting fees for serving images to millions of peopleEnglish18·8 months agoNewgrounds is dead serious about preserving its content, even with the death of Flash. Ruffle, the Flash emulator, was created by a former employee and Newgrounds is a major sponsor of the project. The most important movies have been converted to video as well.
When Newgrounds adopted high-resolution thumbnails about a decade and a half ago, there was a big volunteer campaign to recreate thumbnails for the entire back catalogue of the portal.
Thanks to Ruffle, people can and are still submitting Flash content to the portal, in addition to web-friendly content!
Free tech tip: https://cht.sh/ serves practical, usage-focused help on common command-line tasks. You can visit the website, or even better, curl for what you want.
gets you this:
cheat:touch # To change a file's modification time: touch -d <time> <file> touch -d 12am <file> touch -d "yesterday 6am" <file> touch -d "2 days ago 10:00" <file> touch -d "tomorrow 04:00" <file> # To put the timestamp of a file on another: touch -r <refrence-file> <target-file>
Append with
~
and a word to show only help containing that word:Result:
tldr:zstd # zstd # Compress or decompress files with Zstandard compression. # More information: <https://github.com/facebook/zstd>. # Decompress a file: zstd -d path/to/file.zst # Decompress to `stdout`: zstd -dc path/to/file.zst # Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default: zstd -level path/to/file # Unlock higher compression levels (up to 22) using more memory (both for compression and decompression): zstd --ultra -level path/to/file
For more usage tips,
curl cht.sh/:help
.