I hereby claim:
- I am tylerdmace on github.
- I am tylerdmace (https://keybase.io/tylerdmace) on keybase.
- I have a public key whose fingerprint is 530C BF29 D5FA C87F F9F0 D675 A1FF C912 6916 46DA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| var assert = require('assert'); | |
| /******************************** | |
| * We want make a package of goal kilos of skittles. We have | |
| * inventory of small bags (1 kilos each) and big bags (5 kilos each). | |
| * Return the number of small bags to use, assuming we always | |
| * use big bags before small bags. Return -1 if it can't be done. | |
| * | |
| * See the asserts below for examples of input | |
| * and expected output. |
| var assert = require('assert'); | |
| /******************************** | |
| * Return true if the array contains, somewhere, three increasing | |
| * adjacent numbers like .... 4, 5, 6, ... or 23, 24, 25. | |
| * | |
| * See the asserts below for examples of input | |
| * and expected output. | |
| * | |
| * If you have node installed, all you need to do to test |
| var tree = { | |
| a: 1, | |
| b: 1, | |
| c: 1, | |
| d: { | |
| d1: 1, | |
| d2: 1, | |
| d3: 1 | |
| }, | |
| e: 1, |
| node.append('text') | |
| .attr('text-anchor', 'middle') | |
| .attr('dominant-baseline', 'central') | |
| .style('font-family','FontAwesome') | |
| .style('font-size','24px') | |
| .text(getIcon) | |
| .style('fill', function (d) { | |
| return color(d.group); | |
| }); | |
| 'use strict'; | |
| module.exports = function(ngModule) { | |
| ngModule.directive('myDirective', [function() { | |
| var elementId = 0; | |
| return { | |
| restrict: 'E', | |
| scope: { |
| package main | |
| import ( | |
| "errors" | |
| "fmt" | |
| ) | |
| func main() { | |
| err := test() |
| SUBSYSTEM=="usb", ATTR{idVendor}=="1209", ATTR{idProduct}=="53c1", TAG+="uaccess" |