View mandelbrot-gpt3.html
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
<html> | |
<head> | |
<title>Mandelbrot Set</title> | |
</head> | |
<body> | |
<canvas id="mandelbrot" width="800" height="600"></canvas> | |
<script> | |
const canvas = document.getElementById('mandelbrot'); |
View @remix-run+react+1.7.5.patch
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
diff --git a/node_modules/@remix-run/react/dist/components.js b/node_modules/@remix-run/react/dist/components.js | |
index f947287..e7cc1f5 100644 | |
--- a/node_modules/@remix-run/react/dist/components.js | |
+++ b/node_modules/@remix-run/react/dist/components.js | |
@@ -773,7 +773,7 @@ method = "get") { | |
let { | |
id | |
} = useRemixRouteContext(); | |
- let resolvedPath = reactRouterDom.useResolvedPath(action ?? "."); // Previously we set the default action to ".". The problem with this is that | |
+ let resolvedPath = reactRouterDom.useResolvedPath(action ? action : "."); // Previously we set the default action to ".". The problem with this is that |
View gist:7b018783c492a3c1e588c79686e9ec7e
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
// extensions.json | |
{ | |
"recommendations": [ | |
"lacroixdavid1.vscode-format-context-menu", | |
"bmewburn.vscode-intelephense-client", | |
"EditorConfig.EditorConfig" | |
] | |
} | |
// settings.json | |
{ |
View remix-run#2412-stuck.txt
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
fix(remix-dev): add ability to use tsconfig `paths` aliases other than `~` test #4883 | |
Summary | |
Jobs | |
build (ubuntu-latest) | |
build (ubuntu-latest) | |
Started 11m 51s ago | |
Search logs | |
1s | |
Current runner version: '2.288.1' | |
Operating System |
View Triage.md
Issues on @remix-run/remix that can be closed
Fixed
Can be closed:
- remix-run/remix#19 (old /dashboard/ stuff)
- remix-run/remix#28 (not applicable anymore)
- remix-run/remix#33 (we now have actions)
View RbacMigration.php
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 | |
namespace console\controllers; | |
use Yii; | |
use yii\console\Controller; | |
/** | |
* I needed to migrate from files-based RBAC to db-based RBAC, here's how I've done it | |
* |
View yii3.md
Understanding Yii 3
Introduction
This document is intended for an audience already familiar with Yii2
Yii 3 is the second major rewrite of the Yii framework.
Originally started in the 2.1 branch, it was later decided to switch to the 3.X series because of all the backward compatibility breakage. Starting with 3.0, Yii will follow the Sementic Versionning.
View http-vhost.conf.md
<VirtualHost *:80>
Define SITE_BASE ${SERVER_BASE}/customer/example.com
ServerName example.com
ProxyRequests Off
ProxyPass / http://example.com/
ProxyPassReverse / http://example.com/
LogLevel warn
NewerOlder