Skip to content

Instantly share code, notes, and snippets.

param (
[Parameter(Mandatory)][string] $GitHubToken,
[Parameter(Mandatory)][string] $GitHubOwner,
[Parameter(Mandatory)][string] $GitHubRepo,
[Parameter(Mandatory)][string] $SourceTrelloJsonFile,
[string[]] $TrelloLists,
[bool] $UpdateExistingIssuesByTitle = $true,
[bool] $AddNonExistingIssues = $true,
[bool] $Logging = $true
)
@PeterBowman
PeterBowman / CMakeLists.txt
Last active February 6, 2021 14:48
YARP ControlBoardWrapper - subdevice mapping test + remapping
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(yarp-cb LANGUAGES CXX)
find_package(YARP 3.4 REQUIRED os dev)
add_library(factory SHARED factory.cpp FakeSubDevice.hpp)
target_link_libraries(factory PUBLIC YARP::YARP_dev)
add_library(tester SHARED test.cpp)
target_link_libraries(tester PUBLIC YARP::YARP_os YARP::YARP_dev)
@PeterBowman
PeterBowman / panoramio.sh
Last active January 25, 2018 10:47 — forked from cdfmr/panoramio.sh
Download Panoramio pictures via user id
#!/bin/sh
delay=0
timeout=10
retry=2
usage()
{
echo "Usage: `basename $0` userid"
}
@PeterBowman
PeterBowman / control_brakes.c
Last active December 30, 2016 19:00
HiCO.CAN script for controlling OUT3 digital output (assigned to brake) of TechnosoftIpos drivers in ASIBOT
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <err.h>
#include <errno.h>
#include <assert.h>
#include <getopt.h>
#include <signal.h>