Skip to content

Instantly share code, notes, and snippets.

@EderSantana
EderSantana / CATCH_Keras_RL.md
Last active October 16, 2023 08:32
Keras plays catch - a single file Reinforcement Learning example
param
(
[Parameter(Mandatory = $true)]
[string]$pat,
[Parameter(Mandatory = $true)]
[string]$instance,
[Parameter(Mandatory = $true)]
@jackm
jackm / can-packages-and-tools.md
Last active May 29, 2024 12:00
Collection of CAN bus packages and tools

Collection of CAN bus packages and tools

This document assumes the use of Linux as the chosen development platform. Items in bold are highly recommended.

It is recommended to use SocketCAN when working with CAN bus on Linux. It is supported by the Linux kernel mainline and follows the Linux interface model, allowing you to use other network tools such as Wireshark. This also allows the creation of virtual CAN interfaces where no physical hardware is required to simulate or replay CAN messages.

@heoelri
heoelri / locust-master-terraform.tf
Last active July 6, 2021 14:09
locust-master-terraform
resource "azurerm_container_group" "master" {
count = var.locustWorkerNodes >= 1 ? 1 : 0
name = "${random_pet.deployment.id}-locust-master"
location = azurerm_resource_group.deployment.location
resource_group_name = azurerm_resource_group.deployment.name
ip_address_type = "Public"
dns_name_label = "${random_pet.deployment.id}-locust-master"
os_type = "Linux"
container {