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
#: black | |
color0 #434343 | |
color8 #5e5e5e | |
#: red | |
color1 #f13460 | |
color9 #fd3e71 | |
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
${c4}.----------------. | |
| .--------------. | | |
| | ${c6}________ ${c4}| | _____ _ _ | |
| | ${c6}|_ ___ `. ${c4}| | |_ _|__ _ __ _ __ ___ (_)_ __ __ _| | | |
| | ${c6}| | `. \ ${c4}| | | |/ _ \ '__| '_ ` _ \| | '_ \ / _` | | | |
| | ${c6}| | | | ${c4}| | | | __/ | | | | | | | | | | | (_| | | | |
| | ${c6}_| |___.´ / ${c4}| | |_|\___|_| |_| |_| |_|_|_| |_|\__,_|_| | |
| | ${c6}|________.´ ${c4}| | __________________________________________ |
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
var cover = document.createElement("div"); | |
let css = ` | |
position: fixed; | |
pointer-events: none; | |
top: 0; |
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
# Download & Install CMake: certutil.exe -urlcache -split -f "https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1-windows-x86_64.msi" cmake.msi && msiexec /i "cmake.msi" | |
# Initiate with: cmake -S . -B build && cmake --build build && cd build && ctest & cd .. | |
cmake_minimum_required(VERSION 3.14) | |
project(my_project) | |
# GoogleTest requires at least C++20 | |
set(CMAKE_CXX_STANDARD 20) | |
include(FetchContent) |
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
@echo off | |
color 4F | |
title Tetris by | |
setlocal enabledelayedexpansion | |
mode con: cols=32 lines=35 | |
set "hashBar=############" | |
set "ESpace= " | |
set "LowestYFig=1" |
NewerOlder