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
var exec = require("bldz/std/exp/exec") | |
console.log("hello world") | |
//ICONV EXEC PGM=EDCICONV, | |
// PARM=('FROMCODE(IBM-037),TOCODE(UTF-8)') | |
//SYSUT1 DD DISP=SHR,DSN=SOME.INPUT | |
//SYSUT2 DD DISP=SHR,DSN=SOME.OUTPUT | |
//SYSPRINT DD SYSOUT=* | |
//SYSIN DD DUMMY |
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
var process = require("bldz/process") | |
var child_process = require("bldz/child_process") | |
var fs = require("bldz/fs") | |
var CWD = process.cwd() | |
var BUILD_DIR = `${CWD}/build-out` | |
child_process.spawn(`rm -fr ${BUILD_DIR}/* ${BUILD_DIR}/.*`) | |
child_process.spawn(`cp -r python/. ${BUILD_DIR}/`) |
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
! Where I learned about "how" | |
! https://petr-vacula.medium.com/how-to-connect-to-mainframe-from-your-mac-laptop-using-x3270-16243667478 | |
! https://x3270.miraheze.org/wiki/X3270/Keymap | |
! https://x3270.miraheze.org/wiki/Category:X3270_actions | |
! Put in ~/.c3270pro | |
! Use the 'mine' keymap, defined below | |
c3270.keymap: mine | |
! Definition of the 'mine' keymap | |
c3270.keymap.mine: \ | |
<Key>BTAB: BackTab()\n\ |
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
$setup = <<-SCRIPT | |
sudo setenforce 0 | |
sudo sed -i 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config | |
sudo dnf config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo | |
sudo dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo | |
sudo dnf clean all | |
sudo dnf -y install nomad docker-ce | |
sudo systemctl start docker.service |
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
#!/usr/bin/env bash | |
set -e | |
sanitize_nomad () { | |
nomad system gc | |
nomad system reconcile summaries | |
} | |
deregister_instance () { |
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
locals { | |
minions = [ | |
{ "name" = "greg", | |
"type" = "m5.large" }, | |
{ "name" = "ragha", | |
"type" = "t3.micro" | |
} | |
] |
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
# start nested array if i==100 | |
# end nested array if i==200 | |
flat_tokens = [1, 2, 100, 3, 4, 200, 5, 100, 6, 7, 200, 8] | |
alias MYARR = Array(Array(Array(Int32) | Int32) | Array(Int32) | Int32) | |
def parse(tokens, list : MYARR) | |
return {tokens, list} if tokens.empty? | |
token = tokens.shift |
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
ruby_block 'shell out fun' do | |
block do | |
# this is me running my command and assigning the output to a var | |
ls = shell_out('ls /var/') | |
# this is me assigning the STDOUT to a var | |
raw_output = ls.stdout | |
# i used the Ruby p method to print out the raw chars | |
# then i knew how to manipulate the string |
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
# cookbook code | |
... | |
reboot 'soon' do | |
delay_mins 2 | |
action :request_reboot | |
end | |
Chef.event_handler do | |
on :run_failed do |exception, run_status| |
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
version: 0.2 | |
phases: | |
build: | |
commands: | |
- ansible-playbook -i $INVENTORY $PLAYBOOK \ | |
--limit $LIMIT --extra-vars $EXTRA --tags $TAGS |
NewerOlder