- Bill of Rights
- Grandpa
- fat free lard
- gravity
- Emmys
- Darwin
- H2-WHOA!
- Billy Crystal
- God
- Soloflex
  
    
      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
    
  
  
    
  | b/38735759538852933510049445432534763961289936123418443776/s f/38735796617855960202945932237615754532678091506439618567/s | |
| EVENTS 1736971683972 2025-01-15 20:05:31.40 Server Microsoft SQL Server 2019 (RTM-CU8) (KB4577194) - 15.0.4073.23 (X64) | |
| Sep 23 2020 16:03:08 | |
| Copyright (C) 2019 Microsoft Corporation | |
| Standard Edition (64-bit) on Windows Server 2016 Datacenter 10.0 <X64> (Build 14393: ) (Hypervisor) 1736971531400 | |
| EVENTS 1736971683972 2025-01-15 20:05:31.41 Server UTC adjustment: 0:00 1736971531410 | |
| EVENTS 1736971683972 2025-01-15 20:05:31.41 Server (c) Microsoft Corporation. 1736971531410 | |
| EVENTS 1736971683972 2025-01-15 20:05:31.41 Server All rights reserved. 1736971531410 | |
| EVENTS 1736971683972 2025-01-15 20:05:31.41 Server Server process ID is 3172. 1736971531410 | |
| EVENTS 1736971683972 2025-01-15 20:05:31.41 Server System Manufacturer: 'Amazon EC2', System Model: 'm5.xlarge'. 1736971531410 | 
  
    
      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
    
  
  
    
  | bijaz | |
| stilgar | |
| othyem | |
| farok | |
| kaitan | |
| caladan | |
| tabr | |
| fedaykin | |
| korba | |
| tlielax | 
  
    
      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
    
  
  
    
  | # r2sync stage-jira /var/lib/jira/ prod-jira /var/lib/jira | |
| ssh -R localhost:50000:$1:22 $3 'rsync -e "ssh -p 50000" -vuar $2 localhost:$4' | 
  
    
      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 -x | |
| WEBAPPS=$(docker ps | grep "philchristensen/insite:latest" | awk '{print $1}') | |
| WORKERS=$(docker ps | grep "philchristensen/insite:worker" | awk '{print $1}') | |
| BEATER=$(docker ps | grep "philchristensen/insite:beat" | awk '{print $1}') | |
| find /opt/insite-web -name '*.pyc' -delete | |
| echo "$WEBAPPS" | xargs -I ID docker exec ID pip install -r requirements.txt | |
| date > /opt/insite-web/reload | 
  
    
      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
    
  
  
    
  | // | |
| // DPColorPickerView.m | |
| // DMXPerformer | |
| // | |
| // Created by Phil Christensen on 4/14/13. | |
| // Copyright (c) 2013 bubblehouse. All rights reserved. | |
| // | |
| #import "DPColorPickerView.h" | |
| #import "DPColorGrabberView.h" | 
  
    
      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 random | |
| def get_random_name(): | |
| index = random.randint(0, len(adjectives) - 1) | |
| jndex = random.randint(0, len(names) - 1) | |
| return adjectives[index] + ' ' + names[jndex] | |
| adjectives = [ | |
| "admiring", | |
| "adoring", | 
  
    
      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
    
  
  
    
  | exec { "accept-oracle-license": | |
| command => "/bin/echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections", | |
| unless => "/usr/bin/debconf-get-selections | /bin/grep shared/accepted-oracle-license-v1-1" | |
| }-> | |
| apt::ppa { "ppa:webupd8team/java": } | |
| ensure_packages(['oracle-java7-installer', 'tomcat7'], { | |
| require => Apt::Ppa['ppa:webupd8team/java'] | |
| }) | 
  
    
      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 'aws-sdk' | |
| module Puppet::Parser::Functions | |
| newfunction(:xaz_host, :type => :rvalue) do |args| | |
| current_az = lookupvar('ec2_placement_availability_zone') | |
| asg_prefix, domain = args | |
| Aws.config[:credentials] = Aws::Credentials.new( | |
| "AKIAJSUKG23H6XC3FE3A", | |
| "byQczPLjJwDMCcYjtnKgPS/7NfM1D0XpuEU9scmt" | 
  
    
      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_ENV="$HOME/.ssh/environment" | |
| function start_agent { | |
| echo "Initialising new SSH agent..." | |
| /usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}" | |
| echo succeeded | |
| chmod 600 "${SSH_ENV}" | |
| . "${SSH_ENV}" > /dev/null | |
| /usr/bin/ssh-add; | |
| } | 
NewerOlder