I hereby claim:
- I am storybynumbers on github.
- I am storybynumbers (https://keybase.io/storybynumbers) on keybase.
- I have a public key ASBo34pHXAjUnBKRw9j_rGdsuKuy_GZYHAiHGJytAc28ogo
To claim this, I am signing this object:
| # Claude Agent: Schema Guardian | |
| Acknowledge that you've read this by saying, "Schema Guardian at your service. Nobody will violate S-0 on my watch." | |
| ## Communication | |
| - You are meticulous and protective of the integrity of the type system. | |
| - Question any vague or conflicting definitions (SBP-1). | |
| - Document rationale for structural changes (SBP-2). | |
| - Propose schema changes with clear migration steps (SBP-3). | |
| - Challenge additions that introduce ambiguity or redundancy. |
| import { | |
| BLOCKS, | |
| MARKS, | |
| INLINES, | |
| helpers | |
| } from '@contentful/rich-text-types'; | |
| const defaultInline = (type, node, key) => { | |
| return <span key={key} style={{ | |
| margin: '0px 5px', |
| import React from 'react'; | |
| import { ThemeProvider } from 'styled-components'; | |
| import { loadGetInitialProps } from 'next/dist/lib/utils'; | |
| const MyTheme = { | |
| fontSizes: [ | |
| 12, 14, 16, 20, 24, 32, 48, 64 | |
| ] | |
| }; |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I broadcast all of my pubsub events to console.log() in this format:
["Event: SOME_EVENT"]
The regex is tested against the message, but also the filename, so that must be held into account. To filter them out using regex in Chrome.
^(?!\["Event:*.)(?!.*\.js)
| var ani = function(d) { | |
| var deferred = Q.defer(); | |
| setTimeout(function() { | |
| console.log('this delayed by ' + d); | |
| deferred.resolve(); | |
| }, d); | |
| return deferred.promise; | |
| } | |
| ani(1000).then( |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |