Skip to content

Instantly share code, notes, and snippets.

View oshingc's full-sized avatar
🎯
Working on AI projects

María Alejandra Gómez C. oshingc

🎯
Working on AI projects
  • FIS
  • Lima, Perú
  • 01:16 (UTC -05:00)
  • Instagram alecoding
View GitHub Profile
@oshingc
oshingc / Run App with Bower
Last active August 29, 2015 13:57
Correr Proyecto con NodeJS y Bower
//Folder del proyecto
git checkout develop
git fetch
git pull
cd docente/
sudo npm install
//Se instalará npm sino se borra la carpeta .npm y luego se prosigue con sudo npm install
//Actualizar las librerías según bower.json
bower update
@oshingc
oshingc / Linux commands
Last active August 29, 2015 13:57
Linux Commands
sudo killall -9 java
sudo kill -9 `lsof -ti:8080`
@oshingc
oshingc / Git Commands
Last active May 6, 2024 09:57
Git Commands - Saving changes to a new Branch
//Get the project
git clone [email protected]:username/repositoryname.git
//Make changes to the project
//Problem! You made changes to the project beeing on master branch, how do you save those changes to a new branch?
//Save a stack
git stash
//Check actual file mode