See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<!-- Add generic family. --> | |
<match target="pattern"> | |
<test qual="any" name="family"><string>emoji</string></test> | |
<edit name="family" mode="assign" binding="same"><string>Noto Color Emoji</string></edit> | |
</match> |
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
#!/usr/bin/env python | |
from itertools import combinations, chain | |
import numpy as np | |
from pyhull.convex_hull import ConvexHull | |
from stl import Mode | |
from stl.mesh import Mesh | |
def subdivide(shape): | |
''' Take a triangulated sphere and subdivide each face. ''' |