Skip to content

Instantly share code, notes, and snippets.

View andrewmy's full-sized avatar

Andrew andrewmy

View GitHub Profile
@andrewmy
andrewmy / unlearn-dev-research.md
Created April 2, 2026 08:55
Unlearn.dev Deep Research Report (April 2026) — company analysis, pricing, Trustpilot reviews, financials

Unlearn.dev — Deep Research Report (April 2026)

TL;DR

BitterBrains is a legit company with real revenue. Unlearn.dev is their newest product — low financial risk at $129/yr with a 30-day refund, but it's half-built and has zero independent community validation yet.


What Is It?

@andrewmy
andrewmy / Dockerfile
Created March 3, 2026 08:51
docker compose pull then up test
FROM alpine:latest
RUN touch /app/test.txt
ENTRYPOINT ["tail", "-f", "/dev/null"]
@andrewmy
andrewmy / matrix.php
Created January 23, 2024 10:24
Solving a random set of equations as a matrix
#!/usr/bin/env php
<?php
use MathPHP\LinearAlgebra\MatrixFactory;
use MathPHP\LinearAlgebra\Vector;
/**
* composer require markrogoyski/math-php
*/
require_once __DIR__ . '/vendor/autoload.php';

Keybase proof

I hereby claim:

  • I am andrewmy on github.
  • I am andrewmy (https://keybase.io/andrewmy) on keybase.
  • I have a public key ASDnEXy90BTZrLw9XNqv2OanFHeNS1Lr7vN-40KocbVF1go

To claim this, I am signing this object:

@andrewmy
andrewmy / FooAdmin.php
Created June 8, 2018 13:34
Show/hide Sonata admin field groups based on some choice field
<?php
declare(strict_types=1);
namespace App\Admin;
class FooAdmin extends AbstractAdmin
{
protected function configureFormFields(FormMapper $formMapper): void
{