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
clear lock | |
clear mod5 | |
add lock = Mode_switch | |
keycode 66 = Mode_switch Escape NoSymbol NoSymbol | |
keycode 43 = h H Left Left | |
keycode 44 = j J Down Down | |
keycode 45 = k K Up Up | |
keycode 46 = l L Right Right | |
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.8) | |
project(clw-05) | |
set(CMAKE_CXX_STANDARD 17) | |
#set(ENV{ASAN_OPTIONS} detect_leaks=1) | |
#set(ENV{ASAN_OPTIONS=detect_leaks} "1") | |
if (MSVC) |
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
sudo apt-get update | |
sudo apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg-agent \ | |
software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt-key fingerprint 0EBFCD88 |
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
## create file git-cloc with specified contents | |
brew install cloc | |
chmod +x git-cloc | |
mv git-cloc /user/local/bin ## or to your $PATH |
NewerOlder