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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:latest | |
| RUN touch /app/test.txt | |
| ENTRYPOINT ["tail", "-f", "/dev/null"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env php | |
| <?php | |
| use MathPHP\LinearAlgebra\MatrixFactory; | |
| use MathPHP\LinearAlgebra\Vector; | |
| /** | |
| * composer require markrogoyski/math-php | |
| */ | |
| require_once __DIR__ . '/vendor/autoload.php'; |
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace App\Admin; | |
| class FooAdmin extends AbstractAdmin | |
| { | |
| protected function configureFormFields(FormMapper $formMapper): void | |
| { |