Skip to content

Instantly share code, notes, and snippets.

View robertmarkbram's full-sized avatar

Robert Mark Bram robertmarkbram

View GitHub Profile
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<uri name="http://sbr.gov.au/comnmdle/comnmdle.addressdetails3.02.01.module" uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.addressdetails3.02.01.module.xsd"/>
<uri name="http://sbr.gov.au/comnmdle/comnmdle.electroniccontactelectronicmail1.02.00.module"
uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.electroniccontactelectronicmail1.02.00.module.xsd"/>
<uri name="http://sbr.gov.au/comnmdle/comnmdle.electroniccontacttelephone1.02.00.module"
uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.electroniccontacttelephone1.02.00.module.xsd"/>
<uri name="http://sbr.gov.au/comnmdle/comnmdle.financialinstitutionaccount1.02.00.module"
uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/comnmdle.financialinstitutionaccount1.02.00.module.xsd"/>
<uri name="http://sbr.gov.au/comnmdle/comnmdle.organisationname1.02.00.module" uri="xsd/sbr.gov.au/taxonomy/sbr_au_taxonomy/comnmdle/co
<?xml version="1.0" encoding="UTF-8"?>
<xbrli:xbrl xmlns:EmpAbn.02.00="http://sbr.gov.au/dims/EmpAbn.02.00.dims"
xmlns:RprtPyType.02.07="http://sbr.gov.au/dims/RprtPyType.02.07.dims"
xmlns:SprFndAbn.02.00="http://sbr.gov.au/dims/SprFndAbn.02.00.dims"
xmlns:SprFndUSI.02.00="http://sbr.gov.au/dims/SprFndUSI.02.00.dims"
xmlns:address3.02.01="http://sbr.gov.au/comnmdle/comnmdle.addressdetails3.02.01.module"
xmlns:dtyp.02.00="http://sbr.gov.au/fdtn/sbr.02.00.dtyp"
xmlns:dtyp.02.01="http://sbr.gov.au/fdtn/sbr.02.01.dtyp"
xmlns:dtyp.02.03="http://sbr.gov.au/fdtn/sbr.02.03.dtyp"
xmlns:dtyp.02.06="http://sbr.gov.au/fdtn/sbr.02.06.dtyp"
@robertmarkbram
robertmarkbram / screenSplitVertical.sh
Last active July 30, 2017 08:41
Script to add a vertical split in GNU screen and assign a window to it
#!/bin/bash
# Manual way create a vertical split in GNU screen:
# C-a | # Create a vertical split
# C-a <Tab> # Move to the split
# C-a c # Create a new window within the split
# # OR
# C-a x # Assign an existing window by number to the split.
# This script send commands to a screen session to
@robertmarkbram
robertmarkbram / screenSplitHorizontal.sh
Last active July 30, 2017 08:41
Script to add a horizontal split in GNU screen and assign a window to it
#!/bin/bash
# Manual way create a horizontal split in GNU screen:
# C-a S # Create a horizontal split
# C-a <Tab> # Move to the split
# C-a c # Create a new window within the split
# # OR
# C-a x # Assign an existing window by number to the split.
# Save a bit of manual work with a script!