| autorep -j YOUR_JOB_OR_BOX_NAME | sed -e 's/ \{2,\}/|/g'| sed -e 's/_\{2,\}/ /g' | sed 's/\(.*\)/|\1/g' | sed -e 's/\(Job Name\)/|\1/g' | sed -e 's/\(Last Start\)/|\1/g' | sed -e 's/\(Last End\)/|\1|/g'| sed -e 's/ST Run/ST||Run/g' | sed -e 's/Ntry Pri\/Xit/Ntry||Pri\/Xit||/g'| sed -e 's/\(.*\)\([0-9]\{8\}\/[0-9]*\)/\1|\2|/g' |
Thursday, August 6, 2020
Autosys: Changing output of autosys -j JOB_NAME into Markdown
When generating output using autosys -j command line, it produces an output using space delimited typical console output. The following command will output the result into a markdown table.
Wednesday, July 29, 2020
Python: Performing XSLT recursively on a directory of XML files
I've been using https://github.com/ajryan/RptToXml to extract out xml information from Crystal Reports. I then rip through the created xml files with xlst to provide detail information on how the reports are created. This little python 3.5+ script uses https://www.saxonica.com/download/download_page.xml and will create html files from a directory tree containing xml files.
TODO: Write an xxl file to convert Crystal Reports to Jasper Reports.
TODO: Write an xxl file to convert Crystal Reports to Jasper Reports.
import os import subprocess import glob from pathlib import Path root_dir = r"C:\crystalxml" xslFile = r"C:\Saxon\pretty.xsl" for filename in glob.iglob(root_dir + '/**/*.xml', recursive=True): my_parts = filename.split("\\") justname = my_parts[-1].split('.')[0] my_dir = os.path.dirname(filename) newname = fr'{my_dir}\{justname}.html' cmd = fr'java -cp C:\Saxon\saxon-he-10.1.jar net.sf.saxon.Transform -t -s:"{filename}" -xsl:{xslFile} -o:"{newname}"' subprocess.call(cmd)
Tuesday, May 12, 2020
Python: Learning by starting with the basics.
Just a simple mind exercise in learning a language. Created a console Hangman game that uses a word api with a hint command that fills in the first available blank.
hangman.py
hangman.py
Guess a Letter:hint ------ | | | 0 | /|\ | / t y p h u _ e _ Wrong Guesses:lmaio Guess a Letter:s ------ | | | 0 | /|\ | / t y p h u s e s Wrong Guesses:lmaio stay of execution
Friday, May 8, 2020
Oracle: Capitalizing and removing underscores from a column name
Oracle table names are all caps with underscores. So if you're consuming them from something like all_tab_columns, this quick little function makes them a little prettier.
select initcap(replace(lower('SOME_COLUMN_NAME'),'_',' ')) from dual;
Wednesday, May 6, 2020
VBA: A little function to Capitalize and Split a String
Here's a subroutine for converting a range of strings into a space separated Capitalization (i.e.) "FOO_BAR" becomes "Foo Bar"
Sub Capitalization_Split() 'Declaring variables Dim Cell As Range Dim Source As Range Dim Capitalized As String Dim Humps As Variant Dim Hump As String Dim i As Long 'Initializing source range Set Source = Application.Selection 'Looping through each cell in the source range For Each Cell In Source Capitalized = "" Hump = Cell.Value Humps = Split(Hump, "_") For i = LBound(Humps, 1) To UBound(Humps, 1) Hump = UCase(Left(Humps(i), 1)) & LCase(Right(Humps(i), Len(Humps(i)) - 1)) Capitalized = Capitalized & Hump & " " Next Cell.Value = Capitalized Next End Sub
Tuesday, May 5, 2020
GoLang: Issues Installing Delv Analysis Tool
I've recently just started setting up my development environment to play around with GO. My editor of choice is Eclipse as it 1) suits my development efforts, 2) It's pretty much free, though I did opt to pay for CodeMix which has a very reasonable price of $29 per year as opposed to the competition.
I mostly use windows and the initial setup went fairly well except I was getting an error that all the analysis tools were not there. I was able to "Go Get" some of the ones that were missing, but dlv just wouldn't install in that manner. So I ended up checking out the https://github.com/go-delve/ repo, performing a go build and then manually copying over repo to my $GOPATH/pkg/mod/github.com/ folder, put the compiled dlv.exe into the $GOPATH/bin folder and then launched Eclipse. No more warnings of analytic tools being missing.
No off to do something other than the obligatory "Hello World".
I mostly use windows and the initial setup went fairly well except I was getting an error that all the analysis tools were not there. I was able to "Go Get" some of the ones that were missing, but dlv just wouldn't install in that manner. So I ended up checking out the https://github.com/go-delve/ repo, performing a go build and then manually copying over repo to my $GOPATH/pkg/mod/github.com/ folder, put the compiled dlv.exe into the $GOPATH/bin folder and then launched Eclipse. No more warnings of analytic tools being missing.
No off to do something other than the obligatory "Hello World".
Thursday, March 5, 2020
Why Lucee is Better Than ColdFusion #1
Lucee's Query of Queries is better than Adobe. Try this little snippet on Lucee 5 and then CF2018 or earlier
<cfscript> myQuery=QueryNew("Country,Capital City,Amount##","varchar,varchar,numeric"); /*Add array values in column*/ myAreaValues=ArrayNew(1); myAreaValues[1]=100000; myAreaValues[2]=50000; myQuery.addColumn("Area","integer",myAreaValues); WriteDump(myQuery); </cfscript>
Subscribe to:
Posts (Atom)