This file contains 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
#!/usr/bin/env python | |
import sys | |
PATTERNS = [ | |
("19,28 1 5","18,12 2 3","19,5 1 2","18,1 4 3","18,22 1 2","18,4 3 2","18,6 1 3"), | |
("19,2 4 1","18,1 4 3","19,5 1 2","19,12 1 3","19,6 11 1","18,22 1 2","18,15 1 2","19,12 1 3"), | |
("19,28 1 5","19,5 1 2","18,22 1 2","18,22 1 2","18,10 22 1","18,36 2 4","19,5 1 2","18,20 19 2"), | |
("19,5 1 2","18,20 19 2","19,6 11 1","18,1 4 3","18,10 22 1","18,20 19 2","18,1 3 1"), | |
("18,12 2 3","18,10 22 1","18,10 22 1","19,6 11 1","18,4 3 2","18,1 4 3"), |
This file contains 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
/** | |
* @typedef {Object} NodeModulesLayerPluginOptions | |
* @property {string[]} [layerModules] | |
*/ | |
const recursionFlag = Symbol.for('$NodeModulesLayerPlugin_recursion') | |
/** | |
* This is an esbuild plugin which marks all imports that are included in a NodeModulesLayer as external. | |
* |
This file contains 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 ref from "ref-napi"; | |
import ffi from "ffi-napi"; | |
import ref_array_di from "ref-array-di"; | |
const ArrayType = ref_array_di(ref); | |
const StringArray = ArrayType("string"); | |
// from fcntl.h | |
const F_GETFD = 1; /* get close_on_exec */ |
This file contains 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
# Find all unique days in your Google Takeout Semantic Location History | |
# on which you have been at a specific address. | |
# | |
# Usage: days_at_address <addr> [history files...] | |
# | |
# Example: | |
# | |
# $ cd "Takeout/Location History (Timeline)/Semantic Location History" | |
# $ days_at_address "Königsplatz 1, 80333 München, Deutschland" 2023/*.json | |
# Output: |
OlderNewer