How to use:
./wordle.sh
Or try the unlimit mode:
| Kernel Debug Kit for macOS - Read Me | |
| Use the Kernel Debug Kit (KDK) to debug kernel-level code, such as kernel extensions you create. | |
| Performing Two-Machine Debugging | |
| The KDK supports the debugging of kernel-level code, such as kernel extensions, from a second Mac. | |
| - The target device is the Mac that runs the code you want to debug. | |
| - The host device is the Mac that runs the debugger. | |
| Identify the Device Compatibility |
| #!/bin/bash | |
| # This script allows you to chroot ("work on") | |
| # the raspbian sd card as if it's the raspberry pi | |
| # on your Ubuntu desktop/laptop | |
| # just much faster and more convenient | |
| # credits: https://gist.github.com/jkullick/9b02c2061fbdf4a6c4e8a78f1312a689 | |
| # make sure you have issued |
| > LANG=en_US.UTF-8 git | |
| usage: git [--version] [--help] [-C <path>] [-c <name>=<value>] | |
| [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] | |
| [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare] | |
| [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>] | |
| <command> [<args>] | |
| These are common Git commands used in various situations: | |
| start a working area (see also: git help tutorial) |
| // imgLib -> Image package from https://pub.dartlang.org/packages/image | |
| import 'package:image/image.dart' as imglib; | |
| import 'package:camera/camera.dart'; | |
| Future<List<int>> convertImagetoPng(CameraImage image) async { | |
| try { | |
| imglib.Image img; | |
| if (image.format.group == ImageFormatGroup.yuv420) { | |
| img = _convertYUV420(image); | |
| } else if (image.format.group == ImageFormatGroup.bgra8888) { |
| #! /usr/bin/env osascript | |
| tell application "System Events" | |
| if name of every process contains "FollowUpUI" then | |
| tell window 1 of process "FollowUpUI" | |
| click button "允許" | |
| delay 2 | |
| set code to value of static text 1 of group 1 | |
| log (code) | |
| click button "完成" | |
| end tell |
| #!/usr/bin/env bash | |
| ## Use sudo to run this script | |
| rm -rf ~/Library/HiPKILocalSignServer/ | |
| rm -rf ~/Lib/libHicos_p11v1.dylib | |
| rm -rf ~/bin/checkHIPKILocalServer.sh | |
| rm -rf ~/bin/stopHIPKILocalServer.sh |
| last_upgrade_pacman_time () { | |
| \grep -e "\[PACMAN\] starting full system upgrade" /var/log/pacman.log | tail -1 | awk -F "]" '{print substr($1,2)}' | |
| } |
| #!/bin/bash | |
| while [[ $# -gt 1 ]] | |
| do | |
| key="$1" | |
| case $key in | |
| -c| --commits) | |
| COMMITS="$2" | |
| shift |
| import Foundation | |
| protocol ClassNameProtocol { | |
| static var className: String { get } | |
| var className: String { get } | |
| } | |
| extension ClassNameProtocol { | |
| static var className: String { | |
| return String(describing: self) |