Skip to content

Instantly share code, notes, and snippets.

View direbearform's full-sized avatar

direbearform

View GitHub Profile
@direbearform
direbearform / k8sweavejetsonnano.config
Created May 5, 2019 21:19
Kernel Config for running Kubernetes + Weave on NVIDIA Jetson Nano
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 4.9.140 Kernel Configuration
#
CONFIG_ARM64=y
CONFIG_64BIT=y
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_MMU=y
CONFIG_DEBUG_RODATA=y
CONFIG_ARM64_PAGE_SHIFT=12
@direbearform
direbearform / karabiner.json
Created June 3, 2020 20:43
[config] Karabiner-Element MacOS->Win Config
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {
@direbearform
direbearform / robot.py
Last active September 22, 2019 18:56
a fun problem of robot exploring a maze
from dataclasses import dataclass
from typing import List
import queue
@dataclass
class Location:
x: int
y: int
px: int