DEV Community

Cover image for Js13kGames swag is finally out
Andrzej Mazur for js13kGames

Posted on • Originally published at Medium on

Js13kGames swag is finally out

If you follow the competition for long enough this is absolutely no surprise - printing of the swag from js13kGames 2020 was delayed a few times, similarly to the previous years. Itโ€™s finally done though, and all the packages were already shipped!

We have a new t-shirt design every year thanks to Ewa, and offer different gadget as well - this yearโ€™s one is a pen. The package comes with a bunch of stickers: both our own (js13kGames, Enclave Games, Gamedev.js) and from our Partners.

Enclave Games - js13kGames 2020 swag 02

We had to quickly print the compo ones as I thought we still have a lot of them, but apparently they ran out last time - I ordered a bunch and put three in every package instead of one or two.

Enclave Games - js13kGames 2020 swag 03

The packages, each containing a t-shirt, a pen, and a whole bunch of stickers (including a whole collection depicting notable entries from previous years thanks to Sascha from eBay ) were sent out - if your entry ended up in top 100 overall results, top 15 WebXR category, or you were an Expert, expect the package coming your way.

Enclave Games - js13kGames 2020 swag 04

The tracking details were emailed to everybody interested, so make sure to keep an eye on them as some local post offices or customs services might take loger to process it than others.

Enclave Games - js13kGames 2020 swag 05

If you do get the package already, please post a selfie! When sharing on Twitter, make sure to use the #js13k hashtag. We have a long tradition of having a photo album of cool people wearing js13kGames t-shirts all over the world from every single year, and would like to keep that going this time as well, thanks!

Top comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

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!