Team | League | First | Last |
---|---|---|---|
Boomers | Legends | Hank | Aaron |
Boomers | Legends | Dick | Allen |
Boomers | Legends | Vida | Blue |
Boomers | Legends | Cecil | Cooper |
Boomers | Legends | Tom | Herr |
Boomers | Legends | Tommy | John |
Boomers | Legends | Carney | Lansford |
Boomers | Legends | Frank | Linzy |
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
// when viewing a zoom recording on the web you can use this to export the transcripts | |
function scrape(htmlContent) { | |
const transcriptItems = htmlContent.querySelectorAll('.transcript-list-item'); | |
const chatArray = Array.from(transcriptItems).reduce((acc,item)=>{ | |
const user = item.querySelector('.user-profile-info')?.textContent.trim(); | |
const timestamp = item.querySelector('.time')?.textContent.trim(); | |
const chat = item.querySelector('.text')?.textContent.trim(); |
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
const PLAYER_MARKS = ["X", "O"]; | |
const EMPTY = ""; | |
const checkWinner = (moves, player) => | |
moves.every((c) => c === PLAYER_MARKS[player]); | |
const Board = ({ size }) => { | |
const [tiles, setTiles] = React.useState(new Array(size ** 2).fill(EMPTY)); | |
const [playerIdx, setPlayerIdx] = React.useState(1); | |
const [isWinner, setIsWinner] = React.useState(false); |
OlderNewer