- Root via rootmy.tv
- Install
Tested on webOS 4.5, should at least on webOS 3.5+
curl -qs "https://gist.githubusercontent.com/stek29/761232c6f7e1ffbc36b98da2a3a0f4d9/raw/install.sh?$(date +%s)" | sh -
import serial | |
import time | |
import argparse | |
import logging | |
import sys | |
""" | |
examples: | |
path.py --pinlen_min=6 --pinlen_max=6 --log_file l6_dbg.txt --progress | |
mp64 '?d?d?d?d?d?d' | path.py --infile=- --log_file l6_dbg.txt --progress |
#define _GNU_SOURCE | |
#include <sys/syscall.h> | |
#include <sys/mount.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <sched.h> | |
#include <unistd.h> | |
#include <fcntl.h> | |
#include <stdio.h> |
package main | |
import ( | |
"flag" | |
"fmt" | |
"net" | |
"sync" | |
"github.com/miekg/dns" | |
) |
#!/usr/bin/env bash | |
set -euo pipefail | |
# Step 0: Log in | |
if ! op whoami >/dev/null 2>/dev/null; then | |
eval "$(op signin)" | |
fi | |
if [ "$(bw status | jq -r .status)" != "unlocked" ]; then |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"os" | |
"k8s.io/apimachinery/pkg/runtime" | |
"k8s.io/apimachinery/pkg/runtime/serializer" | |
"k8s.io/apimachinery/pkg/runtime/serializer/json" |
#!/usr/bin/env python | |
""" | |
requirements.txt: | |
certifi==2021.10.8 | |
charset-normalizer==2.0.12 | |
httplib2==0.20.4 | |
idna==3.3 | |
oauth2==1.9.0.post1 | |
oauthlib==3.2.0 | |
pyparsing==3.0.8 |
- command: | |
- kube-apiserver | |
- --bind-address=127.0.1.1 | |
- --requestheader-allowed-names=front-proxy-client | |
- --requestheader-client-ca-file=/etc/kubernetes/pki/front-proxy-ca.crt | |
- --requestheader-extra-headers-prefix=X-Remote-Extra- | |
- --requestheader-group-headers=X-Remote-Group | |
- --requestheader-username-headers=X-Remote-User | |
- --secure-port=6443 | |
- ... more args ... |
do shell script "diskutil mount disk0s3" | |
tell application "System Events" | |
tell application "System Preferences" | |
set current pane to pane id "com.apple.preference.startupdisk" | |
activate | |
delay 1 | |
end tell | |
tell application process "System Preferences" |
func quine() { | |
var s = """ | |
func quine() { | |
var s = MEGIC | |
let slash = "\\\\" | |
let s1 = "\\n " | |
let s2 = "\\"\\"\\"" | |
var sInd = s.replacingOccurrences(of: "\\n", with: s1) | |
sInd = sInd.replacingOccurrences(of: slash, with: slash + slash) | |
sInd = s2 + s1 + sInd + s1 + s2 |