Skip to content

Instantly share code, notes, and snippets.

@nestoralonso
nestoralonso / ChatApp2.js
Created September 27, 2016 19:28
Repetaded avatar solved
////////////////////////////////////////////////////////////////////////////////
// Exercise:
//
// - Create a chat application using the utility methods we give you
//
// Need some ideas?
//
// - Cause the message list to automatically scroll as new
// messages come in
// - Highlight messages from you to make them easy to find
@nestoralonso
nestoralonso / random-commands.bash
Last active August 2, 2016 14:58
bash random commands
# make a folder selection using ls and pass it to echo to see command output before executing
ls -d muchos*dirs/ | xargs -I{} echo rm -rf {}
// Object literal demo
var obj = {};
var key = Symbol('foo');
obj[key] = 'baz';
console.log(obj);