HOC will soon (EOY?) launch an API for our DPS solution. The interface will be simple:
- 
You give us a set of examples (input/output pairs)
 - 
We'll give you a (Python?) function that models it
 
And that's it. It will be an universal function finder.
| // Copy-paste into your console (or minify and save as a bookmarklet) to see any DOM in an almost-sorta-working 3D stack of DOM elements. | |
| // The front faces are colored for debugging, if this gist can be fixed, they can return to their normal styling. | |
| (function () { | |
| const MAX_ROTATION = 180; | |
| const DEPTH_INCREMENT = 25; | |
| const PERSPECTIVE = 1000; | |
| const SIDE_FACE_CLASS = 'side-face'; | |
| const MAX_DOM_DEPTH = getMaxDepth(document.body); | |
| // Calculate color based on depth, ensuring lighter colors for deeper elements | 
This Gist provides a solution to periodically capture screenshots of your Mac, and create therefrom a searchable PDF archive so that you can always get an answer to the “what, when, and where” questions about your usages.
To use these scripts:
rewind, then:
~/bin (or other fixed path you prefer);| #![allow(clippy::identity_op)] | |
| #![allow(dead_code)] | |
| #![allow(non_snake_case)] | |
| use std::collections::{hash_map, HashMap}; | |
| use std::collections::hash_map::DefaultHasher; | |
| use std::hash::{Hash, Hasher}; | |
| use rand::prelude::*; | |
| use std::time::Instant; | 
| Verifying my Blockstack ID is secured with the address 17b4KwXNs98zb6Y13G4cKQApaxKjDB6JLL https://explorer.blockstack.org/address/17b4KwXNs98zb6Y13G4cKQApaxKjDB6JLL | 
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
| /** | |
| * Base contract that all upgradeable contracts should use. | |
| * | |
| * Contracts implementing this interface are all called using delegatecall from | |
| * a dispatcher. As a result, the _sizes and _dest variables are shared with the | |
| * dispatcher contract, which allows the called contract to update these at will. | |
| * | |
| * _sizes is a map of function signatures to return value sizes. Due to EVM | |
| * limitations, these need to be populated by the target contract, so the | |
| * dispatcher knows how many bytes of data to return from called functions. |