Skip to content

Instantly share code, notes, and snippets.

View yashkathe's full-sized avatar

Yash Kathe yashkathe

View GitHub Profile
@yashkathe
yashkathe / gist:4aa888863628a7e91cb3e3444047fc0a
Last active October 15, 2024 22:30
LORAWAN_GNSS for WIO WM 1110 by SEED Studio
#include "main_geolocation_gnss.h"
#include "smtc_board.h"
#include "smtc_hal.h"
#include "apps_utilities.h"
#include "apps_modem_common.h"
#include "apps_modem_event.h"
#include "gnss_middleware.h"
#include "lr11xx_system.h"
@yashkathe
yashkathe / backtracking_template.py
Created October 15, 2023 18:55 — forked from RuolinZheng08/backtracking_template.py
[Algo] Backtracking Template & N-Queens Solution
def is_valid_state(state):
# check if it is a valid solution
return True
def get_candidates(state):
return []
def search(state, solutions):
if is_valid_state(state):
solutions.append(state.copy())
@yashkathe
yashkathe / 30-touchpad.conf
Created October 22, 2022 08:26 — forked from miguelmota/30-touchpad.conf
Arch linux enable tap to click on touchpad
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "TappingButtonMap" "lmr"
EndSection