As front-end developers we all know the pain of coming up with meaningful component names for CSS classes. I created this gist as a place to collect terms that are suitable as user interface component names.
Please contribute your own ideas!
- button
| const isBot = ua => /bot|spider|crawler|robot|crawling|slurp/i.test(ua) |
| const express = require('express') | |
| const app = express() | |
| const { createCanvas } = require('canvas') | |
| const SIZE = 1080 | |
| const DEFAULT_COLOR = '#e3e3e3' | |
| app.get('*', (req, res) => { | |
| const { h, w, c, text, fc } = req.query | |
| const width = Number(w) || SIZE |
| function isAndroidAndLowBrowser() { | |
| var ua = navigator.userAgent.toLowerCase() | |
| return [ | |
| 'qqbrowser', | |
| 'baidu', | |
| 'liebao', | |
| 'micromessenger', | |
| 'ucbrowser', | |
| '360' | |
| ].some(function(name) { |
| #!/usr/bin/python | |
| import sys | |
| import argparse, json, base64, struct | |
| import urllib2 | |
| from datetime import datetime | |
| LOGS = { | |
| 'pilot': 'https://ct.googleapis.com/pilot', | |
| 'rocketeer': 'https://ct.googleapis.com/rocketeer', |