Nice project! Sadly the emojis present in my GitHub bio aren’t being rendered. I can’t see them in the image. :)
Yes, there was a bug with the image not rendering with certain emojis, so I had to remove them as a quick fix. But I’ll investigate to find a way to show them :)
Show HN: A GitHub business card generator
31–40 of 59 posts
Re: Show HN: A GitHub business card generator
#32What's a business card?
Re: Show HN: A GitHub business card generator
#33Re: Show HN: A GitHub business card generator
#34It would be neat to see you do a Twitter version!
Re: Show HN: A GitHub business card generator
#35This is excellent! Simple, works, fast. It would be neat to see you do a Twitter version!
Re: Show HN: A GitHub business card generator
#36Re: Show HN: A GitHub business card generator
#37(Does he have a GitHub?)
Re: Show HN: A GitHub business card generator
#38Seems broken on Firefox for Android (mobile). It displays half the card [0]. [0] https://imgur.com/a/CQ7QXkB
I'm using firefox nightly on android and it displays normally. Maybe your internet connection?
Re: Show HN: A GitHub business card generator
#39I have 40 followers, but it shows 39 on the card.
Re: Show HN: A GitHub business card generator
#40Huh, `@vercel/og` is interesting! It looks like the same approach as `html2canvas` (implement custom rendering for each HTML element + CSS property), with all the tradeoffs that entails, but they actually rightly limited some of the features they're willing to support (like external stylesheets). And it looks like it'll be more supported than `html2canvas` currently is. I quite like `dom-to-image-more` (sorta active…
html2canvas and similar libraries only work in the browser, and this is why @vercel/og is that interesting! Not only it runs on the server (in an Edge serverless function), but it doesn’t have to start a headless browser to make screenshot and generate the image ;)