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
| # Derived from ttf-ms-win8 package config (Arch AUR) | |
| # Run with sudo, and pass the Windows fonts directory path as a parameter. | |
| # By using this file and installing Microsoft fonts, you accept the Windows Fonts EULA. | |
| if [[ `id -u` -ne 0 ]] ; then echo "Please run as root" ; exit 1 ; fi | |
| echo "Creating target directory..." | |
| DESTPATH=/usr/share/fonts/microsoft-fonts | |
| mkdir $DESTPATH | |
| COPY_TO_FONTFOLDER(){ | |
| echo "Copying $1..." | |
| basefilename=`basename $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
| ''' | |
| Transform Bank of America PDF text into tables. | |
| Example: | |
| python parse_boa_statements.py test/joint_dump.txt test/pers_dump.txt --output test/combined.csv | |
| Example of original PDF text (copy/pasted from PDF): | |
| MISTER NAME | Account # 999 99999 9999 | November 24, 2015 to December 24, 2015 | |
| Your checking account | |
| Page 3 of 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 | |
| cd /tmp || exit | |
| echo "Downloading sonar-scanner....." | |
| if [ -d "/tmp/sonar-scanner-cli-3.2.0.1227-linux.zip" ];then | |
| sudo rm /tmp/sonar-scanner-cli-3.2.0.1227-linux.zip | |
| fi | |
| wget -q https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-3.2.0.1227-linux.zip | |
| echo "Download completed." |
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
| #=== Configure the following variables for your environment ==== | |
| # Directory where scenario json files are found | |
| $scenarioDir="C:\QS-ScalabilityTools\scenario" | |
| # Root directory of the QS Scalability tools | |
| $scalabilityToolsDir = "C:\QS-scalabilitytools-5.0.0" | |
| # SDK Exerciser version to use -- it's a subdirectory of SDKExerciser directory. | |
| $SDKExerciserVersion = "Jun2018" | |
| #=== End of local environment configuration === | |
| $app = $args[0].trim() |
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
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
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
| ### R code from vignette source 'Presentation.Rnw' | |
| ### Encoding: UTF-8 | |
| ################################################### | |
| ### code chunk number 1: init | |
| ################################################### | |
| options(width=60) | |
| ################################################### |