Skip to content

Latest commit

 

History

History
176 lines (173 loc) · 2.78 KB

README.md

File metadata and controls

176 lines (173 loc) · 2.78 KB

GusAndEddyWebsite

A silly website to play bingo when you listen to the Gus and Eddy podcast which has since been cancelled, going out in a gloryless blaze. I am no longer paying for hosting for this. However, it was a full-stack application coded in React on the front-end and Express on the back-end. The backend is a REST API server and the URL to view this is https://api.gusandeddybingo.com/bingo_Values.

Here is an example of an API response you will receive from that website. If any other dev wants to make another cool front-end with this data, feel free!

{
success: "true",
message: "users",
data: [
{
id: 1,
name: "boys support boys",
description: null,
active: 1
},
{
id: 2,
name: "monkey",
description: null,
active: 1
},
{
id: 3,
name: "business business business business",
description: null,
active: 1
},
{
id: 4,
name: "Tony is told to edit something",
description: null,
active: 1
},
{
id: 5,
name: "Talking about enjoying streaming.",
description: null,
active: 1
},
{
id: 6,
name: "A boy whispers into the mic",
description: null,
active: 1
},
{
id: 7,
name: "Preguntas is translated",
description: null,
active: 1
},
{
id: 8,
name: "Something is explained to audio listeners",
description: null,
active: 1
},
{
id: 10,
name: "NakeyJakey",
description: null,
active: 1
},
{
id: 11,
name: "corn pop",
description: null,
active: 1
},
{
id: 13,
name: "Gus mentions a brother",
description: null,
active: 1
},
{
id: 14,
name: "Eddy mentions Tony without requesting an edit",
description: null,
active: 1
},
{
id: 15,
name: "booger wall",
description: null,
active: 1
},
{
id: 16,
name: "A boy leaves and the remaining boy makes up a solo bit.",
description: null,
active: 1
},
{
id: 17,
name: "Seed Soil Sun / Extra Cheese Please",
description: null,
active: 1
},
{
id: 18,
name: "We only look at preguntas on Twitter",
description: null,
active: 1
},
{
id: 19,
name: "Jeff Bezos",
description: null,
active: 1
},
{
id: 20,
name: "Twitch",
description: null,
active: 1
},
{
id: 22,
name: "One of the Paul Brothers is mentioned",
description: null,
active: 1
},
{
id: 23,
name: "Eddy comments that he is done with a bit.",
description: null,
active: 1
},
{
id: 24,
name: "A boy goes to the restroom",
description: null,
active: 1
},
{
id: 25,
name: "Drew Gooden, Danny Gonzalez, or Cody Ko is mentioned",
description: null,
active: 1
},
{
id: 26,
name: "knives are mentioned",
description: null,
active: 1
},
{
id: 27,
name: "Universal Studios",
description: null,
active: 1
},
{
id: 28,
name: "A boy mentions what he wants to do after quarantine",
description: null,
active: 1
},
{
id: 29,
name: ""I thought this was cool as a kid."",
description: null,
active: 1
},
{
id: 30,
name: "Mane and Tail",
description: null,
active: 1
}
]
}