I hereby claim:
- I am radiovisual on github.
- I am mwuerg (https://keybase.io/mwuerg) on keybase.
- I have a public key ASDWaAC8O2kc_AWXvmQZmWCMzHRKtX8O3mrLOvOBt8RE0wo
To claim this, I am signing this object:
| { | |
| "parser": "babel-eslint", | |
| "plugins": [ | |
| "react", | |
| "react-native" | |
| ], | |
| "parserOptions": { | |
| "ecmaFeatures": { | |
| "jsx": true, | |
| "modules": true |
| // utils/RobustPortal.tsx | |
| import { createPortal } from 'react-dom'; | |
| import React, { useContext, createContext, useState, useEffect, useCallback, useRef } from 'react'; | |
| // Enhanced portal context with timing guarantees | |
| interface ProcessWrapperPortalContextType { | |
| registerPortal: (portalId: string, element: HTMLElement | null) => void; | |
| isPortalReady: (portalId: string) => boolean; | |
| getPortalElement: (portalId: string) => HTMLElement | null; | |
| portalReadyStates: Map<string, boolean>; |
I hereby claim:
To claim this, I am signing this object:
| chrome.declarativeNetRequest | |
| Description | |
| The chrome.declarativeNetRequest API is used to block or modify network requests by specifying declarative rules. This lets extensions modify network requests without intercepting them and viewing their content, thus providing more privacy. | |
| Permissions | |
| declarativeNetRequest | |
| declarativeNetRequestWithHostAccess | |
| declarativeNetRequestFeedback | |
| host permissions | |
| One or more of these permissions triggers a warning. |
| #!/usr/bin/env ts-node | |
| import parseArguments from 'yargs-parser'; | |
| import { getSendGridTemplateIdsForSendGridSubUser, renderMJMLHandlebarsMarkupFromTemplateName } from '../../helpers/templates'; | |
| import { fetchTemplateById } from './sendgrid-client'; | |
| import { getActiveVersionHTMLContent, getChecksum } from './sendgrid-utils'; | |
| import path from 'path'; | |
| const argv = parseArguments(process.argv.slice(2)); |
| PImage imageMask; | |
| ArrayList<ArrayList<PVector>> polygons; | |
| final int MAX_RECURSION_DEPTH = 1000; | |
| void setup() { | |
| size(512, 512); | |
| imageMask = loadImage("imageMask.png"); | |
| // Create an empty array to store the polygons |
| // Substrate Watercolor | |
| // j.tarbell June, 2004 | |
| // Albuquerque, New Mexico | |
| // complexification.net | |
| // Processing 0085 Beta syntax update | |
| // j.tarbell April, 2005 | |
| int dimx = 900; | |
| int dimy = 900; |
This is a slightly modified version of Kent C. Dodd's (and friends) take on getting to meaningful Error
messages when the nature of the errorobject is unknown
| <?php | |
| /* JUST ADD THIS CODE TO YOUR THEMES functions.php */ | |
| /* Customize the last half, the output half to suit your projects needs */ | |
| add_filter('post_gallery', 'my_post_gallery', 10, 2); | |
| function my_post_gallery($output, $attr) { | |
| global $post; | |
| if (isset($attr['orderby'])) { | |
| $attr['orderby'] = sanitize_sql_orderby($attr['orderby']); |