Nathan Chu

Results 8 comments of Nathan Chu

Sorry my comment is a bit late, but you have to install this from source. Find your .vscode folder, which is usually in your home folder (/Users/`username`/.vscode). In that clone...

I've done this by writing the following as a postcss plugin (putting it in the plugins array in `postcss.config.css`): ```js { postcssPlugin: true, Declaration: { 'font-display': (node) => { if...

@dopecodez I've been working on this some, but suggestions are welcome! Do you have any good json to xml library suggestions, by chance? #665

I've been using xml2js, which seems to be more popular. Do you know if this is faster or has any other advantages over xml2js?

I've done this at https://github.com/nathanchu/github-readme-stats-action. You could use the demo code at https://github.com/nathanchu/github-readme-stats-action-demo/blob/main/.github/workflows/main.yml. I'm still actively working on it so it might be a little buggy and things may break,...

This shouldn't be too hard to do because svg supports `@font-face`, however I'm not sure how many browsers support it. Another issue would be that text wrapping might break. Finally...

This is proving to be a bit hard. If you go directly to the url (https://github-readme-stats-git-google-fonts.nthnchu.vercel.app/api?username=nthnchu&font=Lobster) it works, but not in live demos. Any ideas @anuraghazra? https://github-readme-stats-git-google-fonts.nthnchu.vercel.app/api?username=nthnchu&font=oswald Live demo: ![Nathan...

I found a solution to my earlier problem was to embed the font using base64, but this causes new problems: 1. It will take much longer to load as the...