Skip to content

Instantly share code, notes, and snippets.

View radiovisual's full-sized avatar
😬
Hello

Michael Wuergler radiovisual

😬
Hello
  • Doodle
  • Switzerland
View GitHub Profile

Keybase proof

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:

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));
// 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;
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
@radiovisual
radiovisual / README.md
Last active December 21, 2022 10:09
TypeScript Error Message Handling
@radiovisual
radiovisual / sample.ics
Created September 27, 2018 14:09
Access-A-Ride 2019-08-02 10:30 11:00 & 2019-08-02 20:00 - 20:30
BEGIN:VCALENDAR
VERSION:2.0
CALSCALE:GREGORIAN
BEGIN:VEVENT
SUMMARY:Access-A-Ride Pickup
DTSTART;TZID=America/New_York:20190802T103000
DTEND;TZID=America/New_York:20190802T110000
LOCATION:1000 Broadway Ave.\, Brooklyn
DESCRIPTION: Access-A-Ride to 900 Jay St.\, Brooklyn
STATUS:CONFIRMED

Keybase proof

I hereby claim:

  • I am radiovisual on github.
  • I am mwdoodle (https://keybase.io/mwdoodle) on keybase.
  • I have a public key ASBeEHz2KuJLiVPVVtoscSJETI9cQvNTUjfkwxpWR_U9Wwo

To claim this, I am signing this object:

To Send Encrypted Emails

In order to send an encrypted message, you need a public encryption key paired with a private key. A good option for this is PGP. To get setup quickly and easily, you can use the GPG Suite to generate your PGP key, as well as giving you great OS-level encryption/decryption support on the GIU, and the terminal.

To generate a PGP Key

  1. Download and Install GPG Suite: (not the Beta) https://gpgtools.org/
  2. Open GPG Keychain
  3. Click "New" to create a new PGP key
  4. Use your doodle email address and full name
@radiovisual
radiovisual / .eslintrc
Last active October 30, 2021 11:55
React Native AirBnB ESLint Config
{
"parser": "babel-eslint",
"plugins": [
"react",
"react-native"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true