Skip to content

Instantly share code, notes, and snippets.

@mousemckill
mousemckill / remove.sh
Created March 11, 2020 07:14
remove all node_modules
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
@mousemckill
mousemckill / schema.graphql
Created February 7, 2019 08:53
schema.graphql
#import "./Embed_node.graphql"
#import "./Element_node.graphql"
fragment ContentNode_content on ContentNode {
__typename
... on Embed {
...Embed_node
}
... on Text {
text
function ATparser(filename) {
const save = (data) => {
const blob = new Blob([data], {
type: 'text/csv'
}),
e = document.createEvent('MouseEvents'),
a = document.createElement('a')
a.download = filename || 'console.csv';
(function(){
function resizeNav() {
$(".filter-navbar").css("padding-top", $(".navbar-fixed-top").height() - 30);
}
window.addEventListener("resize", function() { resizeNav(); }, false);
resizeNav();
}())
@mousemckill
mousemckill / README.md
Created September 23, 2015 07:32 — forked from magnetikonline/README.md
IE 7/8/9/10/11 Virtual machines from Microsoft - Linux w/VirtualBox installation notes.
<?php
/**
* @todo: add documentation!
*
* @property string|array $returnUrl
*/
abstract class BaseRESTAction extends CAction
{
const HTML = 'html';