This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Test image for https://github.com/ros/ros_comm/issues/1343 | |
FROM ros:kinetic-ros-base-xenial | |
RUN mkdir -p /catkin_ws/src && \ | |
cd /catkin_ws/src && \ | |
git clone https://github.com/ros/ros_comm.git -b kinetic-devel && \ | |
git clone https://github.com/ros/roscpp_core.git -b kinetic-devel | |
RUN cd /catkin_ws && \ | |
/ros_entrypoint.sh catkin_make_isolated |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -ex | |
# install build deps (debian/ubuntu) | |
sudo apt-get install libpcre3-dev tk-dev libglib2.0-dev libxt-dev | |
V=3.15.1 | |
TARBALL=ivy-c_${V}.tar.xz | |
curl -OL http://www.eei.cena.fr/products/ivy/download/packages/${TARBALL} | |
tar xvf ${TARBALL} | |
cd ivy-c_${V}/src |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PAPARAZZI_HOME="/home/pprz-docbot/paparazzi" | |
PAPARAZZI_DOC_REPO="/home/pprz-docbot/paparazzi.github.com" | |
doc_branches=(master v4.0 v4.2 v5.0 v5.2 v5.4 v5.6 v5.8 v5.10 v5.12 v5.14) | |
need_updates=() | |
error=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Example of a user's .screenrc file | |
# | |
# This is how one can set a reattach password: | |
# password ODSJQf.4IJN7E # "1234" | |
# no annoying audible bell, please and no visual bell | |
vbell off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE target SYSTEM "gdb-target.dtd"> | |
<target> | |
<feature name="org.gnu.gdb.arm.core"> | |
<reg name="r0" bitsize="32" type="uint32"/> | |
<reg name="r1" bitsize="32" type="uint32"/> | |
<reg name="r2" bitsize="32" type="uint32"/> | |
<reg name="r3" bitsize="32" type="uint32"/> | |
<reg name="r4" bitsize="32" type="uint32"/> | |
<reg name="r5" bitsize="32" type="uint32"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .zshrc | |
# (copyleft) 2012 by Felix Ruess | |
# | |
# ---[ System settings ]------------------------------------------------ | |
limit -s coredumpsize 0 | |
umask 0027 | |