- prettify ui (17/07)
- deploy a demo product (11/07)
- hire someone to make a demo video (20/07)
- finish product preview slide on pitch deck (17/07)
- finish team slide on pitch deck (10/07)
- finish ask slide on pitch deck (11/07)
- finish go to market plan on pitch deck (24/07)
- finish financial predictions on pitch deck (24/07)
This file contains 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 | |
include 'vendor/autoload.php'; | |
$cbmapper = new Codeburner\Router\Mapper; | |
$cbdispatcher = new Codeburner\Router\Dispatcher($cbmapper); | |
$frmapper = new FastRoute\RouteCollector(new FastRoute\RouteParser\Std, new FastRoute\DataGenerator\GroupCountBased); | |
// for triggering the autoload |
This file contains 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 | |
include "vendor/autoload.php"; | |
include "routes.php"; | |
$collector = new Codeburner\Router\Collector(); | |
$matcher = new Codeburner\Router\Matcher($collector); | |
foreach ($routes as $path) { | |
$collector->get($path, function () use ($path) { |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<div id="app"> | |
<p>Insira um cpf:</p> | |
<input type="text" v-model="message"> |
This file contains 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
Query( | |
Lambda( | |
["bidderRef", "auctionId", "amount"], | |
Let( | |
{ auction: Get(Ref(Collection("auction"), Var("auctionId"))) }, | |
If( | |
Equals(Select(["data", "isSettled"], Var("auction"), false), true), | |
Abort("Cannot bid on already settled auction"), | |
Let( | |
{ |
This file contains 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
{ | |
"scripts": { | |
// from https://github.com/sparkletown/sparkle | |
"analyze:bundle-stats": "npx webpack-bundle-analyzer build/bundle-stats.json -m static -r build/bundle-stats.html", | |
"analyze:bundle-stats:statoscope": "npx @statoscope/cli serve ./build/bundle-stats.json", | |
"analyze:bundle-stats:duplicates-1": "npx inspectpack --action duplicates --stats build/bundle-stats.json", | |
"analyze:bundle-stats:duplicates-2": "npx webpack-stats-duplicates ./build/bundle-stats.json", | |
} | |
} |