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
import collections | |
horiz_edges = [ | |
[">", "<", ">", ">"], | |
["<", " ", "<", ">"], | |
[">", ">", "<", " "], | |
["<", " ", ">", "<"], | |
[" ", " ", ">", ">"], | |
] | |
assert len(horiz_edges) == 5 |
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.12) | |
# A reproduction of the example given in | |
# https://cmake.org/cmake/help/latest/command/target_link_libraries.html#linking-object-libraries | |
project(CMakeTest) | |
# Object Libraries may be used as the <target> (first) argument of target_link_libraries to specify dependencies of their sources on other libraries. For example, the code | |
add_library(A SHARED a.c) | |
target_compile_definitions(A PUBLIC A) |
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
import asyncio | |
import sys | |
import typing | |
""" | |
vite.config.ts has these lines: | |
function djb2Hash(str: string): number { | |
let hash = 5381 |
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
import asyncio | |
import json | |
import pathlib | |
import random | |
import signal | |
import typing | |
""" | |
vite.config.ts has these lines: |
OlderNewer