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
    
  
  
    
  | // code to get this: | |
| /** | |
| * @author github.com/FarisHijazi | |
| * | |
| * @returns {{ "id": String, "tu": String, "th": String, "tw": String, "ou": String, "oh": String, "ow": String, "pt": String, "st": String, }[]} | |
| * returns a list of objects, these contain the image info | |
| * | |
| * how it works: | |
| * there's a <script> that contains the images info, the code in it contains `AF_initDataCallback` | 
  
    
      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
    
  
  
    
  | Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\*\shell\Unzip and delete] | |
| "icon"="C:\\Program Files\\7-Zip\\7zG.exe" | |
| [HKEY_CLASSES_ROOT\*\shell\Unzip and delete\command] | |
| @="\"<PATH TO>\\unzip_and_delete.bat\" \"%1\"" | 
  
    
      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
    
  
  
    
  | /** | |
| * Snoops on an object, monitors all attempts to access and set properties | |
| * @param {Object} obj - the object to monitor | |
| * @param {string[]=} props - list of properties to watch, watches all properties by default | |
| * @param {Function=} onset - callback when the property is set (newValue is passed) | |
| * @param {Function=} onget - callback when the property is accessed | |
| * @param verbose | |
| */ | |
| function snoopProperty(obj, props = [], onset = (val) => null, onget = () => null, verbose = true) { | 
NewerOlder
        