Skip to content

Instantly share code, notes, and snippets.

View jozr's full-sized avatar
💗

Josephine jozr

💗
  • San Diego, USA
  • 21:57 (UTC -07:00)
View GitHub Profile
@Dammmien
Dammmien / Matrix.js
Last active July 9, 2023 17:33
Easily create an empty matrix in javascript
var matrix = [],
H = 4, // 4 rows
W = 6; // of 6 cells
for ( var y = 0; y < H; y++ ) {
matrix[ y ] = [];
for ( var x = 0; x < W; x++ ) {
matrix[ y ][ x ] = "foo";
}
}
@weakish
weakish / code.md
Last active April 17, 2023 13:15
The Six Most Common Species Of #Code #java #fun