Skip to content

Instantly share code, notes, and snippets.

View gusmendez99's full-sized avatar
🐺
WFH

Gustavo Méndez gusmendez99

🐺
WFH
  • Webtrack / Edoo
  • Guatemala
View GitHub Profile
/* ACCESS */
let angie = {
firstName: 'Angie',
lastName: 'McCarthy',
age: 20,
}
const ageKey = 'age'
// 1 App. dot notation
/*
let name1 = 'Darling Garcia';
name1 = 'Darling Garcia';
const name2 = "Gus";
let number = 2.34
console.log(number)
*/
// Other comment
@gusmendez99
gusmendez99 / lab1_part2_music_generation.ipynb
Last active March 10, 2021 02:03
Lab1_Part2_Music_Generation.ipynb
Sorry, this is too big to display.
@gusmendez99
gusmendez99 / part1_tensorflow.ipynb
Last active March 10, 2021 02:04
Lab1_Part1_Music_Generation.ipynb.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import random
from collections import namedtuple
# ===============================================================
# Math
# ===============================================================
V2 = namedtuple('Vertex2', ['x', 'y'])
V3 = namedtuple('Vertex3', ['x', 'y', 'z'])