mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12: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
|
* wormhole-william
|
||||||
* rdrview
|
* rdrview
|
||||||
* Efficient Compression Tool (better than Zopfli/ZopfliPNG)
|
* Efficient Compression Tool (better than Zopfli/ZopfliPNG)
|
||||||
|
* usvg and resvg
|
||||||
* zpaqfranz
|
* zpaqfranz
|
||||||
* scc
|
* scc
|
||||||
* Pandoc
|
* Pandoc
|
||||||
|
|
|
@ -172,6 +172,11 @@ z.lua
|
||||||
[Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool)
|
[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.
|
: 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)
|
[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).
|
: 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
|
# FacebookBot crawls public web pages to improve language models for our speech
|
||||||
# recognition technology.
|
# 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>
|
# <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: FacebookBot
|
||||||
User-Agent: meta-externalagent
|
User-Agent: meta-externalagent
|
||||||
Disallow: /
|
Disallow: /
|
||||||
|
|
Loading…
Reference in a new issue