mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-23 21:02:09 +00:00
Add usvg to uses page
This commit is contained in:
parent
ce1b74f4e2
commit
95293d5edb
3 changed files with 8 additions and 1 deletions
|
@ -66,6 +66,7 @@ I don't currently use a prebuilt desktop environment. I assemble mine out of the
|
|||
* wormhole-william
|
||||
* rdrview
|
||||
* Efficient Compression Tool (better than Zopfli/ZopfliPNG)
|
||||
* usvg and resvg
|
||||
* zpaqfranz
|
||||
* scc
|
||||
* Pandoc
|
||||
|
|
|
@ -172,6 +172,11 @@ z.lua
|
|||
[Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool)
|
||||
: The last word in optimizing gzip or PNG size. Runs circles around Zopfli, ZopfliPNG, oxipng, etc. I use it in combination with `brotli` to compress all static text and PNGs on this site.
|
||||
|
||||
[usvg](https://github.com/RazrFalcon/resvg/tree/master/crates/usvg)
|
||||
: An SVG compiler, and one of the most under-appreciated tools I use. It compiles complex SVGs into simpler path-based SVGs. Edge-case SVGs may render incorrectly in some renderers (e.g. librsvg), but compiling them with usvg tends to iron these edge-cases out and make them more compatible. `usvg` is part of the [resvg](https://github.com/RazrFalcon/resvg) project, which is the most conformant SVG renderer I know of.
|
||||
|
||||
All the SVGs I serve on seirdy.one have gone through `usvg`.
|
||||
|
||||
[zpaqfranz](https://github.com/fcorbelli/zpaqfranz)
|
||||
: I use this for my long-term backups. `zpaq` is a journaling archiver, which allows me to compress backup deltas without having to use a journaling filesystem. `zpaqfranz` adds several features related to integrity-checking. The compression ratios are ridiculously good, even without the journaling; it beats every other realistic option, especially when combined with pre-processing offered by [lrzip-next](https://github.com/pete4abw/lrzip-next).
|
||||
|
||||
|
|
|
@ -110,8 +110,9 @@ Disallow: /
|
|||
|
||||
# FacebookBot crawls public web pages to improve language models for our speech
|
||||
# recognition technology.
|
||||
# UPDATE 2024-07: The Meta-ExternalAgent crawler crawls the web for use cases such as training AI models or improving products by indexing content directly.
|
||||
# <https://developers.facebook.com/docs/sharing/bot/?_fb_noscript=1>
|
||||
# UPDATE: The Meta-ExternalAgent crawler crawls the web for use cases such as training AI models or improving products by indexing content directly.
|
||||
# <https://developers.facebook.com/docs/sharing/webmasters/web-crawlers>
|
||||
User-Agent: FacebookBot
|
||||
User-Agent: meta-externalagent
|
||||
Disallow: /
|
||||
|
|
Loading…
Reference in a new issue