For extra fun, you can make font that are the same as original but then you add ligature for some words and you make ligature using the same font but spelling different word. For example "red" ligature will be "green".
I have never felt quite so cacklingly nefarious as a designer as I did just now carefully adjusting vertical scale and offset so that the x-height and baseline of Papyrus optically match Comic Sans when mixed together.
I don't yet know who I'll be pranking with the downloaded font, but I look forward to their reaction.
This is interesting -- not from the perspective of different fonts (although that's interesting too!), but from the perspective of it's a web page that can apparently render fonts on the fly...
That means that it's probably using some library in JavaScript or WASM to implement that.
If that's the case, then I'm thinking, you know, that functionality, that is, font rendering on demand could, in theory, be placed into a CloudFlare Worker (or other Serverless service, i.e. AWS Lambda, Azure Functions, Google Cloud Functions, OCI Funcions, IBM Cloud Code Engine, Alibaba Function Compute, etc., etc.)...
That could be useful for a variety of applications... including (but not limited to!) word processors, typesetting software, homemade browsers, online games, heck, really anything where custom fonts are needed...
There could be two distinct benefits with this, let's call it a "FaaS" (Fonts as a Service!) idea:
1) No need to bundle/ship/include a font rendering engine with software that needs one.
2) Extra layer of security -- Local font rendering software is typically Turing-Complete, and as such, the local font renderer could potentially run viruses and other unwanted programs. I.e., local font rendering is a security risk. By hermetically sealing that code into serverless function, offsite of the local machine and having that serverless function send only fully rendered font data one way, the attack surface of the font rendering engine is effectively removed from any local PC.
This being said, the disadvantage is that it couldn't be used if the Internet or server or cloud provider is down for any reason.
Graphical font data, once created and downloaded, could however be cached by clients for offline situations / offline usage / offline work.
if people want to play with font generation in a non joke -- and frankly way LESS impressive -- manner, i made likeface.net too. it's a little buggy. but it's cheap and it's generous with redraws
I've been recently thinking about custom fonts and ligatures to create a captcha mechanism that is easy to solve for humans but confuses LLMs.
Something like a dynamically generated font where some letters look different, and you have to count details or write down a word or [idea not yet fleshed out].
Won't stop someone dedicated, of course, but nothing will.
Nice! It even supports COLR and SVG fonts, both of which I have options for when making a variant of my Keldritch font (https://kellydornhaus.com/keldritch/)
mock-possum | 18 hours ago
hmartin | 6 hours ago
lelanthran | 6 hours ago
california-og | 6 hours ago
epiccoleman | 6 hours ago
xnx | 6 hours ago
dvh | 6 hours ago
someonebaggy | 6 hours ago
amenghra | 4 hours ago
smeehee | 4 hours ago
jrochkind1 | 5 hours ago
ZeWaka | 5 hours ago
demaga | 5 hours ago
cluckindan | an hour ago
htrp | 5 hours ago
Sharlin | 5 hours ago
busymom0 | 5 hours ago
mortenjorck | 5 hours ago
I don't yet know who I'll be pranking with the downloaded font, but I look forward to their reaction.
Obscurity4340 | 4 hours ago
mikestorrent | 3 hours ago
danielheath | 2 hours ago
malfist | 2 hours ago
NietzscheanNull | 5 hours ago
FYI for the creator, I'm hitting an error when attempting to change the mix-in font (Webkit/iOS):
electric_mayhem | 5 hours ago
What have you unleashed? Hey, look guys we got the next Oppenheimer over here.
phren0logy | 5 hours ago
philjohn | 5 hours ago
Sharlin | 5 hours ago
shmeeed | 3 hours ago
I saw what you did there
Asterism | an hour ago
gerdesj | 2 hours ago
khalic | 5 hours ago
dyingkneepad | 5 hours ago
Fliwatt | 5 hours ago
Sharlin | 5 hours ago
sebmellen | 4 hours ago
altairprime | 5 hours ago
kstrauser | 4 hours ago
6thbit | 4 hours ago
Could one make in theory a regular monospaced font to just render glyphs past 80 chars of a line as bad as possible?
thewakalix | 4 hours ago
This is truly the YTP of fonts.
aanet | 4 hours ago
logicallee | 4 hours ago
morbusfonticuli | 4 hours ago
krelas | 4 hours ago
FuriouslyAdrift | 4 hours ago
goodmythical | 3 hours ago
thecaio | 4 hours ago
zf00002 | 3 hours ago
lathoa | 3 hours ago
peter_d_sherman | 3 hours ago
That means that it's probably using some library in JavaScript or WASM to implement that.
If that's the case, then I'm thinking, you know, that functionality, that is, font rendering on demand could, in theory, be placed into a CloudFlare Worker (or other Serverless service, i.e. AWS Lambda, Azure Functions, Google Cloud Functions, OCI Funcions, IBM Cloud Code Engine, Alibaba Function Compute, etc., etc.)...
That could be useful for a variety of applications... including (but not limited to!) word processors, typesetting software, homemade browsers, online games, heck, really anything where custom fonts are needed...
There could be two distinct benefits with this, let's call it a "FaaS" (Fonts as a Service!) idea:
1) No need to bundle/ship/include a font rendering engine with software that needs one.
2) Extra layer of security -- Local font rendering software is typically Turing-Complete, and as such, the local font renderer could potentially run viruses and other unwanted programs. I.e., local font rendering is a security risk. By hermetically sealing that code into serverless function, offsite of the local machine and having that serverless function send only fully rendered font data one way, the attack surface of the font rendering engine is effectively removed from any local PC.
This being said, the disadvantage is that it couldn't be used if the Internet or server or cloud provider is down for any reason.
Graphical font data, once created and downloaded, could however be cached by clients for offline situations / offline usage / offline work.
So, there are some interesting ideas here...
0gs | 2 hours ago
qurren | 2 hours ago
https://imgur.com/a/FCmzWNa
and I don't know who to report it to. I guess it's owned by Microsoft so also not surprised.
abdusco | 2 hours ago
hypfer | 2 hours ago
Something like a dynamically generated font where some letters look different, and you have to count details or write down a word or [idea not yet fleshed out].
Won't stop someone dedicated, of course, but nothing will.
ctoth | 38 minutes ago
patriciobcs | 2 hours ago
m463 | an hour ago
:)
EDIT: I think larabie fonts? I do like pupcat though.
furyofantares | an hour ago
flockonus | an hour ago
I wonder what's the footprint and overall efficiency of making a new font vs. combining old ones on client side (typically JS)?