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
    
  
  
    
  | ffmpeg -i video-in.mp4 -vcodec libx264 -crf 34 video-out-compressed.mp4 | 
  
    
      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
    
  
  
    
  | SELECT Orphans.cID FROM Pages AS Orphans LEFT JOIN Pages AS Parents ON Orphans.cParentID = Parents.cID WHERE Parents.cID IS NULL AND Orphans.cID <> 1 AND Orphans.cIsSystemPage = 0 AND Orphans.cParentID <> 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
    
  
  
    
  | export class Events { | |
| bus: HTMLElement | |
| constructor() { | |
| this.bus = document.createElement('div') | |
| } | |
| on(event: string, callback: Function) { | |
| this.bus.addEventListener(event, callback as EventListenerOrEventListenerObject) | |
| } | 
  
    
      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
    
  
  
    
  | git archive --output=deployment-v1.zip HEAD $(git diff --name-only 8c4849795790b06cb848e4fc98c520946f4a68ab..HEAD --diff-filter=d) | 
OlderNewer