Unicode Checker https://earthlingsoft.net
counting in hex, decimal, and binary:

Andy Clymer’s explanation of Hexadecimal numbers: http://andyclymer.com/cooper/hexadecimal.html
| ''' | |
| Avoid offcurve start points | |
| ''' | |
| from fontTools.ufoLib.pointPen import PointToSegmentPen | |
| def find_offcurve_start(glyph): | |
| ''' | |
| compare coordinates of first bPoint to coordinates of first point |
| ''' | |
| Robofont: which shortkeys are assigned to what action? | |
| ''' | |
| import AppKit | |
| import itertools | |
| import mojo | |
| import re | |
| from pathlib import Path |
| ''' | |
| Contextual menu items for RoboFont’s font overview window | |
| ''' | |
| from AppKit import NSPredicate | |
| from mojo import smartSet | |
| from mojo.roboFont import CurrentFont | |
| from mojo.subscriber import ( | |
| getRegisteredSubscriberEvents, |
| a b c | |
| uni2318 |
| ''' | |
| I never understand affine transformations, which is why I made this little | |
| script here. | |
| basic docs: | |
| https://fonttools.readthedocs.io/en/latest/misc/transform.html | |
| rf docs (explains how to convert normal operations (rotate, scale) to | |
| affine transformations): | |
| https://doc.robofont.com/documentation/topics/transformations/ |
Unicode Checker https://earthlingsoft.net
counting in hex, decimal, and binary:

Andy Clymer’s explanation of Hexadecimal numbers: http://andyclymer.com/cooper/hexadecimal.html
| """ | |
| contextual menu entry to edit RamsaySt neighbors directly in the glyph window | |
| """ | |
| import objc | |
| import ezui | |
| from AppKit import NSObject | |
| from mojo.subscriber import Subscriber, registerGlyphEditorSubscriber | |
| from lib.tools.debugTools import ClassNameIncrementer |