Skip to content

Instantly share code, notes, and snippets.

View seagomezar's full-sized avatar
💭
Working From Home with amazing ideas

Sebastian Gomez seagomezar

💭
Working From Home with amazing ideas
View GitHub Profile
@seagomezar
seagomezar / gist:102707be85bc890b7db5ec7ff1f3924a
Created May 15, 2018 14:43
How to share Google Calendars
1. Open Google Calendars
2. In the top right click on "Settings"
3. In the left side click on your calendar name.
4. Scroll down to "Share with specific people"
5. Click on add people
6. Enter the email you want to share
7. Click on Ok.
8. Open email you want share.
9. Click on the new email.
10. You will see the events of the other calendar.
function bar() {
console.log("!");
}
function foo(x = bar()) {
}
// What is the expected output?
function bar() {
console.log("!");
}
function foo(x = bar()) {
}
foo(1);
@seagomezar
seagomezar / web-impact.md
Last active December 6, 2018 12:05
Web Technologies Community Efforts

Comunity Impact

Hi, My Name is Sebastian Gomez and I am Web UI developer (AKA Front-end Developer) at @globant, but also I organize the GDG Medellín. Here is my community impact in Web Technologies.

1. GDG Medellín (Organizer - Community Meetup)

GDG community held in Medellín with +1354 members and +30 attendees per meetup. So far we carried out 31 meetups: since 2015

@seagomezar
seagomezar / smbd_trabajofinal.ipynb
Last active July 15, 2020 21:11
Análisis de tenencias en desarrolladores de software.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@seagomezar
seagomezar / ejercicio1.js
Created October 24, 2020 14:53
Ejercicio 1
alert("hola mundo");
@seagomezar
seagomezar / ejercicio2.js
Created October 24, 2020 14:54
Obtener el valor de una suma a partir de dos números ingresados por el usuario. Una vez obtenida la suma, mostrar el resultado a través de un mensaje.
const a = 10;
// All access to DOM needs to be assigned to a const variable
//TODO: Actualizar para que tambien se guarde el progress
//TODO: Falta hacer lo mismo para las clases
//TODO: Reemplazar el let por el const en los document.getElementBy
//TODO: Aplicar camelCase a las variables
//TODO: Organizar un poco mejor el codigo
// Getting all DOM Elements
const newStudent = document.getElementById('myNewStudent');