It’s nice to adopt traditional software developing tools when we work with ROS and robotics software. I think that it worths to watch the next video presented in the ROS-Industrial Consortia. Enjoy!
Author: angelos
How to install ros-control packages
Say that you use ROS-kinetic and you want to start to have fun with ros-control. Do you you know which are the dependencies? ok, follow me – it’s easy: sudo apt-get install ros-kinetic-ros-control sudo apt-get install ros-kinetic-ros-controllers sudo apt-get install ros-kinetic-gazebo-ros-control
Install SmartGit in ubuntu (without apt-get)
Apt-get is great package manager in Ubuntu, a convenient tool to use for installing and removing apps. However, sometimes you need to install something by downloading the package from the source, maybe because has the brand new version and… you need it. Let’s say that we want to install SmartGit, a very handy git app
Continue reading Install SmartGit in ubuntu (without apt-get)
Source control in Xcode… and terminal
Source control in the development procedure is not a luxury, it is essential. Don’t think of it necessary only when you work in a team. Pick up good habits early and apply it even if you work alone. It will enhance your work quality and sometimes it will become your saviour. This article will only
UIViewController lifecycle
Developing code for iOS means that you are going to use at least one UIViewController in your app. This is one of the elements of the Model-View-Controller (MVC) design pattern and it is really helpful to understand its lifecycle. There are certain methods that called automatically when the view controller is loaded, presented and hidden.