I hereby claim:
- I am briansipple on github.
- I am briansipple (https://keybase.io/briansipple) on keybase.
- I have a public key ASChCbTKxIsPPl3PHfHTIKV4VPjtyHQZuq3qV1tXd92YNQo
To claim this, I am signing this object:
| #include <cstdlib> | |
| int boundedRandom(int min, int max) { | |
| static const double randFraction = 1.0 / (static_cast<double>(RAND_MAX)); | |
| int offset = (max - min + 1) * (rand() * randFraction); | |
| return min + offset; | |
| } |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| .Python |
| :root { | |
| /* --------------- THEME COLORS --------------- */ | |
| --theme-color__primary: #9D6D45; | |
| --theme-color__primary--light: #AA764B; | |
| --theme-color__primary--dark: #1D140D; | |
| --theme-color__supporting-1: #56ee9d; | |
| --theme-color__supporting-1--light: #99FBC7; |
| const { floor, random } = Math; | |
| function boundedRandom(min, max) { | |
| const spread = max - min; | |
| return min + floor(random() * spread); | |
| } |
| /** | |
| * BREAKPOINTS THRESHOLDS | |
| */ | |
| :root { | |
| --breakpoint-threshold--mobile: 22em; /* Roughly, a min-width for handsets */ | |
| --breakpoint-threshold--small: 30em; /* Roughly, a max-width for handsets in landscape */ | |
| --breakpoint-threshold--medium: 49.125em; /* Roughly, a min-width for tablets */ | |
| --breakpoint-threshold--large: 64em; /* Roughly, a max-width for tablets in landscape */ | |
| --breakpoint-threshold--xLarge: 90em; /* Someone probably has a monitor 💻 */ | |
| } |
| export default function range(_start, _end) { | |
| // If only one argument (n) is passed, we generate a range from 0 to n. | |
| const start = typeof _end === 'undefined' ? 0 : _start; | |
| const end = typeof _end === 'undefined' ? _start : _end; | |
| // "direction" multiplier to produce a decreasing sequence if `start` is greater than `end`. | |
| const direction = start > end ? -1 : 1; | |
| const size = Math.abs(end - start) + 1; |
| @import "../variables/_spacing.css"; | |
| /* | |
| * SPACING UTILITIES | |
| * | |
| * Utilities for setting padding and margin. | |
| * | |
| * Legend: | |
| * | |
| * Rules: |
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |
I hereby claim:
To claim this, I am signing this object:
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| tagName: 'img', | |
| attributeBindings: ['imagePath:src', 'imageName:alt'], | |
| imagePath: '', | |
| imageName: '' | |
| }); |