I hereby claim:
- I am rjsheperd on github.
- I am rjsheperd (https://keybase.io/rjsheperd) on keybase.
- I have a public key whose fingerprint is 2CEB 56E8 B9D7 5F69 6762 F2C5 8A16 44EB 207E 2B02
To claim this, I am signing this object:
| // Set up global May Day object (md) to attach functions to | |
| var md = md || {}; | |
| (function($, md) { | |
| // dollar sign ($) == jQuery | |
| // Can add new functions to the jQuery prototype | |
| $.fn.newFunction = function() { | |
| return true; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #cVim-link-container, .cVim-link-hint, #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, .cVim-completion-item .cVim-right, #cVim-hud, #cVim-status-bar { | |
| font-family: Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial; | |
| font-size: 10pt !important; | |
| -webkit-font-smoothing: antialiased !important; | |
| } | |
| #cVim-link-container { | |
| position: absolute; | |
| pointer-events: none; | |
| width: 100%; left: 0; |
| { | |
| "status": "success", | |
| "items": [ | |
| { | |
| "address_input_value_x": 7645087.432, | |
| "address_input_value_y": 681655.451, | |
| "date_created": "08/03/19 9:48PM", | |
| "text_input_value": "White Stretch-Suburban Limo (Plate: ASPEN M) blocking the Better Naito Bike/Walk Lanes. Blocked the lanes for well over 10 minutes.", | |
| "date_updated": "08/03/19 9:48PM", | |
| "files": [ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Example: Overpass-API with Leaflet.js</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
| <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" /> | |
| <style> | |
| body { | |
| padding: 0; |
| // The Module object: Our interface to the outside world. We import | |
| // and export values on it. There are various ways Module can be used: | |
| // 1. Not defined. We create it here | |
| // 2. A function parameter, function(Module) { ..generated code.. } | |
| // 3. pre-run appended it, var Module = {}; ..generated code.. | |
| // 4. External script tag defines var Module. | |
| // We need to check if Module already exists (e.g. case 3 above). | |
| // Substitution will be replaced with actual code on later stage of the build, | |
| // this way Closure Compiler will not mangle it (e.g. case 4. above). | |
| // Note that if you want to run closure, and also to use Module |
Refrain from using ID selectors when creating styles.
Use the 'BEM' naming convention when writing CSS selectors:
// Block is the top level 'component'
.button { }
// Elements are within a block and use '__' to nest within the top-level block| #!/usr/bin/env bb | |
| (def gs-creds {:url "https://<url-to-geoserver>/geoserver/rest" | |
| :user "admin" | |
| :pass "<password>"}) | |
| (def style "special-style") | |
| (def auth {:basic-auth [(:user gs-creds) (:pass gs-creds)]}) |