This file contains 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
TITLE 'GREEN SCREEN OF DEATH' | |
ABEND CSECT | |
SAVE (14,12) | |
LR R12,R15 | |
USING ABEND,R12 | |
LUCIFER ABEND X'666',,,SYSTEM | |
* | |
DC H'00' LOL!!! | |
* | |
YREGS , |
This file contains 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 | |
# Recursively deploys folder content. Attempt checksum deploy first to optimize upload time. | |
repo_url="http://artifactory:8081/artifactory" | |
tgt_repo="some_repository" | |
user=user | |
pass=password | |
dir="$2" | |
if [ -z "$dir" ]; then echo "Please specify a directory to recursively upload from!"; exit 1; fi | |
if [ ! -x "`which sha1sum`" ]; then echo "You need to have the 'sha1sum' command in your path."; exit 1; fi | |
# Upload by checksum all jars and pom from the source dir to the target repo |
This file contains 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
// ibm-clang++64 -std=c++20 -O -o benchio benchio.cpp | |
#include "argparse.hpp" | |
#include "file.hpp" | |
#include <string> | |
static void read_file(const std::string & filename) { | |
std::string mode = "rb"; | |
if (filename.starts_with("//")) { | |
mode += ",type=record,noseek"; |