This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > foo = (...s) => `foo${s.join()}` | |
| [Function: foo] | |
| > bar = (...s) => `${s.join()}bar` | |
| [Function: bar] | |
| > qux = s => Math.ceil(Number(s)) | |
| [Function: qux] | |
| > compose(foo, bar, qux)(1.27890) | |
| 'foo2bar' | |
| > fooBarQux = compose(foo, bar, qux) | |
| undefined |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/package.json b/package.json | |
| index 40439456..96cd7f13 100644 | |
| --- a/package.json | |
| +++ b/package.json | |
| @@ -18,7 +18,6 @@ | |
| ] | |
| }, | |
| "resolutions": { | |
| - "mux.js": "^5.5.1", | |
| "@material-ui/icons": "^4.5.1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Schema.org spec for Google/Bing to display a search bar to users to search our site from within Google --> | |
| <!-- See: https://developers.google.com/webmasters/structured-data/slsb-overview --> | |
| <script type="application/ld+json"> | |
| { | |
| "@context": "http://schema.org", | |
| "@type": "WebSite", | |
| "url": "http://www.showtimeanytime.com", | |
| "potentialAction": { | |
| "@type": "SearchAction", | |
| "target": "http://www.showtimeanytime.com/#search/{search_term_string}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| o = new MutationObserver(mutationRecords => { | |
| const shouldCheck = mutationRecords.some(mutationRecord => mutationRecord.type === 'childList' && mutationRecord.addedNodes.length) | |
| const addedNodes = mutationRecords.reduce((aN, mutationRecord) => aN.concat(...mutationRecord.addedNodes), []) | |
| const undefinedNodes = document.querySelectorAll(':not(:defined)') | |
| if (shouldCheck) { | |
| console.info(undefinedNodes, addedNodes); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Reflect.defineProperty(DOMimatrix, 'groupingElements', { | |
| value: { div:'div', figure:'figure', main:'main', ul:'ul', dd: [ 'dl' ], dt: [ 'dl' ], br:'br', hr:'hr', figcaption: [ 'figure' ], ol:'ol', li: ['menu','ul','ol'], pre:'pre', dl:'dl' } | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.__previousTypeOfBucketTable__ = window.__typeOfBucketTable__ ? window.__typeOfBucketTable__ : { }; Reflect.ownKeys(window).filter(aWindowOwnedKey => { | |
| return !({}).constructor[Symbol.hasInstance](window[aWindowOwnedKey]) | |
| }).reduce((typeOfBucketTable, aWindowOwnedKeyForNonObjects) => { | |
| const typeOfThisWIndowOwnedKey = typeof window[aWindowOwnedKeyForNonObjects] | |
| typeOfBucketTable[typeOfThisWIndowOwnedKey] || (typeOfBucketTable[typeOfThisWIndowOwnedKey] = { length: 0 }) | |
| typeOfThisWIndowOwnedKey === 'object' && typeOfBucketTable[typeOfThisWIndowOwnedKey].length === 0 && (typeOfBucketTable[typeOfThisWIndowOwnedKey].__everyObjectIsNull__ = true) | |
| typeOfBucketTable[typeOfThisWIndowOwnedKey][aWindowOwnedKeyForNonObjects] = window[aWindowOwnedKeyForNonObjects] | |
| typeOfBucketTable[typeOfThisWIndowOwnedKey].length = typeOfBucketTable[typeOfThisWIndowOwnedKey].length + 1 | |
| typeOfThisWIndowOwnedKey === 'object' && window[aWindowOwnedKeyForNonObjects] != null && (typeOfBucketTable[typeOfThisWIndowOwnedKey]. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -s -H "Content-Type: text/plain" --data "Message w/ cURL" -X POST http://localhost:7101/slack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo 'foo' | node -e "let data='';process.stdin.isTTY?console.info(process.argv):process.stdin.on('readable',()=>{data+=process.stdin.read()||''}).on('end',()=>console.info(data.trim()))" |