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
    
  
  
    
  | /** | |
| * K.jpg's OpenSimplex 2, smooth variant ("SuperSimplex") | |
| * | |
| * More language ports, as well as legacy 2014 OpenSimplex, can be found here: | |
| * https://github.com/KdotJPG/OpenSimplex2 | |
| */ | |
| public class OpenSimplex2S { | |
| private static final long PRIME_X = 0x5205402B9270C86FL; | 
  
    
      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
    
  
  
    
  | # These instructions work for OS X 10.6 with homebrew pre-installed. | |
| brew install python --framework | |
| brew install gfortran | |
| # install other dependencies through pip: | |
| pip install numpy | |
| # the regular pip build for matplotlib is b0rken, and it can't find the built-in libraries for OSX | |
| export LDFLAGS="-L/usr/X11/lib" | 
  
    
      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 bash | |
| # | |
| # Supported Operating Systems: | |
| # | |
| # - Arch Linux | |
| # - RedHat Based (CentOS, ...) | |
| # - Debian Based (Ubuntu, ...) | |
| # | 
  
    
      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
    
  
  
    
  | # -------------------------------------------- | |
| # General | |
| # -------------------------------------------- | |
| set :shared_children, %w(cache logs) # Shared directories, these directories contain generated content which should not be wiped out during deployments. | |
| set :application, "domain.com" # Application name | |
| set :deploy_to, "/var/www/#{application}/#{stage}" # Path where files are deployed to ... | |
| # -------------------------------------------- | |
| # Server | |
| # -------------------------------------------- |