Skip to content

Instantly share code, notes, and snippets.

View joeldenning's full-sized avatar
🎯
Focusing

Joel Denning joeldenning

🎯
Focusing
View GitHub Profile
@joeldenning
joeldenning / layout.json
Last active November 20, 2020 18:23
json-layout
{
"routes": [
{
"type": "div",
"attrs": [
{
"name": "class",
"value": "container"
}
],
Process: mupen64plus-gui [4164]
Path: /Users/USER/*/mupen64plus-gui.app/Contents/MacOS/mupen64plus-gui
Identifier: com.yourcompany.mupen64plus-gui
Version: 0
Code Type: X86-64 (Native)
Parent Process: ??? [4160]
Responsible: Electron [347]
User ID: 0
Date/Time: 2020-10-23 20:58:10.629 -0600
Process: mupen64plus-gui [44467]
Path: /Users/USER/*/mupen64plus-gui.app/Contents/MacOS/mupen64plus-gui
Identifier: com.yourcompany.mupen64plus-gui
Version: 0
Code Type: X86-64 (Native)
Parent Process: ??? [44463]
Responsible: Electron [383]
User ID: 0
Date/Time: 2020-10-23 19:48:08.788 -0600
mupen64plus/mupen64plus-gui.app/Contents/Frameworks/libSDL2_net-2.0.0.dylib:
/usr/local/opt/sdl2_net/lib/libSDL2_net-2.0.0.dylib (compatibility version 1.0.0, current version 1.1.0)
@executable_path/../Frameworks/libSDL2-2.0.0.dylib (compatibility version 11.0.0, current version 11.0.0)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1281.0.0)
mupen64plus/mupen64plus-gui.app/Contents/MacOS/mupen64plus-gui:
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1281.0.0)
@executable_path/../Frameworks/libSDL2-2.0.0.dylib (compatibility version 13.0.0, current version 13.0.0)
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.11)
@executable_path/../Frameworks/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.15.0, current version 5.15.1)
@executable_path/../Frameworks/QtGui.framework/Versions/5/QtGui (compatibility version 5.15.0, current version 5.15.1)
Process: mupen64plus-gui [34566]
Path: /Users/USER/*/mupen64plus-gui.app/Contents/MacOS/mupen64plus-gui
Identifier: com.yourcompany.mupen64plus-gui
Version: 0
Code Type: X86-64 (Native)
Parent Process: ??? [34565]
Responsible: Electron [352]
User ID: 0
Date/Time: 2020-10-19 21:14:06.418 -0600
var LIB =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
@joeldenning
joeldenning / externals.js
Last active September 5, 2020 19:50
esm webpack plugin externals
import * as __WEBPACK_EXTERNAL_MODULE__0__ from '../../test/fixtures/externals/foo-external.js';
import * as __WEBPACK_EXTERNAL_MODULE__1__ from '../../test/fixtures/externals/bar-external.js';
var LIB =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
var test;test =
/******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ "./src/test-spa.js":
/*!*************************!*\
!*** ./src/test-spa.js ***!
\*************************/
/*! namespace exports */
@joeldenning
joeldenning / cloudSettings
Last active July 6, 2020 15:36
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-07-06T15:36:05.434Z","extensionVersion":"v3.4.3"}
import React from 'react'
import styles from './TemplatesTable.css'
// Table, TableHeader, and TableBody handle CSS, not logic
import Table from '../utils/Table.component'
import TableHeader from '../utils/TableHeader.component'
import TableBody from '../utils/TableBody.component'
import { getTemplates } from './Templates.resource.js'
export default function TemplatesTable(props) {
const [state, dispatch] = React.useReducer(reducer, initialState);