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
| // Paste this line into your console (it might give you a warning) and in 12 seconds, it will "click" the `>` | |
| setTimeout(()=>(document.getElementById("ProductViewer-NavNextBtn")).dispatchEvent(new Event('click',{bubbles:true,cancellable:true})), 12*1000); |
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
| // Number of rows in the tessellation | |
| rows = 20; | |
| // Number of columns in the tessellation | |
| cols = 100; | |
| // Width of each hexagonal pillar (circumradius) | |
| hex_size = 4; | |
| // Minimum height of each pillar | |
| height_min = 2; | |
| // Maximum height of each pillar | |
| height_max = 20; |
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 os | |
| import subprocess | |
| import re | |
| import argparse | |
| def extract_dependency_url(file_path): | |
| with open(file_path, "r") as file: | |
| for line in file: | |
| match = re.search(r"//\s*@dependency\s*(\S+)", line) |
OlderNewer