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
| TOP8fcfc9a3 START | |
| TOP8fcfc9a3 attack_mode 3 | |
| TOP8fcfc9a3 benchmark 0 | |
| TOP8fcfc9a3 benchmark_mode 1 | |
| TOP8fcfc9a3 bitmap_max 24 | |
| TOP8fcfc9a3 debug_mode 0 | |
| TOP8fcfc9a3 eula 0 | |
| TOP8fcfc9a3 force 0 | |
| TOP8fcfc9a3 gpu_accel 0 | |
| TOP8fcfc9a3 gpu_async 0 |
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/perl | |
| use strict; | |
| use warnings; | |
| use GD::Simple; | |
| # create a new image (width, height) | |
| my $width = 80; | |
| my $height = 45; | |
| my $img = GD::Simple->new($width, $height); |
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
| ctr i pull docker.io/aptman/qus:latest && \ | |
| ctr run --rm --privileged docker.io/aptman/qus:latest qus /qus/register -s -- -p x86_64 |
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/sh | |
| set -x | |
| node=${1} | |
| #nodeName=$(kubectl get node ${node} -o template --template='{{index .metadata.labels "kubernetes.io/hostname"}}') | |
| nodeSelector='"nodeSelector": { "kubernetes.io/hostname": "'${node:?}'" },' | |
| podName=${USER}-nsenter-${node} | |
| kubectl -n kube-system run ${podName:?} --restart=Never -it --rm --image overriden --overrides ' | |
| { | |
| "spec": { |
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
| <script> | |
| function htmz(frame) { | |
| // ---------------------------------------------------------------------- | |
| // History + innerHTML | |
| // ---------------------------------------------------------------------- | |
| setTimeout(() => { | |
| const el = document .querySelector(frame.contentWindow.location.hash || null) | |
| el.innerHTML = frame.contentDocument.body.innerHTML; |
OlderNewer