I hereby claim:
- I am claylo on github.
- I am claylo (https://keybase.io/claylo) on keybase.
- I have a public key ASDwYDs9hW-SaOgepLdts04yxxVpFXYHklI21IjF9GHhzQo
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Super-simple AWS CloudFront Invalidation Script | |
| * | |
| * Steps: | |
| * 1. Set your AWS access_key | |
| * 2. Set your AWS secret_key | |
| * 3. Set your CloudFront Distribution ID | |
| * 4. Define the batch of paths to invalidate | |
| * 5. Run it on the command-line with: php cf-invalidate.php |
| ${TM_CURRENT_LINE/(.*\*\/$)|.*?(\/\*(?!.*\*\/)).*|.*/(?1: | |
| : | |
| (?2: )* )/} |
| # | |
| # You will want to pick a real password here! | |
| # | |
| CREATE USER 'jirauser'@'localhost' IDENTIFIED BY 'some_pass'; | |
| CREATE DATABASE jira CHARACTER SET utf8 COLLATE utf8_bin; | |
| GRANT ALL PRIVILEGES ON jira.* to 'jirauser'@'localhost'; | |
| FLUSH PRIVILEGES; | |
| # In case you forgot to change the password above... | |
| # SET PASSWORD for 'jirauser'@'localhost' = PASSWORD('someother_pass'); |
I hereby claim:
To claim this, I am signing this object:
| # we'll only have IPv4 addresses to look for | |
| sed -i -e 's/UTF-8/UTF-8 -Djava.net.preferIPv4Stack=true/' crowd/apache-tomcat/bin/setenv.sh | |
| # block anyone not on localhost IP | |
| sed -i -e '/<Context>/ a\ | |
| <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="127\\.0\\.0\\.1" />' crowd/apache-tomcat/conf/context.xml | |
| # make sure Tomcat knows it's behind a proxy. | |
| # UPDATE THIS FOR YOUR ATLASSIAN SUITE SERVER HOSTNAME | |
| sed -i -e 's/<Connector/<Connector proxyHost="atlassian.example.com" proxyPort="443" scheme="https"/' crowd/apache-tomcat/conf/server.xml |
| # | |
| # You will want to pick a real password here! | |
| # | |
| CREATE USER 'confluenceuser'@'localhost' IDENTIFIED BY 'some_pass'; | |
| CREATE DATABASE confluence CHARACTER SET utf8 COLLATE utf8_bin; | |
| GRANT ALL PRIVILEGES ON confluence.* to 'confluenceuser'@'localhost'; | |
| FLUSH PRIVILEGES; | |
| # In case you forgot to change the password above... | |
| # SET PASSWORD for 'confluenceuser'@'localhost' = PASSWORD('someother_pass'); |
| Homebrew build logs for hhvm/hhvm/hhvm on macOS 10.11.6 | |
| Build date: 2016-10-09 20:03:18 |
| Verifying that +claylo is my blockchain ID. https://onename.com/claylo |
| <?php | |
| /** | |
| * Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"). | |
| * You may not use this file except in compliance with the License. | |
| * A copy of the License is located at | |
| * | |
| * http://aws.amazon.com/apache2.0 | |
| * |
| #!/bin/bash | |
| # The author releases this code into the public domain. | |
| # requires 'say' command. OS X is your friend | |
| RANGE=90 | |
| LOOPS=10 | |
| count=0 | |
| # Thanks, interwebs! | |
| # http://rosettacode.org/wiki/Pick_random_element#Bash | |
| rand() { |