I hereby claim:
- I am everettcaleb on github.
- I am everettcaleb (https://keybase.io/everettcaleb) on keybase.
- I have a public key ASBYI-VeECl-jHyvGsEXvqwo46-bMdD8o8MzGvYpRY90Wwo
To claim this, I am signing this object:
| const { camelCase } = require('lodash') | |
| class ServiceProvider { | |
| constructor() { | |
| this.services = {} | |
| this.cleanupList = [] | |
| this.injector = new Proxy(this.services, { get: (...x) => this.getServiceByProxy(...x) }) | |
| } | |
| cleanup() { |
| req = { sends: [] } | |
| send(...args) { | |
| req.sends.push(...args) | |
| } | |
| sa = [sa, ...req.sends].reduce((sa, args) => sa.send(...args)) |
| Unhandled Rejection | |
| Reason: | |
| Error | |
| at funcC (/Users/everettcaleb/Desktop/test.js:11:9) | |
| at funcB (/Users/everettcaleb/Desktop/test.js:7:9) | |
| at funcA (/Users/everettcaleb/Desktop/test.js:3:9) | |
| at main (/Users/everettcaleb/Desktop/test.js:23:3) | |
| at Object.<anonymous> (/Users/everettcaleb/Desktop/test.js:24:3) | |
| at Module._compile (internal/modules/cjs/loader.js:688:30) | |
| at Object.Module._extensions..js (internal/modules/cjs/loader.js:699:10) |
| package main | |
| import ( | |
| "crypto/hmac" | |
| "crypto/sha256" | |
| "encoding/hex" | |
| "fmt" | |
| "net/http" | |
| ) |
| // basically, you can guess ANY card by splitting the deck into prime factor piles and placing the pile with their | |
| // chosen card on top every time. After you run out of prime factors for the number of cards in the deck, their card | |
| // will be on top of the chosen pile | |
| const PRIMES = [ 2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97 ]; | |
| const _ = require('lodash'); | |
| const readline = require('readline'); | |
| const deckSize = 54; | |
| const rl = readline.createInterface({ |
I hereby claim:
To claim this, I am signing this object:
| @mixin transition($args...) { | |
| -webkit-transition: $args; | |
| -moz-transition: $args; | |
| -o-transition: $args; | |
| transition: $args; | |
| } | |
| .google-bezier { | |
| @include transition(all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1)); | |
| } |
| .cf:after { | |
| content:""; | |
| display:block; | |
| clear:both; | |
| } |
| ;WITH [CTE] AS ( | |
| SELECT | |
| [Field], | |
| COUNT(1) AS [Count] | |
| FROM [dbo].[Table] | |
| GROUP BY [Field] | |
| ) | |
| SELECT [T].[Field] | |
| FROM [Table] [T] | |
| INNER JOIN [CTE] ON [T].[Field] = [CTE].[Field] |