Skip to content

Instantly share code, notes, and snippets.

View ottocol's full-sized avatar

Otto Colomina ottocol

  • http://www.ua.es
View GitHub Profile
@DanManN
DanManN / Makefile
Created August 5, 2021 19:55
Turtlebot Noetic Workspace Setup
all: ./src/turtlebot ./src/turtlebot_apps ./src/turtlebot_msgs ./src/turtlebot_simulator ./src/turtlebot_rviz_launchers ./src/kobuki_msgs ./src/kobuki_gazebo_plugins ./src/kobuki_driver ./src/kobuki_description ./src/kobuki_node ./src/kobuki_keyop ./src/kobuki_safety_controller ./src/kobuki_bumper2pc ./src/openni2_camera ./src/rgbd_launch ./src/slam_gmapping ./src/move_base ./src/yocs_cmd_vel_mux ./src/yocs_controllers ./src/yocs_velocity_smoother ./src/depthimage_to_laserscan ./src/ecl_core ./src/ecl_lite ./src/ecl_mobile_robot ./src/ecl_tools
./src/turtlebot:
git clone https://github.com/turtlebot/turtlebot.git $@
./src/turtlebot_apps:
git clone https://github.com/turtlebot/turtlebot_apps.git $@
./src/turtlebot_msgs:
git clone https://github.com/turtlebot/turtlebot_msgs.git $@
@jeremyfix
jeremyfix / Installation
Last active March 3, 2025 09:29
Turtlebot2 on ROS Noetic Ubuntu 20.04
# Make the workspace
mkdir ~/catkin_ws
cd catkin_ws
mkdir -p src
catkin_make
cd src
# Clone the required repositories
git clone https://github.com/turtlebot/turtlebot.git
@lukejohnjones
lukejohnjones / parse_thumbnail
Created November 4, 2014 05:45
Parse.com thumbnail creation retaining aspect ratio
var Image = require("parse-image");
Parse.Cloud.beforeSave("_User", function(request, response) {
var user = request.object;
if (!user.get("profilePhoto")) {
response.error("Users must have a profile photo.");
return;
}
if (!user.dirty("profilePhoto")) {