Skip to content

Instantly share code, notes, and snippets.

View shakyShane's full-sized avatar

Shane Osbourne shakyShane

View GitHub Profile
@shakyShane
shakyShane / duckai-perf-3g-6x.md
Created March 24, 2026 07:56
Duck.ai Performance Comparison — 3G + 6x CPU — 2026-03-24

Duck.ai Performance Comparison — 3G + 6x CPU

Date: 2026-03-24
Tool: Playwright (Chromium, headless)

Production (current) Candidate
URL 030c2a27bdaf.ngrok.app 5cc2bb9fdebc.ngrok.app

@shakyShane
shakyShane / duckai-perf-baseline.md
Last active March 24, 2026 07:50
Duck.ai Performance Baseline — 2026-03-24

Duck.ai Performance Baseline

Date: 2026-03-24
Tool: Playwright (Chromium, headless)

Candidate Production (current)
URL 2e22761cd923.ngrok.app 2a1e017fcdab.ngrok.app

config-gen

Generate RequireJS Optimizer configuration for Magento 2 website based on real-world usage.

Step 1 - Download the binary

config-gen is packaged as a single binary (currently only osx) to enable easy usage, just check the releases page and download the latest.

config-gen

Generate RequireJS Optimizer configuration for Magento 2 website.

Step 1 - Download the binary

config-gen is packaged as a single binary (currently only osx) to enable easy usage, just check the releases page and download the latest.

struct AppState {
config: Arc<Mutext<Vec<String>>>
}
///
/// these handlers can be running on any number of threads
///
fn handler(req: &HttpRequest<AppState>) -> Box<Future<Item = HttpResponse, Error = ()>> {
// clone the Arc here so it can be safely moved into the closure
impl M2PresetOptions {
pub fn get_opts(prog_config: ProgramConfig) -> Option<M2PresetOptions> {
serde_yaml::from_value(prog_config.get_opts("m2")?).ok()?
}
}
///
/// A simple way to apply both a predicate
/// and default value when dealing with an option.
///
fn is_legal(age: Option<usize>) -> bool {
age.map(|x| x >= 18).unwrap_or(false)
}
version: '2'
services:
nginx:
volumes:
- .docker/certs:/etc/letsencrypt
env_file:
- ./.docker/local.env
php:
<!-- app/code/Simmi/Theme/view/frontend/web/template/account.html -->
<div data-bind="text: loadingText"></div>
@shakyShane
shakyShane / account.html
Created August 22, 2018 08:27
Ui Component example
<div class="global-underlay"
data-bind="
css: {'global-underlay--active': state().underlayActive},
click: close
"
></div>
<div class="global-overlay"
data-bind="
css: {
'global-overlay--active': state().overlayActive,