Show HN: Font Awesome to PNG
21–30 of 52 posts
Re: Show HN: Font Awesome to PNG
#22Hoped to find the code on GitHub, but couldn't. Any reason not to open source it? Seems like it would be an interesting codebase to take a quick look at.
Re: Show HN: Font Awesome to PNG
#23I'm not much into frontend development, but AFAIU Font Awesome is a bunch of assets packed as a font [0]. Why is this is a good idea? Is it faster, smaller, more convenient, something else? 0: http://stackoverflow.com/a/15503304
It's incredibly convenient not to have to generate multiple sizes of icon/pictograms for a project. Beyond even just needing multiple sizes for different uses (a list vs a header) - with the advent of high dpi mobile screens you'll also need to re-generate all of the images in @2x versions if you want the images to not look fuzzy.
Beyond that, there is now a whole ecosystem of addons that make use of the library
One of several different icon pickers: http://victor-valencia.github.io/bootstrap-iconpicker/
Leaflet Map Markers: https://github.com/lvoogdt/Leaflet.awesome-markers
1 - BootstrapCDN will even host it for you: http://www.bootstrapcdn.com/#fontawesome_tab
Re: Show HN: Font Awesome to PNG
#24fa2png is an unfortunate name for a project, really.
It's googlable.
It's unique.
It describes exactly what it does.
And if follows a huge tradition of x2y tools (pdf2text, etc etc).Re: Show HN: Font Awesome to PNG
#25Re: Show HN: Font Awesome to PNG
#26Re: Show HN: Font Awesome to PNG
#27Really nice idea! There are often situations where a tool like this can come in handy. However, maybe it is just me, but I find this writing style irritating. I find it a little bit creepy when a product starts adressing me from a first person view.
Re: Show HN: Font Awesome to PNG
#28Re: Show HN: Font Awesome to PNG
#29Somewhat relatedly: http://fontello.com . Helps you generate your own icon fonts using a smaller selection of icons instead of using the entire Font Awesome library, which can be up to 253kB depending on your browser. There's a great gem for using it with rails [1], a cli [2] and grunt task [2]. [1] https://github.com/railslove/fontello_rails_converter [2] https://github.com/paulyoung/fontello-cli [3] https://github.…
Re: Show HN: Font Awesome to PNG
#30Somewhat relatedly: http://fontello.com . Helps you generate your own icon fonts using a smaller selection of icons instead of using the entire Font Awesome library, which can be up to 253kB depending on your browser. There's a great gem for using it with rails [1], a cli [2] and grunt task [2]. [1] https://github.com/railslove/fontello_rails_converter [2] https://github.com/paulyoung/fontello-cli [3] https://github.…
We've started using fontello recently. We use some custom svg assets in addition to the icon font sets. I wrote a ~100 line python script that manages interactions with fontello. It'll open a browser with our config file, let you make changes, then download and store the updated fontello assets mostly from the command line. I highly recommend doing something like this if you get on board the fontello train.