Skip to content

Instantly share code, notes, and snippets.

View Wetbikeboy2500's full-sized avatar
🏠
Working from home

Matt Wetbikeboy2500

🏠
Working from home
View GitHub Profile
@Wetbikeboy2500
Wetbikeboy2500 / simplex.js
Last active October 24, 2023 21:23
Attempt at implementing the simplex method from a given example. Svelte example: https://svelte.dev/repl/fcf9e27ad4b2461aace83709ebb7f3d5?version=4.2.2
// Marbles
// x + y <= 8
// y + z <= 4
// x + y + z <= 10
// max: 3x + 5y + 5z = P
// x + y + s1 = 8
// y + z + s2 = 4
// x + y + z + s3 = 10
@Wetbikeboy2500
Wetbikeboy2500 / userscript.user.js
Last active April 4, 2022 17:44 — forked from oralekin/userscript.user.js
osu! Logo Template for 2022 /r/place
// ==UserScript==
// @name osu! Logo template
// @namespace http://tampermonkey.net/
// @version 0.7
// @description try to take over the canvas!
// @author oralekin, LittleEndu, ekgame, Wieku, DeadRote, Wetbikeboy2500
// @match https://hot-potato.reddit.com/embed*
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant none
// ==/UserScript==
@Wetbikeboy2500
Wetbikeboy2500 / main.dart
Last active May 19, 2021 07:17
Allow asynchronous external functions by callback for Hetu-Script 0.0.6
import 'dart:async';
import 'dart:io';
//http: ^0.13.0
import 'package:http/http.dart' as http;
//html: ^0.15.0
import 'package:html/parser.dart' as parser show parse;
//path: ^1.8.0
import 'package:path/path.dart' as p;
//hetu_script: ^0.0.6
import 'package:hetu_script/hetu_script.dart';