Event: React Miami 2026 – The Ultimate React Conference in the US
Location: Hyatt Regency Miami
Source: https://www.reactmiami.com/schedule + páginas individuais de speakers
Compiled Date: 18 March 2026
Note: Only talks with speaker detail links were included (breaks, lunches, parties and TBDs doesn't have descriptions).
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
| javascript:(function(){ | |
| // ──────────────────────────────────────────────── | |
| // Helpers | |
| // ──────────────────────────────────────────────── | |
| function hasGradient(value) { | |
| return /gradient|linear-gradient|radial-gradient|repeating-/i.test(value || ''); | |
| } | |
| function isGradientTextLike(style) { |
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
| (() => { | |
| const TARGET_CLASS_PATTERN = /^ds:\d+$/; | |
| const TARGET_KEYS = new Set(["ds:5", "ds:6"]); | |
| function getTargetScripts(root = document) { | |
| return Array.from(root.querySelectorAll("script[class]")) | |
| .filter((scriptEl) => | |
| Array.from(scriptEl.classList).some((className) => TARGET_CLASS_PATTERN.test(className)) | |
| ); | |
| } |
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
| export const t = async (f) => { | |
| let output = undefined | |
| let error = undefined | |
| try { | |
| output = f() | |
| } catch(e) { | |
| error = e | |
| } |
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
| // Hi my name is Ofelquis and I've been studying equations and algorithms with Grok, | |
| // I didn't write this code, it's just food for thought enjoy and read more about the works of shannon claude | |
| // Bigram-based next-letter predictor with probability distribution | |
| // Trains on a corpus, computes P(next | current), logs probs for ALL A-Z letters, then the highest | |
| function buildBigramModel(corpus) { | |
| const counts = {}; | |
| const totals = {}; |
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
| // | |
| // ViewController.swift | |
| // CenterElement | |
| // | |
| import UIKit | |
| import SwiftUI | |
| class ViewController: UIViewController { | |
| var squareView: UIView! |
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
| function Example() { | |
| const defaultInputValues = { | |
| name: "", // should match input's name prop | |
| email: "", | |
| address_line_1: "", | |
| birthday: "", | |
| } | |
| const [controlledFields, setControlledFields] = useState({ | |
| ...defaultInputValues, |
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
| /* | |
| Usage: loadStyles([{ | |
| href: | |
| 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons', | |
| }, | |
| { | |
| href: | |
| 'https://unpkg.com/bootstrap-material-design@4.0.0-beta.4/dist/css/bootstrap-material-design.min.css', | |
| integrity: | |
| 'sha384', |
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
| /* | |
| Usage: loadJavaScriptFiles([{ | |
| href: | |
| 'https://path-to', | |
| }, | |
| { | |
| href: | |
| 'https://unpkg.com/cdn-path-to', | |
| integrity: | |
| 'sha384', |
If you have a form, and in the design specs there's no submit button inside the form, you can still make the form submit when the user presses enter. You just need to put a hidden input of type submit.
<form>
<input type="text" name="anything" />
<input type="submit" hidden />
</form>That is it for today. Questions in the comment field bellow, thanks.
NewerOlder