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
    
  
  
    
  | <?php | |
| /** | |
| * Class PriceCalculator | |
| * | |
| * @package App\Calculators | |
| */ | |
| class PriceCalculator | |
| { | |
| private $nettoPrice; | |
| private $fulfillmentPrice; | 
  
    
      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 log --after YYYY-MM-DD --before YYYY-MM-DD --author=authorname --reverse --no-merges --pretty=oneline --abbrev-commit | 
  
    
      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
    
  
  
    
  | _ __ __ _ _ _ _ _ _ | |
| | | __ _ | \/ |_ _| | |_(_) / \ _ __ (_) | | |
| | | / _` | | |\/| | | | | | __| | / _ \ | '_ \| | | | |
| | |__| (_| | | | | | |_| | | |_| | / ___ \| | | | |_| | |
| |_____\__,_| |_| |_|\__,_|_|\__|_| /_/ \_\_| |_|_(_) | |
| ___ _ | |
| |_ _|___ _ __ _ _| |_ | |
| | |/ _ \| '_ \| | | | __| | |
| | | (_) | | | | |_| | |_ | 
  
    
      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
    
  
  
    
  | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDeGpaNTorLzNhHGUmtdCZhfHsSY4+/PxUGqbXH/00Qa/MqQGq69RhCryx6Pqe463pgJrFEKPfJOqSq0EFKjqVQSjraGIAwEAO4vOuYNnKI216ikkKdjLW1dnC/ziQE+3oVkHscNaMN2+Vl78ZRzk20s0J6GlwKxCIpGqc/STruj6UzjnZteAVD6aFukOjuCbYx0HnDpYVHGMDMBM4WIRCIrz4mCgKerbGXgRIlzBM656Q4hGgs7eeKW92O3IgFXQs8UBu69TqY+nj1NthLi5yPq8RX4cXztmg7vfnx+G4OOUFAm05dolqgkGu6K1SG/ngSZO6LBuDwrPN2LdDoM4Kb vvl25@ThinkPad-VVL | 
  
    
      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 | |
| iatest=$(expr index "$-" i) | |
| ####################################################### | |
| # SOURCED ALIAS'S AND SCRIPTS BY zachbrowne.me | |
| ####################################################### | |
| # Source global definitions | |
| if [ -f /etc/bashrc ]; then | |
| . /etc/bashrc | 
  
    
      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
    
  
  
    
  | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDG5SjetTLIGX5Q1KqxiSbZmSRnwzhQ+8dHHqm6Tw+rztI5Yib4xrhd4SJNtxQRM6EL96U5CbGAWkp9LYeTUDX3VkL21ss0uLO03JNrnpd3Z7PheTqZn3BTFr4Do34Bpj/Uv7sDJqfEb6g2enc97cOHg2gRJc8U2L8rUqa1KvAsGfPViVNEB19Afbxv8yni68hKKVV2n8SYVEB4HQT37ubb7P2y9obiKTWvExH79ZFrlzPBJCXoz5Cgu+NJNvuSzpss0EZyC74AGH2Ejas47C7uIRG9fKhAaCIgT/XT21MjX85C04csb7tN5zHZiUbwRJoXSk1nK5HKCddL8KKbhzx9 lucia@DESKTOP-6GPUATL | 
  
    
      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
    
  
  
    
  | # Source: https://stackoverflow.com/a/43317244 | |
| $path = ".\aws-ec2-key.pem" | |
| # Reset to remove explict permissions | |
| icacls.exe $path /reset | |
| # Give current user explicit read-permission | |
| icacls.exe $path /GRANT:R "$($env:USERNAME):(R)" | |
| # Disable inheritance and remove inherited permissions | |
| icacls.exe $path /inheritance:r |