Skip to content

Instantly share code, notes, and snippets.

View Filtatos's full-sized avatar

Alexandros Ktistis Filtatos

  • Athens, Greece
  • 12:36 (UTC +03:00)
View GitHub Profile
@GerardMaggiolino
GerardMaggiolino / simplecar.urdf
Created May 16, 2019 02:24
Completed URDF specified toy car.
<?xml version="1.0"?>
<robot name="simplecar">
<!-- Colors -->
<material name="black">
<color rgba="0 0 0 1"/>
</material>
<material name="blue">
<color rgba="0.6 0.7 0.8 1"/>
</material>
@ehamberg
ehamberg / scatterv.c
Last active January 26, 2025 04:41
MPI_Scatterv example
#include <mpi.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define SIZE 4
int main(int argc, char *argv[])
{
int rank, size; // for storing this process' rank, and the number of processes