It assumes the highest positive signed 32-bit float value for numbers.
In other words, 2147483647 (or 0x7FFFFFFF or 2^31-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
    
  
  
    
  | #!/bin/bash | |
| bgBlack=$(tput setab 0) # black | |
| bgRed=$(tput setab 1) # red | |
| txBold=$(tput bold) # bold | |
| txReset=$(tput sgr0) # reset attributes | |
| txStandout=$(tput smso) # standout | |
| txEndStand=$(tput rmso) # exit standout | |
| echo "${bgBlack}${fgRed}${txBold} | |
| +==============================================================+ | 
  
    
      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
    
  
  
    
  | function dedupe(strToDedupe, caseSensitive=false){ | |
| let rpl = (caseSensitive) ? /^(.*)(\r?\n\1)+$/gm : /^(.*)(\r?\n\1)+$/gim | |
| return(strToDedupe.replace(rpl, "")); | |
| } | 
  
    
      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 | |
| ################################################################################################################## | |
| DOMAINSAVE="" | |
| function domain(){ | |
| read -rp "Enter JUST THE DOMAIN portion you wish to check (omitting the subdomain and TLD) . > " domainToCheck; | |
| read -rp "Utilize custom DNS? (enter DNS or Enter to skip) > " dns; | |
| #read -rp "Enter JUST THE DOMAIN portion you wish to check. > " domainToCheck; | 
  
    
      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
    
  
  
    
  | // cardInfo() | |
| // | |
| // Determines if a credit card number is valid and returns the name of the issuing network. When | |
| // passed a purported card number as a candidate if the card number is valid, the cardInfo() | |
| // function returns a boolean flag ('isValid') indicating if the card is a valid number and a | |
| // string ('network') containing the name of the issuing network. Card validity is determined | |
| // based upon the card number length and Luhn check digit value. Valid card lengths are based | |
| // upon the card lengths valid for a given issuing network. The Luhn check digit is calculated | |
| // using the Luhn algorithm. The function contains a static table ('IINData') that defines the | |
| // supported issuing network. The table is not a complete list--it is only meant to contain | 
  
    
      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 | |
| # Usage: | |
| # gig path_to_file path_to_other_file | |
| function gittyup(){ | |
| # Iterate the function arguments | |
| for item in "$@"; do | |
| # Append a block comment to the end of the specified file. | |
| echo " /**/ " >> $item; | |
| done | 
  
    
      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 | |
| # Usage: | |
| # gig path_to_file path_to_other_file | |
| function gig(){ | |
| # Iterate the function arguments | |
| for item in "$@"; do | |
| # Append each to .gitignore at current folder level | |
| echo "$item" >> .gitignore; | |
| done | 
  
    
      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
    
  
  
    
  | //https://forums.adobe.com/message/9552896#9552896 | |
| "use strict"; | |
| use(function () { | |
| var parent = resource.getParent(); | |
| var props = parent.adaptTo(Packages.org.apache.sling.api.resource.ValueMap); | |
| return props.get("jcr:createdBy",""); | |
| }); | 
  
    
      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
    
  
  
    
  | [Element].forEach(function(self){ | |
| self.prototype.activeListeners = {}; | |
| self.prototype._addEventListener = self.prototype.addEventListener; | |
| self.prototype.addEventListener = function(type, handle, useCapture) { | |
| useCapture = useCapture || false; | |
| node._addEventListener(type, handle, useCapture); | |
| var node = this; | 
  
    
      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 is the background code... | |
| // listen for our browerAction to be clicked | |
| chrome.browserAction.onClicked.addListener(function (tab) { | |
| // for the current tab, inject the "inject.js" file & execute it | |
| chrome.tabs.executeScript(tab.ib, { | |
| file: 'inject.js' | |
| }); | |
| }); |