Skip to content

Instantly share code, notes, and snippets.

View The-Code-Monkey's full-sized avatar
🏠
Working from home

Andy Wilson The-Code-Monkey

🏠
Working from home
  • Built by pixel
  • 06:31 (UTC +01:00)
View GitHub Profile
@The-Code-Monkey
The-Code-Monkey / mpmb-jaguar-companion.js
Last active April 3, 2025 12:53
mpmb-jaguar-companion
var iFileName = 'Homebrew Syntax - CompanionList.js'
RequiredSheetVersion('13.1.0')
CompanionList['panther companion'] = {
name: 'Panther Companion',
nameMenu: 'Companion (Panther)',
nameTooltip: 'the Panther companion',
nameOrigin: 'Panther creature',
source: [
@The-Code-Monkey
The-Code-Monkey / 7.js
Created March 25, 2025 17:27
7 Language
function 7(program,input){
if(input==undefined){
input='';
}
var cmd=[];
var stack=[];
for(let i of program.split('\n')){
cmd.push(i.split(' ').filter(x => x=='7').length);
}
stack.push(undefined);
'use strict';
const path = require('path');
const webpack = require('webpack');
const PnpWebpackPlugin = require('pnp-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
const InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
const WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin');