Skip to content

Instantly share code, notes, and snippets.

View MattDionis's full-sized avatar

Matt Dionis MattDionis

  • Circle Internet Financial
  • Worcester, MA
View GitHub Profile
@MattDionis
MattDionis / defaultImage.directive.js
Last active August 29, 2015 14:20
Angular directive to replace '404' image with default image
angular
.module('app')
.directive('defaultImage', defaultImage);
function defaultImage() {
var directive = {
link: link,
restrict: 'A'
};
return directive;
@MattDionis
MattDionis / hideImage.directive.js
Created May 3, 2015 19:15
Angular directive to hide grandparent of '404' image
angular
.module('app')
.directive('hideImage', hideImage);
function hideImage() {
var directive = {
link: link,
restrict: 'A'
};
return directive;
@MattDionis
MattDionis / README.md
Last active June 10, 2018 16:39
Voronoi Scatterplot

This scatterplot is the final visual of my blog on Using a D3 Voronoi grid to improve a chart's interactive experience in which the tooltip is attached to the circles while the event is triggered by an invisible Voronoi grid that lies over the scatterplot. It also has some other features such as a filtering function when clicking on a region in the legend

forked from nbremer's block: Final - Voronoi Scatterplot - Life expectancy vs GDP per capita

forked from MattDionis's block: Final - Voronoi Scatterplot - Life expectancy vs GDP per capita

forked from MattDionis's block: Final - Voronoi Scatterplot - Life expectancy vs GDP per capita

@MattDionis
MattDionis / gist:dafb6dab04ac128938e9
Last active July 6, 2017 13:42
Matt Dionis PGP Public Key
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: Mailvelope v1.7.2
Comment: https://www.mailvelope.com
xsFNBFftGTIBEADjcjJ5elPWE9HHRMI8n3jgw0YDJaqoAwe+us8VB5wBktgW
6GWWTyQi0hqzYwjJ989BdJTsaGGnNvR+/H6slZoDCcULwif4HJHKb2Syti+z
guqRPO45PdlF3x2ZekVTNAaEaBW3jOgqtpC8abqxNYWPksKeIMQXCwH13Wj5
uFgQbq6r0NkBTLoi5zRrQGEs4Bjh2rbCDd85uhuV8P7PfI1uYpOP6gmuC3Da
QhNX2lC/PVpJcMEtFTsNLDN8pT7QVkJ7I1BVroGcmsAlNw/rD4LWFdEjXkpI
j1cNT3dE9Vx3rEHB6f3Bv6oFAm3qvyU/D+hbwwMlJgTeXrpHYcmRmr8BLx8n
@MattDionis
MattDionis / README.md
Created March 3, 2016 13:24
d3.js Graph with many features
@MattDionis
MattDionis / .block
Created November 18, 2016 19:26
Stacked Area Chart
license: gpl-3.0
@MattDionis
MattDionis / .block
Created November 29, 2016 15:31
fresh block
license: mit
@MattDionis
MattDionis / .block
Last active August 25, 2017 17:30
fresh block
license: mit
import gql from "graphql-tag";
const UPDATE_APP_BAR_COLOR_SETTING_MUTATION = gql`
mutation updateAppBarColorSetting($setting: String!) {
updateAppBarColorSetting(setting: $setting) @client {
setting @client
}
}
`;
const [updateUserSetting] = useMutation(
UPDATE_APP_BAR_COLOR_SETTING_MUTATION,
{
variables: { setting },
update: cache => {
let { appBarColorSetting } = cache.readQuery({
query: APP_BAR_COLOR_SETTING_QUERY
});
appBarColorSetting.setting = setting;
cache.writeQuery({