Skip to content

Instantly share code, notes, and snippets.

View RishikesavanRamesh's full-sized avatar
🎯
Focusing

RishikesavanRamesh

🎯
Focusing
View GitHub Profile
@dudo
dudo / nvbuild.sh
Last active October 6, 2025 16:12
Updating Kernel of Nvidia Jetson
#!/bin/bash
# Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
@JADC362
JADC362 / ROS2DebugVSCode.md
Last active November 8, 2025 02:26
Debug ROS2 C++ node on VSCode (Ubuntu)

Debug ROS2 C++ node on VSCode (Ubuntu)

Description

This is a small tutorial on how to debug a ROS2 C++ node usign VSCode.

Requeriments

This implementation was done using:

@llbit
llbit / water.c
Last active December 16, 2024 12:49
Raspberry Pi GPIO pins via C
// Compile with $ gcc water.c -o water
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
// Pin modes:
#define INPUT (0)
#define OUTPUT (1)
#define LOW (0)
#define HIGH (1)