yq '.. | select(tag != "!!map" and tag != "!!seq" and (parent | key) == "<keyname>") | path | join(".")' \
 <filename.yaml>
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| # Standalone Git Repository Report Script | |
| # Configuration (can be modified here directly) | |
| DEFAULT_GIT_CLONE_PATH="$HOME/repositories" # Default path to search for git repos | |
| # --- Helper Functions (Standalone implementations) --- | |
| # For standalone, let's use simple echo with prefixes instead of log_warning/log_info | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| # Download all images listed in list.txt then make it a PDF | |
| wget --input list.txt -O $1.jpg | |
| convert *.jpg output.pdf | 
  
    
      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
    
  
  
    
  | [1, 2, 3].push(4) | |
| // [1,2,3,4] | |
| [1, 2, 3].pop() | |
| // [1,2] | |
| [1, 2, 3].shift() | |
| // [2,3] | |
| [1, 2, 3].unshift(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
    
  
  
    
  | const options = { | |
| n6 : { price: 10, columns: 6 }, | |
| n7 : { price: 70, columns: 7 }, | |
| n8 : { price: 280, columns: 8 } | |
| } | |
| const opt = 'n7' | |
| const rows = 10 | |
| const columns = options[opt].columns | 
The package linked to from here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
- Use ESM yourself. (preferred)
 Useimport foo from 'foo'instead ofconst foo = require('foo')to import the package. You also need to put"type": "module"in your package.json and more. Follow the below guide.
- If the package is used in an async context, you could use await import(…)from CommonJS instead ofrequire(…).
- Stay on the existing version of the package until you can move to ESM.
  
    
      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
    
  
  
    
  | [Settings] | |
| ID = "Your_Site_ID" | |
| # Settings in the [build] context are global and are applied to all contexts unless otherwise overridden by more specific contexts. | |
| [build] | |
| # This is the directory to change to before starting a build. | |
| base = "project/" | |
| # NOTE: This is where we will look for package.json/.nvmrc/etc, not root. | |
| # This is the directory that you are publishing from (relative to root of your repo) | 
NewerOlder