Skip to content

Instantly share code, notes, and snippets.

View bram814's full-sized avatar
🏀

Abraham Solórzano bram814

🏀
View GitHub Profile
ZK 7 ZUL Awesome
.z-icon-glass {content:"\f000"}
.z-icon-music {content:"\f001"}
.z-icon-search {content:"\f002"}
.z-icon-envelope-o {content:"\f003"}
.z-icon-heart {content:"\f004"}
.z-icon-star {content:"\f005"}
.z-icon-star-o {content:"\f006"}
.z-icon-user {content:"\f007"}
.z-icon-film {content:"\f008"}
@bram814
bram814 / mongodb_cheat_sheet.md
Created August 20, 2022 22:43 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@bram814
bram814 / binary-tree.js
Created July 3, 2021 00:54 — forked from rodrwan/binary-tree.js
Implementación árbol binario en JavaScript
class Node {
constructor (value) {
this.value = value
this.right = null
this.left = null
}
}
class Tree {
constructor () {