Skip to content

Instantly share code, notes, and snippets.

View kwong93's full-sized avatar

Kevin Wong kwong93

View GitHub Profile
@passsy
passsy / material text sizes.md
Last active May 25, 2023 04:24
Material font sizes
var attempts = 1;
function createWebSocket () {
var connection = new WebSocket();
connection.onopen = function () {
// reset the tries back to 1 since we have a new connection opened.
attempts = 1;
// ...Your app's logic...