Skip to content

Instantly share code, notes, and snippets.

View shockwaves's full-sized avatar

Artem shockwaves

  • black mesa
View GitHub Profile
"use strict";
class Users {
constructor(id) {
this.id = id;
}
static create(id) {
this.all.push(new this(id));
}
<!DOCTYPE html>
<html>
<head>
<style>
html, body, video {
width: 100%;
height: 100%;
margin: 0;
padding: 0;