Skip to content

Instantly share code, notes, and snippets.

View calumk's full-sized avatar
🤖
Geek

Calum Knott calumk

🤖
Geek
View GitHub Profile
@calumk
calumk / nested-checklist.md
Last active April 11, 2022 22:13
nested-checklist.md

Ordered

  1. List Item A
    1. List Item 1
    2. Checked List item 2
    3. Not checked list item 3
    4. List item 4

Unordered

tool
extends RichTextEffect
class_name RichTextNaffObservable
# Define the tag name.
var bbcode = "naffobservable"
func _process_custom_fx(char_fx):
@calumk
calumk / EmotionAPIexample.html
Last active March 15, 2018 16:57
This is an example of how to use the emoion API from microsoft
<!DOCTYPE html>
<html>
<head>
<title>JSSample</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<h2>Face Rectangle</h2>
<ul id="faceRectangle">
<!-- Will populate list with response content -->
# This docker installs Baxter simulator and SDK
# It uses kinetic and xenial
FROM osrf/ros:kinetic-desktop-full
LABEL com.nvidia.volumes.needed="nvidia_driver"
ENV PATH /usr/local/nvidia/bin:${PATH}
ENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH}
@calumk
calumk / Install_Jackal.md
Last active February 22, 2018 18:22 — forked from vfdev-5/INSTALL.md
Jackal simulation in ROS kinetic

Install dependencies :

This is manual way to install necessary packages :

sudo apt-get install ros-kinetic-robot-localization ros-kinetic-controller-manager ros-kinetic-joint-state-controller ros-kinetic-diff-drive-controller ros-kinetic-gazebo-ros ros-kinetic-gazebo-ros-control ros-kinetic-gazebo-plugins             ros-kinetic-lms1xx ros-kinetic-pointgrey-camera-description ros-kinetic-roslint ros-kinetic-amcl ros-kinetic-gmapping      ros-kinetic-map-server ros-kinetic-move-base ros-kinetic-urdf ros-kinetic-xacro ros-kinetic-message-runtime ros-kinetic-topic-tools ros-kinetic-teleop-twist-joy

If you want to use rosdep and install all dependencies (for example for doc generation etc), the skip this step.

Create a workspace and clone sources

@calumk
calumk / baxter_face_playback.py
Created October 7, 2015 08:00 — forked from anonymous/baxter_face_playback.py
Baxter Useful Scripts
#!/usr/bin/env python
import argparse
import sys
import time
import rospy
import cv