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
    
  
  
    
  | #!/bin/bash | |
| set -e; | |
| # the first argument is version for git and docker. | |
| # the second argument is a name of the repository if you deploys in the other repositories. | |
| # the third argument is a Dockerfile path. | |
| # the fourth argument is a description for the git tag. | |
| # if you don't add this argument, git opens the editor. | 
  
    
      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
    
  
  
    
  | Rust 8 hrs 55 mins βββββββββββββββββββββ 48.1% | |
| C# 3 hrs 51 mins βββββββββββββββββββββ 20.8% | |
| TOML 1 hr 19 mins βββββββββββββββββββββ 7.2% | |
| Other 1 hr 2 mins βββββββββββββββββββββ 5.6% | |
| Lua 56 mins βββββββββββββββββββββ 5.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
    
  
  
    
  | package chance | |
| import "math/rand" | |
| // Linear interpolation | |
| func lerp(min, max, value float32) float32 { | |
| return (1 - value) * min + value * max | |
| } | |
| type Item struct { | 
  
    
      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 argparse | |
| import os | |
| import shutil | |
| import cv2 | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--src', required=True) | |
| parser.add_argument('--dst', required=True) |