From 267582d8a12ace166b1859d97cdfe35c7752d8b2 Mon Sep 17 00:00:00 2001 From: datalore Date: Fri, 3 Nov 2023 20:18:23 +0100 Subject: [PATCH] Improved buzzword list --- src/app/components/bingocontroller.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/bingocontroller.tsx b/src/app/components/bingocontroller.tsx index 2911308..a42a7c4 100644 --- a/src/app/components/bingocontroller.tsx +++ b/src/app/components/bingocontroller.tsx @@ -15,7 +15,7 @@ function FisherYatesShuffle(array:string[]):string[]{ export default function BingoController(){ const [size, setSize] = React.useState(5); - const buzzwords = ["Cloud", "Cyber", "Distruptive Technology", "AI", "Metaverse", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Insert bullshit here] as a service", "Emerging Market", "Streamline"]; + const buzzwords = ["Cloud", "Cyber-[Something]", "Distrupt[ive]", "AI", "Meta [Something]", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Something] as a service", "Emerging [Something]", "Streamline", "Ecosystem", "Leverage", "Outside the Box", "Pivot", "Strategic", "Agile", "Smart Tech", "Data Warehouse"]; const [items, setItems] = React.useState(buzzwords); const sizeError = ((items.length % size) != 0); return(