Skip to content

Instantly share code, notes, and snippets.

View oscarzatell's full-sized avatar
🎯
Enfoque

Oscar Zamora Tellez oscarzatell

🎯
Enfoque
View GitHub Profile
@gbrow004
gbrow004 / ubuntu-MBP-16.md
Last active April 19, 2024 11:40
Ubuntu on Apple Macbook Pro 16-inch (2019)

Update!

This gist is out of date and I can no longer help much, as I got rid of my Mac.

Please visit T2 Linux website for more and better information:

https://t2linux.org/

Acknowledgements

This gist is just a compilation of the hard work that others have put in. I'm not a software developer, so if there are any mistakes or better ways of doing things, I'd appreciate any suggestions. Here's a list of the real heroes who made this possible:

@ramiruhayel
ramiruhayel / docker-compose.yml
Created October 1, 2017 13:43
Docker compose file for a Jupyter Data Science Notebook w/ volume mapping and port forwarding.
version: "3"
services:
datascience-notebook:
image: jupyter/datascience-notebook
volumes:
- /Absolute/Path/To/Where/Your/Notebook/Files/Will/Be/Saved:/home/jovyan/work
ports:
- 8888:8888
container_name: datascience-notebook-container
@dasdo
dasdo / GIT.md
Last active April 23, 2024 11:32
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com