Hacker Newsnew | past | comments | ask | show | jobs | submit | char101's commentslogin

Doesn't appear in gVim on Windows, need to set the panose attribute first:

  from fontTools import ttLib
  from path import Path

  output_dir = Path('mono')
  for file in Path('.').files('*.otf'):
      print(file)
      font = ttLib.TTFont(file)
      font['post'].isFixedPitch = 1
      font['OS/2'].panose.bProportion = 9
      font.save(output_dir / file.name)
      font.close()


Because life is not a technical problem but a socio-economic problem where we have little control and everything is uncertain.


Another tip: use https://github.com/sfu-db/connector-x to load database query result to pandas without memory copy resulting in faster operation.



Nice one. I'm using it right now. You use the regular or light version?


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: