This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$help": "https://aka.ms/terminal-documentation", | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": [ | |
{ | |
"command": { | |
"action": "copy", | |
"singleLine": false | |
}, | |
"keys": "ctrl+c" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Before running this file, run following commands: | |
# git clone https://github.com/CMU-Perceptual-Computing-Lab/openpose | |
# cd openpose/models | |
# ./getModels.bat # or ./getModels.sh | |
# cd ../.. | |
# mkdir model | |
# cp ./openpose/models/pose/mpi/pose_iter_160000.caffemodel ./model/ | |
# cp ./openpose/models/pose/mpi/pose_deploy_linevec_faster_4_stages.prototxt ./model/ | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Map leader to space --------------------- | |
let mapleader=" " | |
""" Plugins -------------------------------- | |
set surround | |
set multiple-cursors | |
set commentary | |
set argtextobj | |
set easymotion | |
set textobj-entire |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.11) | |
include(avrgcc-arduino-compiler.cmake) | |
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | |
set(PRODUCT_NAME product-name) # Change PRODUCT_NAME | |
project(${PRODUCT_NAME} VERSION 0.1) | |
include_directories(include) | |
add_executable(${PRODUCT_NAME} src/main.c) |
NewerOlder