Skip to content

Instantly share code, notes, and snippets.

View mariabohorquez's full-sized avatar
🎮

Maria Gabriela Bohórquez mariabohorquez

🎮
View GitHub Profile
[alias]
# Not Mine
branch-name = !git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \\(.*\\)/\\1/'
export-branch = !git format-patch --stdout $1 > ~/Desktop/`git branch-name`.diff
s = status -s
d = diff
ds = diff --stat
dc = diff --cached
# Logging
@mariabohorquez
mariabohorquez / Maria Bohorquez - Robocomp 2018.md
Last active August 13, 2018 21:50
Work done for RoboComp under Google Summer of Code - 2018

The Project

This is the original project proposal summary I submitted:

Robocomp current tutorials are simple and cover just the basics. Improved tutorials and use cases need to be created for Robocomp to be a framework friendly for beginners as well as more advanced users.

Working on creating examples of how Robocomp can be implemented, and why it should be used, would make it more accessible to the general public. As will improving the "How to Contribute Page", and making pull requests templates would make it easier to collaborate for more advance developers.

Getting Robocomp available in other operating systems it's necessary to making it more well-known, in other Linux distros as well as Windows. This can be done with virtual machines images or making tutorials to download it with their respective dependencies on each OS.
@mariabohorquez
mariabohorquez / path.cpp
Created March 14, 2018 00:28
SPOJ Solution: SHPATH
#include <iostream>
#include <string>
#include <queue>
#include <vector>
#include <map>
using namespace std;
typedef pair<int,int> myPairOfInt;