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 | |
| pacman -Syyu | |
| pacman -S ruby rsync base-devel | |
| gem install chef ruby-shadow --no-ri --no-rdoc --no-user-install | 
  
    
      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
    
  
  
    
  | module BinaryTree | |
| class Node | |
| attr_reader :word, :count, :left, :right | |
| include Enumerable | |
| def initialize(word) | |
| @word, @count = word, 1 | |
| end | 
  
    
      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
    
  
  
    
  | # | |
| # Automatically generated make config: don't edit | |
| # Linux kernel version: 2.6.35-rc5 | |
| # Thu Jul 22 23:09:57 2010 | |
| # | |
| # CONFIG_64BIT is not set | |
| CONFIG_X86_32=y | |
| # CONFIG_X86_64 is not set | |
| CONFIG_X86=y | |
| CONFIG_INSTRUCTION_DECODER=y | 
  
    
      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
    
  
  
    
  | The Goals of this Gist are to: | |
| [1] Increase the GnuPG key size limit beyond 4096 bits. | |
| [2] Provide configuration files that maximize security and anonymity. | |
| For now, the ideal configuration files have been provided. | |
| The Debian_Linux_GnuPG_Compiler.bash script works to build GnuPG with the 4096 bit key size limit raised. | |
| Please provide input. Feedback and changes welcome. | 
  
    
      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
    
  
  
    
  | require 'digest/md5' | |
| hash = {} | |
| Dir.glob("**/*", File::FNM_DOTMATCH).each do |filename| | |
| next if File.directory?(filename) | |
| # puts 'Checking ' + filename | |
| key = Digest::MD5.hexdigest(IO.read(filename)).to_sym | |
| if hash.has_key? key | 
  
    
      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
    
  
  
    
  | // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |