Skip to content

Instantly share code, notes, and snippets.

@natcl
natcl / Node-RED_file_upload.json
Last active September 29, 2022 04:33
Node-RED file upload example with built-in http in node.
[
{
"id": "f1ffeb7e.f6451",
"type": "http in",
"z": "c29865fe.249648",
"name": "",
"url": "/upload",
"method": "get",
"upload": false,
"swaggerDoc": "",
@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>
@GerardMaggiolino
GerardMaggiolino / simpleplane.urdf
Created May 16, 2019 02:29
A basic plane specified by URDF.
<?xml version="1.0"?>
<robot name="simpleplane">
<!-- Colors -->
<material name="grey">
<color rgba="0.91 0.925 0.945 1"/>
</material>
<!-- Plane -->
<link name="base_link">
<visual>
@manoj-choudhari-git
manoj-choudhari-git / kusto.txt
Created June 28, 2020 23:31
Kusto query for getting free disk space percentage
InsightsMetrics
| where Namespace contains "LogicalDisk" and Name contains "FreeSpacePercentage"
| summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 10m), Computer
| render timechart