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
    
  
  
    
  | Get-ChildItem -File -Filter "*.png" | ForEach {cwebp $_.fullname -o "$($_.basename).webp" -mt} | |
| # Get all png files. Pipe the output to a ForEach command that runs cwebp against the given file. | 
  
    
      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
    
  
  
    
  | # In .nvmrc | |
| v12.18.4/x86 | 
  
    
      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
    
  
  
    
  | <w:style w:type="paragraph" w:customStyle="1" w:styleId="Parastyle"> | |
| <w:name w:val="Para style" /> | |
| <w:basedOn w:val="ListParagraph" /> | |
| <w:qFormat /> | |
| <w:rsid w:val="00E046F2" /> | |
| <w:pPr> | |
| <w:numPr> | |
| <w:numId w:val="2" /> | |
| </w:numPr> | |
| <w:jc w:val="center" /> | 
  
    
      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
    
  
  
    
  | name: Messing around with bindings | |
| description: '' | |
| host: WORD | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(run); | |
| $("#run2").click(run2); | |
| $("#run3").click(run3); | |
| $("#run4").click(run4); | 
  
    
      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
    
  
  
    
  | name: goToByIdAsync2 | |
| description: >- | |
| This snippet call goToByIdAsync function. The callback function is never | |
| called. | |
| host: WORD | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(run); | |
| $("#run2").click(run2); | 
  
    
      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
    
  
  
    
  | name: goToByIdAsync | |
| description: >- | |
| This snippet call goToByIdAsync function. The callback function is never | |
| called. | |
| host: WORD | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(run); | 
  
    
      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 getDocument = async (file) => { | |
| let currentSlice = 0; | |
| let data = []; | |
| while (currentSlice !== file.sliceCount) { | |
| const slicePromise = new Promise(resolve => file.getSliceAsync(currentSlice, resolve)); | |
| const result = await slicePromise; | |
| if (result.status !== "succeeded") { | |
| file.closeAsync(); | |
| return { status: "failed" }; | |
| } | 
  
    
      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
    
  
  
    
  | <resources> | |
| <string name="app_name" translatable="false">Trringo Biz</string> | |
| <string name="welcome_message">Namaste</string> | |
| <!-- Logo related strings --> | |
| <string name="caption">AB TRACTOR CALL KARO</string> | |
| <!-- Business context strings --> | |
| <string name="customer">Customer</string> | 
  
    
      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
    
  
  
    
  | class CryptographicAlgorithm(object): | |
| def encrypt(document): | |
| pass | |
| def decrypt(document): | |
| pass | |
| class SymmetricKeyAlgorithm(CryptographicAlgorithm): | |
| def encrypt(document): | |
| pass |