grafana-server --config=/usr/local/etc/grafana/grafana.ini --homepath /usr/local/share/grafana cfg:default.paths.logs=/usr/local/var/log/grafana cfg:default.paths.data=/usr/local/var/lib/grafana cfg:default.paths.plugins=/usr/local/var/lib/grafana/plugins
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
| @book{1578203120, | |
| Author = {Janice Reynolds}, | |
| Title = {The Complete E-Commerce Book: Design, Build \& Maintain a Successful Web-based Business}, | |
| Publisher = {CRC Press}, | |
| Year = {2004}, | |
| ISBN = {1578203120}, | |
| URL = {http://www.amazon.com/dp/1578203120}, | |
| price = {\$41.95} | |
| } |
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
| ModuleBase.ReportProgress() [CLTDEPAPI10] [1]% [Installing Mobile Recruiter] | |
| ModuleBase.ReportProgress() [CLTDEPFE1] [1]% [Installing Mobile Recruiter] | |
| ModuleBase.ReportProgress() [CLTDEPAPI11] [1]% [Installing Mobile Recruiter] | |
| ModuleBase.ReportProgress() [CLTDEPFE1] [5]% [Invoking installer agent at net.tcp://cltdepfe1:8890/] | |
| ModuleBase.ReportProgress() [CLTDEPAPI11] [5]% [Invoking installer agent at net.tcp://cltdepapi11:8890/] | |
| ModuleBase.ReportProgress() [CLTDEPAPI10] [5]% [Invoking installer agent at net.tcp://cltdepapi10:8890/] |
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
| launchctl unload /Library/LaunchAgents/org.macosforge.xquartz.startx.plist && \ | |
| sudo launchctl unload /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist && \ | |
| sudo rm -rf /opt/X11* /Library/Launch*/org.macosforge.xquartz.* /Applications/Utilities/XQuartz.app /etc/*paths.d/*XQuartz && \ | |
| sudo pkgutil --forget org.macosforge.xquartz.pkg && \ | |
| rm -rf ~/.serverauth* && rm -rf ~/.Xauthorit* && rm -rf ~/.cache && rm -rf ~/.rnd && \ | |
| rm -rf ~/Library/Caches/org.macosforge.xquartz.X11 && rm -rf ~/Library/Logs/X11 |
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 Set-ConnectionString{ | |
| [CmdletBinding(SupportsShouldProcess=$True)] | |
| Param( | |
| [string]$fileName="app.config", | |
| [string]$connectionStringName, | |
| [string]$connectionString | |
| ) | |
| $config = [xml](Get-Content -LiteralPath $fileName) | |
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
| AWSTemplateFormatVersion: "2010-09-09" | |
| Transform: AWS::Serverless-2016-10-31 | |
| Parameters: | |
| BucketName: | |
| Description: "Region-specific assets S3 bucket name (e.g. ee-assets-prod-us-east-1)" | |
| Type: String | |
| Default: "cf-templates-1xnac3rwgtxo7-us-west-2" | |
| EBSVolumeSize: | |
| Description: "Size of EBS Volume (in GB)" | |
| Type: Number |
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 | |
| host=$1 | |
| user=$2 | |
| password=$3 | |
| echo '' > $0.queue | |
| databases=$(mysql -h $host -u $user -p$password -e "show databases" -sN | grep -v information_schema | grep -v mysql | grep -v sys) | |
| for database in $databases; do | |
| for table in $(mysql -h $host -u $user -p"$password" -N -B -e "show tables from \`$database\`"); do |
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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: Cognito Stack | |
| Parameters: | |
| AuthName: | |
| Type: String | |
| Description: Unique Auth Name for Cognito Resources | |
| Resources: | |
| # Creates a role that allows Cognito to send SNS messages | |
| SNSRole: |