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/python | |
| import re | |
| from os import path as pt | |
| SCENE_DIR = pt.join("project", "scene") | |
| SCRIPT_DIR = pt.join("project", "script") | |
| REP = lambda r, s: lambda f: f.replace(r,s) | |
| REG = lambda r, s: lambda f: re.sub(r,s,f) | |
| REM = lambda r, s: lambda f: re.sub(r,s,f, 0, re.MULTILINE) | 
  
    
      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 sh | |
| sudo update-alternatives --install \ | |
| /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-3.4 200 \ | |
| --slave /usr/bin/llvm-ar llvm-ar /usr/bin/llvm-ar-3.4 \ | |
| --slave /usr/bin/llvm-as llvm-as /usr/bin/llvm-as-3.4 \ | |
| --slave /usr/bin/llvm-bcanalyzer llvm-bcanalyzer /usr/bin/llvm-bcanalyzer-3.4 \ | |
| --slave /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-3.4 \ | |
| --slave /usr/bin/llvm-diff llvm-diff /usr/bin/llvm-diff-3.4 \ | |
| --slave /usr/bin/llvm-dis llvm-dis /usr/bin/llvm-dis-3.4 \ | 
  
    
      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/python3 | |
| from http.server import HTTPServer, SimpleHTTPRequestHandler, test | |
| import os, sys, logging | |
| import argparse | |
| class CORSRequestHandler (SimpleHTTPRequestHandler): | |
| def end_headers (self): | |
| self.send_header('Cross-Origin-Opener-Policy', 'same-origin') | |
| self.send_header('Cross-Origin-Embedder-Policy', 'require-corp') | |
| SimpleHTTPRequestHandler.end_headers(self) | 
