See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
Note: < i=OS 5.1 use
prefs:. > 5.1 useapp-settings:
| [ | |
| { | |
| "Device Name":"Acer Iconia Tab A1-810", | |
| "Platform":"Android", | |
| "OS Version":"4.2.2", | |
| "Portrait Width":"768", | |
| "Landscape Width":"1024", | |
| "Release Date":"2013-05" | |
| }, | |
| { |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML5 Starter</title> | |
| <meta name="color-scheme" content="dark light"> | |
| <link rel="icon" | |
| href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐣</text></svg>"> | |
| <!-- <link rel="stylesheet" href="styles.css"> --> | |
| <!-- <style></style> --> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- Meta conf --> | |
| <meta charset="UTF-8"> | |
| <!-- Meta info --> | |
| <title>HTML5 Microdata Resume (CV) Template</title> | |
| <meta name="description" content="An example of how to layout a semantic html5 page for a curriculum vitae/resume"> | |
| <meta name="keywords" content="template, html, semantic, microdata, resume, cv, curriculum, vitae"> | |
| </head> |
| // From SO answer: https://stackoverflow.com/a/56874327/1492782 | |
| extension Color { | |
| init(hex: String) { | |
| let hex = hex.trimmingCharacters(in: CharacterSet.alphanumerics.inverted) | |
| var int: UInt64 = 0 | |
| Scanner(string: hex).scanHexInt64(&int) | |
| let a, r, g, b: UInt64 | |
| switch hex.count { | |
| case 3: // RGB (12-bit) | |
| (a, r, g, b) = (255, (int >> 8) * 17, (int >> 4 & 0xF) * 17, (int & 0xF) * 17) |
| <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐣</text></svg>"> |
| { fontWeight: '100' }, // Thin | |
| { fontWeight: '200' }, // Ultra Light | |
| { fontWeight: '300' }, // Light | |
| { fontWeight: '400' }, // Regular | |
| { fontWeight: '500' }, // Medium | |
| { fontWeight: '600' }, // Semibold | |
| { fontWeight: '700' }, // Bold | |
| { fontWeight: '800' }, // Heavy | |
| { fontWeight: '900' }, // Black |
| # node.js # | |
| ############ | |
| node_modules/ | |
| npm-debug.* | |
| yarn.lock | |
| # Packages # | |
| ############ | |
| # it's better to unpack these files and commit the raw source | |
| # git has its own built in compression methods |