DEV Community

0 seconds of 33 secondsVolume 90%
Press shift question mark to access a list of keyboard shortcuts
00:00
00:00
00:33
 
Peter Vivo
Peter Vivo

Posted on • Edited on

6 1

Flogon Galaxy

Teaser of my upcomming game for AWS Game Builder Challenge.

Tech Stack:

code: HTML/JS/JSDoc/AWS services

The stuff:

  • Amazon Q
  • ChatGPT
  • Midjourney
  • Hailuoai Video
  • Suno AI

Top comments (5)

Collapse
 
shafayeat profile image
Shafayet Hossain Yashfi

Waiting...😭😭

Collapse
 
pengeszikra profile image
Peter Vivo

Just 16 day left to submit a game, just I don't know the exact game rules. Plus I have a lot of other open question.

Collapse
 
pengeszikra profile image
Peter Vivo
Collapse
 
pengeszikra profile image
Peter Vivo
Collapse
 
pengeszikra profile image
Peter Vivo

.... 20 hours left.

11 Tips That Make You a Better Typescript Programmer

typescript

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!